html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html, body {
  max-width: 100vw; }

.body-dim {
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.25s ease;
  opacity: 0;
  background-color: #000;
  width: 100vw;
  height: 100vh; }
  .body-dim.show {
    opacity: 0.2; }
  .body-dim.hidden {
    width: 0;
    height: 0; }

.input-field .postfix {
  position: absolute;
  width: 3rem;
  font-size: 2rem;
  transition: color .2s;
  top: .5rem;
  right: 0; }

.width-container {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto; }
  @media only screen and (min-width: 930px) {
    .width-container {
      width: 98%; } }

@media only screen and (min-width: 930px) {
  header.fixed #main-navigation > ul {
    padding-left: 100px; } }

#main-navigation {
  position: absolute;
  bottom: 64px;
  right: 0;
  padding: 20px;
  background: #64020E;
  box-shadow: -3px 0px 4px 0 rgba(0, 0, 0, 0.3);
  height: calc(100vh - 64px);
  display: flex;
  align-items: flex-end;
  width: 75%;
  transition: all 0.25s ease;
  transform: translateX(0);
  max-width: 320px; }
  @media only screen and (min-width: 930px) {
    #main-navigation {
      background-color: #E40520;
      position: relative;
      bottom: auto;
      right: auto;
      width: 100%;
      max-width: none;
      box-shadow: 0 -3px 4px rgba(0, 0, 0, 0);
      height: auto;
      margin-top: 20px;
      padding: 13px 0; } }
  #main-navigation.closed {
    transform: translateX(calc(100% + 10px)); }
    @media only screen and (min-width: 930px) {
      #main-navigation.closed {
        transform: translateX(0); } }
  #main-navigation > ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    transition: all 0.25s ease; }
    @media only screen and (min-width: 930px) {
      #main-navigation > ul {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        margin: 0 auto;
        max-width: 1050px;
        padding: 0 90px 0 0;
        position: relative; } }
    #main-navigation > ul li {
      padding: 10px 0; }
      #main-navigation > ul li.current {
        border-bottom: 2px solid #64020E; }
      #main-navigation > ul li.search {
        order: -1;
        color: rgba(255, 255, 255, 0.9); }
        #main-navigation > ul li.search > ul {
          display: block;
          box-shadow: 0px 3px 4px rgba(0, 0, 0, 0); }
        #main-navigation > ul li.search .search-button {
          display: none; }
        #main-navigation > ul li.search .start-search {
          background-color: #E40520; }
        @media only screen and (min-width: 930px) {
          #main-navigation > ul li.search {
            order: 1;
            position: absolute;
            right: 0;
            top: 0; }
            #main-navigation > ul li.search .search-button {
              display: block;
              top: 5px;
              right: 28px;
              position: absolute;
              width: 50px; }
              #main-navigation > ul li.search .search-button:focus {
                background-color: #64020E; }
              #main-navigation > ul li.search .search-button.pressed {
                background-color: #960315; }
              #main-navigation > ul li.search .search-button i {
                display: none; }
                #main-navigation > ul li.search .search-button i.show {
                  display: block; }
            #main-navigation > ul li.search ul {
              top: 48px;
              position: relative;
              z-index: 1;
              padding: 0 10px;
              opacity: 0;
              transition: all 0.25s ease;
              display: none; }
              #main-navigation > ul li.search ul.active {
                display: block; }
              #main-navigation > ul li.search ul.show {
                opacity: 1;
                display: block; }
            #main-navigation > ul li.search .input-field {
              margin-bottom: 0; } }
        #main-navigation > ul li.search input, #main-navigation > ul li.search label {
          color: rgba(255, 255, 255, 0.75); }
        #main-navigation > ul li.search input {
          border-bottom: 1px solid rgba(255, 255, 255, 0.75); }
      #main-navigation > ul li > ul {
        display: none;
        background-color: #64020E;
        box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); }
  #main-navigation a {
    padding: 10px 0;
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase; }
    @media only screen and (min-width: 930px) {
      #main-navigation a {
        font-size: 1.2em; } }

header {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  height: 64px;
  z-index: 2;
  background-color: #E40520;
  box-shadow: 0 -3px 4px 0 rgba(0, 0, 0, 0.3); }
  @media only screen and (min-width: 930px) {
    header {
      position: sticky;
      top: -122px;
      bottom: auto;
      height: auto;
      background-color: transparent;
      padding: 0;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
      background-color: #fff; } }
  @media only screen and (min-width: 1400px) {
    header.fixed .support-us-button {
      transform: translate(-28px, 139px);
      background-color: white !important;
      color: rgba(0, 0, 0, 0.9) !important;
      background-image: url("../../images/myi-heart-red.svg");
      background-repeat: no-repeat;
      background-position: 5px;
      background-size: 30px; } }
  header .hamburger {
    position: absolute;
    right: 10px;
    bottom: 0px;
    z-index: 2;
    outline: none; }
    header .hamburger:hover {
      opacity: 1; }
    header .hamburger:focus {
      background-color: inherit; }
    header .hamburger .hamburger-inner, header .hamburger .hamburger-inner::before, header .hamburger .hamburger-inner::after {
      background-color: rgba(255, 255, 255, 0.9); }
    @media only screen and (min-width: 930px) {
      header .hamburger {
        display: none; } }
  header .myi-logo {
    width: 325px; }
  header .myi-logo.large-logo, header .myi-logo.small-logo {
    opacity: 0; }
    header .myi-logo.large-logo.hidden, header .myi-logo.small-logo.hidden {
      opacity: 0; }
    @media only screen and (min-width: 930px) {
      header .myi-logo.large-logo, header .myi-logo.small-logo {
        opacity: 1; } }
  header .myi-logo.large-logo {
    margin: 10px 0 0 10px; }
  @media only screen and (min-width: 1600px) {
    header .myi-logo.small-logo {
      opacity: 1;
      position: absolute;
      top: 136px;
      left: 0px;
      transform: translateX(21px);
      bottom: auto;
      z-index: 1;
      width: 300px;
      transition: all 0.25s ease; }
      header .myi-logo.small-logo.hidden {
        transform: translateX(-100%); } }
  header .myi-logo.mobile-logo {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 50px; }
    @media only screen and (min-width: 930px) {
      header .myi-logo.mobile-logo {
        opacity: 1;
        position: absolute;
        top: 130px;
        left: 0px;
        bottom: auto;
        transform: translateX(21px);
        bottom: auto;
        z-index: 1;
        width: 65px;
        transition: all 0.25s ease; }
        header .myi-logo.mobile-logo.hidden {
          transform: translateX(-100%); } }
    @media only screen and (min-width: 1600px) {
      header .myi-logo.mobile-logo {
        opacity: 0; } }
  header .support-us-button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 13px;
    width: 100%;
    max-width: 150px;
    margin: auto;
    background-color: rgba(1, 115, 209, 0.9) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    background-image: url("../../images/myi-heart-white.svg");
    background-repeat: no-repeat;
    background-position: 5px;
    background-size: 30px; }
    @media only screen and (min-width: 930px) {
      header .support-us-button {
        left: auto;
        right: 0;
        top: 0;
        margin: 0;
        float: right;
        position: relative;
        transform: translate(-28px, 40px); } }
  header .btn {
    background-color: #64020E; }

footer {
  background-color: #E40520;
  width: 100%;
  padding: 60px 0;
  margin-top: 40px; }
  @media only screen and (min-width: 768px) {
    footer {
      display: flex;
      justify-content: space-between; } }
  footer * {
    color: #fff; }
  footer .h2 {
    width: 100%;
    text-align: center; }
  footer .h4 {
    margin-bottom: 5px; }
    @media only screen and (min-width: 768px) {
      footer .h4 {
        margin-top: 0; } }
  footer section {
    width: 100%; }
    @media only screen and (min-width: 768px) {
      footer section {
        display: flex;
        justify-content: space-between; } }
    footer section div {
      width: 100%;
      margin-bottom: 30px; }
      @media only screen and (min-width: 768px) {
        footer section div {
          width: 32%;
          margin: 0 auto; } }
      footer section div p {
        text-align: center;
        white-space: pre-line; }
  footer .support-us-button {
    display: none; }
    @media only screen and (min-width: 768px) {
      footer .support-us-button {
        display: block;
        max-width: 200px;
        margin: 0 auto 20px auto; } }

button:hover, .btn:hover {
  text-decoration: none; }

.primary-btn {
  background-color: #E40520;
  color: #fff; }
  .primary-btn:hover {
    background-color: #64020E;
    text-decoration: none; }

.secondary-btn {
  background-color: #64020E;
  color: #fff; }
  .secondary-btn:hover {
    text-decoration: none;
    background-color: #E40520; }

ss-banner {
  width: 100%;
  position: relative; }
  ss-banner ss-scroll-instruction {
    display: none; }
  @media only screen and (min-width: 930px) {
    ss-banner ss-scroll-instruction {
      cursor: pointer;
      display: block;
      position: absolute;
      bottom: 5px;
      left: 50%;
      transform: translateX(-50%);
      backdrop-filter: blur(5px);
      background-color: rgba(255, 255, 255, 0.25);
      border-radius: 3px;
      padding: 20px 30px 10px 30px;
      color: white;
      font-size: 2em; }
      ss-banner ss-scroll-instruction .down-arrow {
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-name: bounce;
        stroke: rgba(255, 255, 255, 0.9); } }
  ss-banner img {
    object-fit: cover;
    width: 100%;
    max-height: 489px; }
    @media only screen and (min-width: 930px) {
      ss-banner img {
        height: calc(100vh - 194px);
        max-height: none; } }
  ss-banner span {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    font-size: 5vw;
    position: absolute;
    bottom: 40px;
    color: #fff;
    max-width: 50%;
    display: block; }
    ss-banner span.left {
      left: 0; }
    ss-banner span.right {
      right: 0; }
    @media only screen and (min-width: 930px) {
      ss-banner span {
        font-size: 4.4rem;
        top: -50vh;
        bottom: auto; } }

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
  40% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

@keyframes bounce {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
  30% {
    transform: translateY(5px); }
  60% {
    transform: translateY(0);
    box-shadow: 0 0 0 10 rgba(255, 255, 255, 0); }
  100% {
    transform: translateY(0); } }

ss-card-list {
  width: 100%; }
  @media only screen and (min-width: 768px) {
    ss-card-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap; }
      ss-card-list.left-align {
        justify-content: flex-start; }
        ss-card-list.left-align ss-card {
          margin-right: 1%; } }

ss-card {
  width: 100%;
  display: block;
  background-color: #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  overflow: hidden;
  position: relative; }
  @media only screen and (min-width: 768px) {
    ss-card {
      width: calc(50% - 20px);
      padding-bottom: 60px;
      margin-right: 20px; }
      ss-card:nth-child(2n+2) {
        margin-right: 0; }
      ss-card:last-child {
        margin-right: 0; } }
  @media only screen and (min-width: 1024px) {
    ss-card {
      width: calc(33.33333% - 20px);
      margin-right: 20px; }
      ss-card:nth-child(2n+2) {
        margin-right: 20px; }
      ss-card:nth-child(3n+3) {
        margin-right: 0; }
      ss-card:last-child {
        margin-right: 0; } }
  @media only screen and (min-width: 1600px) {
    ss-card {
      width: calc(25% - 20px); }
      ss-card:nth-child(2n+2) {
        margin-right: 20px; }
      ss-card:nth-child(3n+3) {
        margin-right: 20px; }
      ss-card:nth-child(4n+4) {
        margin-right: 0; }
      ss-card:last-child {
        margin-right: 0; } }
  ss-card img {
    width: 100%;
    object-fit: cover;
    padding: 0; }
    @media only screen and (min-width: 768px) {
      ss-card img {
        height: 190px; } }
  ss-card .sub-heading {
    font-size: 1em; }
  ss-card .h3 {
    margin-top: 0;
    font-family: "assistantregular", Arial, Helvetica, sans-serif; }
  ss-card p {
    margin-bottom: 20px; }
  ss-card .btn {
    width: calc(100% - 20px);
    margin: 0 10px; }
    @media only screen and (min-width: 768px) {
      ss-card .btn {
        position: absolute;
        bottom: 10px; } }
  ss-card * {
    padding: 0 10px; }

.side-nav {
  overflow: hidden;
  position: relative;
  min-height: 44px;
  margin-top: 20px; }
  .side-nav.show h3 i {
    transform: rotate(90deg); }
  .side-nav.show ul {
    margin-top: 0;
    opacity: 1; }
  .side-nav.sticky {
    position: sticky;
    top: 0; }
  .side-nav h3 {
    display: block;
    background-color: #efefef;
    padding: 10px;
    z-index: 1;
    position: relative;
    margin: 0; }
    @media only screen and (min-width: 930px) {
      .side-nav h3 {
        background-color: transparent; } }
    .side-nav h3 i {
      float: right;
      transition: all 0.5s ease-in-out; }
      @media only screen and (min-width: 930px) {
        .side-nav h3 i {
          display: none; } }
  .side-nav ul {
    position: relative;
    transition: all 0.5s ease;
    margin-top: -100%;
    opacity: 0;
    background-color: #dfdfdf;
    max-height: calc(100vh - 184px);
    overflow-y: auto; }
    @media only screen and (min-width: 930px) {
      .side-nav ul {
        margin-top: 0;
        opacity: 1;
        background-color: transparent; } }
    .side-nav ul li {
      font-size: 1.25em;
      border-top: 1px solid #efefef; }
      .side-nav ul li:last-of-type {
        border-bottom: 1px solid #efefef; }
        @media only screen and (min-width: 930px) {
          .side-nav ul li:last-of-type {
            border-bottom: 0; } }
      @media only screen and (min-width: 930px) {
        .side-nav ul li {
          border-top: 0; } }
      .side-nav ul li a {
        color: rgba(0, 0, 0, 0.9);
        display: block;
        padding: 10px 20px 10px 10px;
        position: relative; }
        .side-nav ul li a:hover {
          text-decoration: none; }
      .side-nav ul li i {
        position: absolute;
        right: 0;
        top: 30%; }

.side-nav-no-mobile {
  overflow: hidden;
  position: relative;
  min-height: 44px;
  margin-top: 50px;
  padding-left: 10px; }
  .side-nav-no-mobile h3 {
    display: block;
    z-index: 1;
    position: relative;
    margin: 0; }
  .side-nav-no-mobile ul {
    position: relative;
    transition: all 0.5s ease; }
    .side-nav-no-mobile ul li {
      font-size: 1.25em;
      margin-bottom: 20px; }
      .side-nav-no-mobile ul li a {
        color: rgba(0, 0, 0, 0.9);
        display: block;
        padding: 10px 20px 10px 10px;
        position: relative; }

ss-person-list {
  display: flex;
  flex-direction: column; }
  ss-person-list.grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; }
    ss-person-list.grid ss-person {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
      padding-bottom: 25px;
      margin-bottom: 20px;
      justify-content: space-between;
      position: relative; }
      @media only screen and (min-width: 930px) {
        ss-person-list.grid ss-person {
          padding-top: 130px; } }
      @media only screen and (min-width: 768px) {
        ss-person-list.grid ss-person {
          width: calc(50% - 20px);
          margin-right: 20px; }
          ss-person-list.grid ss-person:nth-child(2n+2) {
            margin-right: 0; }
          ss-person-list.grid ss-person:last-child {
            margin-right: 0; } }
      @media only screen and (min-width: 1024px) {
        ss-person-list.grid ss-person {
          width: calc(33.33333% - 20px);
          margin-right: 20px; }
          ss-person-list.grid ss-person:nth-child(2n+2) {
            margin-right: 20px; }
          ss-person-list.grid ss-person:nth-child(3n+3) {
            margin-right: 0; }
          ss-person-list.grid ss-person:last-child {
            margin-right: 0; } }
      @media only screen and (min-width: 1600px) {
        ss-person-list.grid ss-person {
          width: calc(25% - 20px); }
          ss-person-list.grid ss-person:nth-child(2n+2) {
            margin-right: 20px; }
          ss-person-list.grid ss-person:nth-child(3n+3) {
            margin-right: 20px; }
          ss-person-list.grid ss-person:nth-child(4n+4) {
            margin-right: 0; }
          ss-person-list.grid ss-person:last-child {
            margin-right: 0; } }
      ss-person-list.grid ss-person .h3 {
        display: block;
        width: 95%;
        text-align: center; }
        @media only screen and (min-width: 930px) {
          ss-person-list.grid ss-person .h3 {
            position: absolute;
            top: 0; } }
      ss-person-list.grid ss-person img {
        display: block;
        float: none;
        width: 50%;
        margin: 0 auto; }
      ss-person-list.grid ss-person .sub-heading {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0; }
      ss-person-list.grid ss-person .btn {
        margin: 0 auto; }
  ss-person-list:not(.grid) ss-person {
    margin-bottom: 20px; }
    ss-person-list:not(.grid) ss-person img {
      float: left;
      width: 49%; }
      @media only screen and (min-width: 930px) {
        ss-person-list:not(.grid) ss-person img {
          width: 22%;
          max-width: 260px;
          margin-top: 8px; } }
    ss-person-list:not(.grid) ss-person h2 {
      float: right;
      width: 50%;
      margin: 0; }
      @media only screen and (min-width: 930px) {
        ss-person-list:not(.grid) ss-person h2 {
          display: inline-block;
          width: 76%; } }
    ss-person-list:not(.grid) ss-person .sub-heading {
      float: right;
      width: 50%; }
      @media only screen and (min-width: 930px) {
        ss-person-list:not(.grid) ss-person .sub-heading {
          display: inline-block;
          width: 76%; } }
    ss-person-list:not(.grid) ss-person .bio {
      clear: both;
      display: block;
      width: 100%;
      margin: 10px 0; }
      @media only screen and (min-width: 930px) {
        ss-person-list:not(.grid) ss-person .bio {
          width: 76%;
          clear: none;
          display: inline-block;
          float: right; } }

ss-theme-leader {
  width: 100%;
  display: block; }
  ss-theme-leader img {
    display: block;
    margin: 0 auto;
    width: 75%; }
    @media only screen and (min-width: 600px) {
      ss-theme-leader img {
        float: left;
        max-width: 200px;
        margin-right: 20px;
        margin-bottom: 20px;
        margin-top: 8px; } }
  ss-theme-leader .h3 {
    display: block;
    width: 100%; }
    @media only screen and (min-width: 600px) {
      ss-theme-leader .h3 {
        width: auto;
        clear: right;
        margin-top: 0; } }
  ss-theme-leader .sub-heading {
    display: block;
    width: 100%; }
    @media only screen and (min-width: 600px) {
      ss-theme-leader .sub-heading {
        width: auto; } }

.theme-members {
  display: flex;
  flex-direction: column; }
  @media only screen and (min-width: 768px) {
    .theme-members {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between; } }

ss-theme-member {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf; }
  ss-theme-member:last-of-type {
    border-bottom: 0px solid #dfdfdf;
    margin-bottom: 0; }
  @media only screen and (min-width: 768px) {
    ss-theme-member {
      display: block;
      width: 45%;
      border-bottom: 0px solid #dfdfdf; } }
  @media only screen and (min-width: 1024px) {
    ss-theme-member {
      width: 32%; } }
  ss-theme-member img {
    width: 75%;
    display: block;
    margin: 0 auto; }
    @media only screen and (min-width: 768px) {
      ss-theme-member img {
        width: 44%;
        margin: 0 5% 0 0;
        float: left; } }
  ss-theme-member .info {
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media only screen and (min-width: 768px) {
      ss-theme-member .info {
        width: 50%;
        float: right;
        align-items: flex-start; } }
    @media only screen and (min-width: 768px) {
      ss-theme-member .info .h3 {
        margin-top: 0; } }
  ss-theme-member .h3 {
    margin-top: 15px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px; }
  .breadcrumb a {
    color: rgba(0, 0, 0, 0.9); }
  .breadcrumb .divider {
    background: transparent;
    margin: 0 5px;
    color: rgba(0, 0, 0, 0.9); }

.book-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  display: none;
  flex-direction: column; }
  .book-container .row {
    display: grid;
    width: 100%; }
    .book-container .row .col {
      height: 100%; }
    .book-container .row.col-33-66 {
      grid-template-columns: 1fr 2fr; }
    .book-container .row.col-66-33 {
      grid-template-columns: 2fr 1fr; }
    @media only screen and (min-width: 768px) {
      .book-container .row.col-50-50 {
        grid-template-columns: repeat(2, 2fr); } }

#page-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0); }

myi-book {
  display: block; }
  myi-book .umb-block-list {
    height: 100%; }

myi-book-page {
  display: block;
  height: 15cm;
  width: 21cm;
  overflow: hidden;
  background-color: #fff;
  position: relative; }
  myi-book-page .page-background {
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  myi-book-page img {
    width: 100%;
    object-fit: cover; }
  myi-book-page.--left:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-right: 0;
    box-shadow: inset -7px 0 30px -7px rgba(0, 0, 0, 0.4);
    z-index: 10; }
  myi-book-page.--right:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 0;
    box-shadow: inset 7px 0 30px -7px rgba(0, 0, 0, 0.4);
    z-index: 10; }
  myi-book-page .row:first-of-type .col {
    padding-top: 40px; }
  myi-book-page .row:last-of-type .col {
    padding-bottom: 40px; }
  myi-book-page .row .page-column-content {
    display: block;
    width: calc(100% - 40px);
    overflow: hidden;
    z-index: 2;
    position: relative; }
  myi-book-page .row .page-heading {
    margin-left: 40px;
    z-index: 2;
    position: relative; }
  myi-book-page .row .col {
    position: relative; }
    myi-book-page .row .col:first-of-type .page-column-content {
      margin-left: 40px; }
    myi-book-page .row .col:last-of-type .page-column-content {
      margin-right: 40px; }
    myi-book-page .row .col.col-0-100 .page-heading {
      margin-right: 40px;
      width: calc(100% - 80px); }
  myi-book-page .row:not(:first-child) .page-column-content {
    height: calc(100% - 40px); }
  myi-book-page .row:not(:first-child) .page-heading {
    margin-top: 0px; }
  myi-book-page .row:not(:first-child) .col:first-of-type .page-column-content {
    margin-bottom: 40px;
    margin-left: 40px;
    margin-top: 0; }
  myi-book-page .row:not(:first-child) .col:last-of-type .page-column-content {
    margin-bottom: 40px;
    margin-right: 40px;
    margin-top: 0; }
  myi-book-page .column-background {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1; }
    myi-book-page .column-background.no-stretch {
      width: auto;
      height: auto;
      object-fit: none; }

.column-header {
  margin-bottom: 10px; }

.show-for-print {
  display: none; }

@media print {
  @page {
    size: 21cm 15cm;
    margin: 0; }
  .hide-for-print {
    display: none !important; }
  .show-for-print {
    display: block; }
  .col {
    print-color-adjust: exact; }
  myi-book-page {
    height: 15cm;
    width: 21cm;
    page-break-after: always;
    overflow: hidden; }
  #cconsent-bar,
  #cconsent-modal {
    display: none !important; } }

html {
  scroll-behavior: smooth; }

body {
  font-size: 100%;
  font-family: "assistantlight", Arial, Helvetica, sans-serif;
  color: rgba(0, 0, 0, 0.9);
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 64px; }
  @media only screen and (min-width: 930px) {
    body {
      margin-bottom: 0; } }

section {
  display: inline-block;
  width: 100%; }

.primary-background {
  background-color: #fff; }

.secondary-background {
  background-color: #EFEFEF; }

.with-side-navigation {
  display: flex;
  flex-direction: column; }
  .with-side-navigation aside.side-nav {
    order: -1; }
  @media only screen and (min-width: 930px) {
    .with-side-navigation {
      display: block;
      width: 100%;
      flex-direction: row;
      justify-content: space-between;
      float: left; }
      .with-side-navigation .text-section {
        width: 74%;
        float: left; } }
  @media only screen and (min-width: 930px) and (min-width: 930px) {
    .with-side-navigation aside.side-nav,
    .with-side-navigation .side-nav-no-mobile {
      float: right;
      width: 24%;
      position: sticky;
      order: 1;
      margin-top: 60px;
      top: 100px; }
      .with-side-navigation aside.side-nav:before,
      .with-side-navigation .side-nav-no-mobile:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 100%;
        border-left: 1px solid #dfdfdf; } }

.text-section {
  max-width: 1100px;
  width: 100%; }

.large-logo-mobile {
  width: 95%;
  display: block;
  margin: 20px auto;
  max-width: 325px; }
  @media only screen and (min-width: 930px) {
    .large-logo-mobile {
      display: none; } }

.normal-link-color {
  color: #039be5 !important; }

.grid-page img {
  width: 100%; }

.container {
  padding: 0 15px; }
  @media only screen and (min-width: 1280px) {
    .container {
      padding: 0; } }

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on March 20, 2018 */
@font-face {
  font-family: "FPL Neu";
  src: url("../../fonts/fpl-neu.eot");
  src: url("../../fonts/fpl-neu.eot?#iefix") format("embedded-opentype"), url("../../fonts/fpl-neu.woff2") format("woff2"), url("../../fonts/fpl-neu.woff") format("woff"), url("../../fonts/fpl-neu.ttf") format("truetype"), url("../../fonts/fpl-neu.svg#FPL Neu") format("svg"); }

@font-face {
  font-family: 'assistantbold';
  src: url("../../fonts/assistant-bold-webfont.woff2") format("woff2"), url("../../fonts/assistant-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'assistantextrabold';
  src: url("../../fonts/assistant-extrabold-webfont.woff2") format("woff2"), url("../../fonts/assistant-extrabold-webfont.woff") format("woff");
  font-weight: bolder;
  font-style: normal; }

@font-face {
  font-family: 'assistantextralight';
  src: url("../../fonts/assistant-extralight-webfont.woff2") format("woff2"), url("../../fonts/assistant-extralight-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'assistantlight';
  src: url("../../fonts/assistant-light-webfont.woff2") format("woff2"), url("../../fonts/assistant-light-webfont.woff") format("woff");
  font-weight: lighter;
  font-style: normal; }

@font-face {
  font-family: 'assistantregular';
  src: url("../../fonts/assistant-regular-webfont.woff2") format("woff2"), url("../../fonts/assistant-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

h1,
.h1 {
  font-size: 1.35rem;
  font-family: "FPL Neu", Arial, Helvetica, sans-serif; }
  h1.with-sub-heading,
  .h1.with-sub-heading {
    margin-bottom: 5px; }

h2,
.h2 {
  font-size: 1.4em;
  font-family: "assistantlight", Arial, Helvetica, sans-serif; }
  h2.with-sub-heading,
  .h2.with-sub-heading {
    margin-bottom: 3px; }

h3,
.h3 {
  font-size: 2.5rem;
  font-family: "assistantlight", Arial, Helvetica, sans-serif; }
  h3.with-sub-heading,
  .h3.with-sub-heading {
    margin-bottom: 3px; }
  @media only screen and (min-width: 930px) {
    h3,
    .h3 {
      font-size: 2.5rem; } }

h4,
.h4 {
  font-size: 2.25rem;
  font-family: "assistantregular", Arial, Helvetica, sans-serif; }
  h4.with-sub-heading,
  .h4.with-sub-heading {
    margin-bottom: 5px; }
  @media only screen and (min-width: 930px) {
    h4,
    .h4 {
      font-size: 2.25rem; } }

p,
.p {
  font-size: 0.85rem;
  margin-bottom: 1em;
  line-height: 1.4; }

.sub-heading {
  margin-bottom: 15px;
  display: block;
  font-size: 1.75rem; }

.intro-text {
  font-size: 1.1rem;
  font-family: "assistantregular", Arial, Helvetica, sans-serif;
  line-height: 1.3; }

a:hover {
  text-decoration: underline; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

.text-col-1 {
  column-count: 1; }

.text-col-2 {
  column-count: 2; }

.text-col-3 {
  column-count: 3;
  gap: 40px; }

.text-col-4 {
  column-count: 4; }

ul {
  list-style: circle; }
  ul li {
    line-height: 1.5;
    font-size: 1.5rem;
    font-family: "assistantregular", Arial, Helvetica, sans-serif; }

ol {
  list-style: decimal; }
  ol li {
    line-height: 1.5;
    font-size: 1.5rem;
    font-family: "assistantregular", Arial, Helvetica, sans-serif; }

.post-nominal {
  font-size: 0.6rem; }

.single-person {
  display: flex;
  flex-direction: column;
  width: 100%; }
  @media only screen and (min-width: 930px) {
    .single-person {
      display: inline-block; }
      .single-person article {
        float: left;
        width: 72%; } }
  .single-person img {
    width: 75%;
    max-width: 400px;
    margin: 0 auto; }
    @media only screen and (min-width: 930px) {
      .single-person img {
        width: 24%;
        float: right;
        margin: 0; } }
  .single-person h1 {
    margin-top: 20px; }
  .single-person .button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px; }
    .single-person .button-container .btn {
      background-color: #64020E; }
      .single-person .button-container .btn:hover {
        background-color: #E40520; }

#contact-page form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 40px; }
  @media only screen and (min-width: 930px) {
    #contact-page form {
      flex-direction: row; }
      #contact-page form .contact-details {
        width: 48%;
        margin-right: 2%;
        float: left; }
      #contact-page form .contact-message {
        width: 50%;
        float: left; }
      #contact-page form .primary-btn {
        float: left;
        clear: both; } }

#support-page h1,
#support-page p {
  text-align: center; }

#support-page #choices {
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  display: flex; }

#support-page #amountToDonate {
  text-align: center;
  max-width: 400px;
  margin: 0 auto; }

#support-page #continue {
  text-align: center; }

#support-page #caf-form-embed {
  display: block;
  width: 100%;
  text-align: center; }

#support-page .donation-types {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column; }
  @media only screen and (min-width: 930px) {
    #support-page .donation-types {
      flex-direction: row; } }

#support-page .amount {
  min-width: 80px; }
  #support-page .amount.not-selected {
    background-color: #fc8694; }
  #support-page .amount.selected {
    font-weight: bold; }

#support-page .input-field input[type=text] + label,
#support-page .input-field input[type=tel] + label,
#support-page .input-field input[type=email] + label,
#support-page .input-field input[type=number] + label,
#support-page .input-field input[type=checkbox] + span,
#support-page .input-field input[type=text]:focus + label,
#support-page .input-field input[type=tel]:focus + label,
#support-page .input-field input[type=email]:focus + label,
#support-page .input-field input[type=number]:focus + label,
#support-page .input-field input[type=checkbox]:focus + span {
  color: #000; }

#support-page .input-field input[type=text]:focus,
#support-page .input-field input[type=tel]:focus,
#support-page .input-field input[type=email]:focus,
#support-page .input-field input[type=number]:focus {
  border-bottom: 1px solid #000;
  box-shadow: 0 1px 0 0 #000; }

#support-page [type="checkbox"] + span:not(.lever) {
  color: #000; }

#support-page input[type="checkbox"]:checked + span:not(.lever):before {
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #E40520;
  border-bottom: 2px solid #E40520; }

#support-page #gift-aid-form-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
  height: 0; }
  @media only screen and (min-width: 930px) {
    #support-page #gift-aid-form-container {
      flex-direction: row;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: space-around; } }

#support-page #show-gift-aid-form {
  margin-bottom: 20px; }

#support-page form {
  text-align: center; }

#support-page .form-section {
  width: 100%; }
  @media only screen and (min-width: 930px) {
    #support-page .form-section {
      width: 45%; } }

#support-page #donate-btn {
  margin-top: 20px; }

#support-page #stage-two {
  transition: all 0.25s ease-in-out;
  overflow: hidden;
  interpolate-size: allow-keywords;
  height: 0;
  padding-bottom: 20px; }

#support-page .one-off-donation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  #support-page .one-off-donation h3 {
    width: 100%; }
  #support-page .one-off-donation .input-field {
    max-width: 300px; }

.row {
  display: grid;
  width: 100%; }
  .row .col {
    box-sizing: border-box;
    padding: 0 0.75rem; }
  .row.col-33-66 {
    grid-template-columns: 1fr 2fr; }
  .row.col-66-33 {
    grid-template-columns: 2fr 1fr; }
