/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/




/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/





























html {
  font-size: 18px;
  font-weight: 300;
  scroll-padding: 5rem;
}

body {
  font-family: Prompt, sans-serif; font-style: normal; font-weight: normal; text-decoration: none
  color: var(--body-color);
  line-height: 1.6;
  overflow-wrap: break-word;
  font-weight: 300;
  font-size: clamp(16px, 3vw, 20px);
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

body.modal-active {
  width: 100vw;
}
body.modal-active.Win32 { 
  width: 100vw; 
}

body.modal-active.Win32 .body-wrapper {
  margin-right: 15px !important; 
}

body.modal-active.Win32 .mv-site-header {
  width: calc(100% - 15px);
}


/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Anchors */

a {
  font-family: Prompt, sans-serif; font-style: normal; font-weight: normal; text-decoration: none
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 300ms; 
}
a * {
  transition: color 300ms; 
}

a:hover,
a:focus,
a:active {
  font-family: Prompt, sans-serif; font-style: normal; font-weight: normal; text-decoration: none
  color: inherit;
  text-decoration: none;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  line-height: 1.2;
  font-weight: 500 !important;
}

h1,
.h1 {
  font-weight: 300; text-decoration: none; font-family: Prompt, sans-serif; font-style: normal;
  color: #424242;
  font-size: 3em;
  text-transform: none;
}

h2,
.h2 {
  font-weight: 300; text-decoration: none; font-family: Prompt, sans-serif; font-style: normal;
  color: #424242;
  font-size: 2.75em;
  text-transform: none;
}

h3,
.h3 {
  font-weight: normal; text-decoration: none; font-family: Prompt, sans-serif; font-style: normal;
  color: #424242;
  font-size: 1.375em;
  text-transform: none;
}

h4,
.h4 {
  font-weight: normal; text-decoration: none; font-family: Prompt, sans-serif; font-style: normal;
  color: #424242;
  font-size: 1.25em;
  text-transform: none;
}

h5,
.h5 {
  font-weight: normal; text-decoration: none; font-family: Prompt, sans-serif; font-style: normal;
  color: ;
  font-size: 1em;
  text-transform: none;
}

h6,
.h6 {
  font-weight: normal; text-decoration: none; font-family: Prompt, sans-serif; font-style: normal;
  color: #424242;
  font-size: 1em;
  text-transform: none;
} 


/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

strong {
  font-weight: 600;
}

/* Blockquotes */

.mv-richtext p[style="padding-left: 40px;"],
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
  font-weight: 600;
  font-size: 1.25em;
}


.mv-richtext p[style="padding-left: 40px;"] + p[style="padding-left: 40px;"] {
  border-left: 0;
  font-size: 1em;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}
/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
/* Image alt text */

img {
  font-size: 1rem;
  word-break: normal;
  width: 100%;
  height: auto;
  display: block;
}































.button {
  padding-top: 0.75em;
padding-right: 1.25em;
padding-bottom: 0.75em;
padding-left: 1.25em;

  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1em;
  text-decoration: none;
  line-height: 1;
  font-size: inherit;
  color: white;
  transition: 300ms;
  border: 1px solid transparent;
  background: #FC6A03;
}

.button--hollow {
  background: transparent;
  border: 1px solid;
  color: #FC6A03;
}

.button--dark {
  color: white;
  background: #424242;
}

.button--dark.button--hollow {
  background: transparent;
  color: #424242
}


.button--white {
  color: #424242;
  background: white;
}

.button--white.button--hollow {
  background: transparent;
  color: white
}

.button:focus,
.button:active,
.button:hover{
  color: white;
  background: #424242;
}

.button--dark:focus,
.button--dark:active,
.button--dark:hover{
  color: white;
  background: #FC6A03;
}

.button--white:focus,
.button--white:active,
.button--white:hover{
  color: white;
  background: #424242;
}

.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}


.hs-cta-wrapper a.button {
  color: white !important;
  display: inline-block;
  margin-right: 0.5em;
}

.hs-cta-wrapper a.button:focus,
.hs-cta-wrapper a.button:active,
.hs-cta-wrapper a.button:hover{
  color: white !important;
  background: #424242;
}
/* Fields */

.hs-form-field {
  margin-bottom: 0;
}

.form-title {
  margin: 0;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

form input::placeholder {
    color: var(--grey-3);
}


/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

.mv-form .hs-error-msgs {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}
.mv-form .inputs-list.hs-error-msgs > li {
  width: 100% !important;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}






.mv-form__form {
  padding: 0;
}
.mv-form__form .hs-form-field {
  margin: 0;
}

.mv-form__form .hs-form-field img {
  max-width: 300px;
}

.mv-form__form .form-title {
  margin: 0;
}

.mv-form form,
.hs-dependent-field {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--edge-padding) / 2);
}


.mv-form fieldset {
  max-width: 100% !important;
  width: 100%;
  column-gap: var(--edge-padding);
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--edge-padding) / 2);
}

.mv-form fieldset .hs-form-field {
  flex-basis: 100%;
  float: none !important;
  width: auto !important;
}



.mv-form .form-columns-1 {
  width: 100%;
  display: flex;
  max-width: 100% !important;
}

.mv-form .form-columns-1 > div {
  flex-basis: 100%;
}

.mv-form fieldset.form-columns-2 {
  max-width: 100% !important;
  width: 100%;
}

.mv-form fieldset.form-columns-2 .hs-form-field {
  flex-basis: 100%;
  float: none !important;
  width: auto !important;
}


.mv-form .hs-form-field label {
  color: var(--body-color);
  font-size: 16px;
  transition: 300ms;
  padding-bottom: 5px;
  display: block;
}

.mv-form .hs-form-field label.hs-error-msg {
  color: var(--mv-peach);
}
.mv-form .hs-form-field .input {
  margin: 0 !important;
}
.mv-form .hs-form-field .hs-input {
  margin: 0 !important;
  display: block;
  width: 100% !important;
  box-sizing: border-box;
  border: 1px solid white;
  border-radius: 5px;
  line-height: 50px;
  height: 50px;
  padding: 0 16px;
  font-size: 16px;
  transition: 300ms;
  margin: 0 !important;
  color: var(--body-color);
}
.mv-form .hs-form-field textarea.hs-input {
  height: 200px;
}

.mv-form .hs-form-field .hs-input.is-placeholder,
.mv-form .hs-form-field .hs-input::placeholder { 
  color: rgba(0,0,0,0.3);
  opacity: 1; /* Firefox */
}

.mv-form .hs-form-field .hs-input.is-placeholder option { 
  color: var(--body-color);
}

.mv-form .hs-form-field .hs-input.invalid {
  border: 1px solid var(--mv-peach);
}


.mv-form .hs-form-field .hs-input:focus {
  border: 1px solid var(--mv-blue);
  outline: none;
}

.mv-form legend.hs-field-desc {
  display: none !important;
}


.mv-form .inputs-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--edge-padding) / 2);
}

.mv-form .inputs-list li {
  display: flex;
  width: 100% !important;
  align-items: center;
  max-width: 100% !important;
}

.mv-form .inputs-list li label {
  padding: 0;
  display: flex;
  align-items: center;
  column-gap: 1em;
}

.mv-form .inputs-list li label  .hs-input {
  width: 16px !important;
  height: 16px !important;
}
.mv-form .actions {
  padding-top: 22px;
}
.mv-form .actions .hs-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
  width: 100%;
  padding: 14px 23px;
  font-size: inherit;
  transition: 300ms;
  cursor: pointer;

  column-gap: 1em;
  text-decoration: none;
  line-height: 1;
  font-size: inherit;
  color: white;
  transition: 300ms;
  border-radius: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  background: linear-gradient(270deg, var(--mv-aqua) 0%, var(--mv-aqua) 51%, var(--mv-blue)) var(--x, 0) / 200%;
}

.mv-form .actions .hs-button:focus,
.mv-form .actions .hs-button:active,
.mv-form .actions .hs-button:hover {
  --x: 99%;
  color: white;
}

.hs-button-wrap {
  position: relative;
}

.hs-button-wrap i {
  position: absolute !important;
  top: 50% !important;
  right: 22px !important;
  color: white;
  font-size: 16px !important;
  transform: translateY(-50%) !important;
}
.mv-form .hs-form-field .hs-input.hs-fieldtype-intl-phone {
  display: flex;
  flex-direction: row;
  padding: 0;
  column-gap: 1px;
}

.mv-form .hs-form-field .hs-input.hs-fieldtype-intl-phone input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex-basis: 50%; 
}

.mv-form .hs-form-field .hs-input.hs-fieldtype-intl-phone select {

  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex-basis: 50%; 
} 

.hs-dependent-field .hs-richtext, .hs-dependent-field .hs-richtext p {
  margin-bottom: 0;
  }

@media all and (min-width: 550px) {
  .mv-form fieldset.form-columns-3,
  .mv-form fieldset.form-columns-2 {
    max-width: 100% !important;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: var(--edge-padding);
  }
  .mv-form fieldset.form-columns-3 .hs-form-field,
  .mv-form fieldset.form-columns-2 .hs-form-field {
    flex-basis: calc(50% - (var(--edge-padding) / 2));
    float: none !important;
    width: auto !important;
    flex-grow: 1;
  }

  .mv-form .inputs-list.multi-container { 
    flex-direction: row;
    column-gap: 1rem;
  }
  .mv-form .inputs-list.multi-container li.hs-form-radio {
    width: auto !important;
  }
  .mv-form .inputs-list.multi-container li.hs-form-radio label {
    column-gap: 0.5rem !important;
  }
}



@media all and (min-width: 960px) {
  .mv-form fieldset.form-columns-3 {
    max-width: 100% !important;
    width: 100%;
    flex-direction: row;
    column-gap: var(--edge-padding);
  }

  .mv-form fieldset.form-columns-3 .hs-form-field {
    flex-basis: calc(33.33% - ((var(--edge-padding) * 2) / 3));
    float: none !important;
    width: auto !important;
  }
}

.hs-input[type="file"] {
  height: auto!important;
  line-height: 1.5 !important;
  padding: 0.5rem 1rem !important;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.mv-video-modal {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: translateY(-100%);
  transition: background-color 300ms, backdrop-filter 300ms;
  padding: 0 var(--module-gap);
  z-index: 999;
}

.mv-video-modal.show {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(0);
}
.mv-video-modal.remove {
  background: rgba(0, 0, 0, 0);
  transform: translateY(0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

.mv-video-modal__container {
  width: 100%;
  max-width: var(--max-width);
  position: relative;
  transition: all 300ms;
  transform: translateY(-100vh);
}

.mv-video-modal.show .mv-video-modal__container {
  transform: translateY(0);
}

.mv-video-modal__close {
  position: absolute;
  bottom: 100%;
  right: -0.5rem;
  font-size: 2em;
  color: white;
  cursor: pointer;
  transition: opacity 300ms;
  padding: 0.5rem;
  opacity: 0.5;
}

.mv-video-modal__close:hover {
  opacity: 1;
}

.mv-video-modal__fluid {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}


@media screen and ( max-height: 800px ){
  .mv-video-modal__container {
    max-width: 80vw;
  }
  .mv-video-modal__fluid {  
    padding-bottom: 70vh; /* 16:9 */
  }

}

.show .mv-video-modal__fluid {
  opacity: 1;
}
.mv-video-modal__fluid video,
.mv-video-modal__fluid .mv-video-modal__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Modules
Specific pieces of UI that are stylized. Typically used for global partial styling
*/
.mv-module {
  min-height: 50px;
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
}

.mv-module__background {
  grid-area: stack;
  z-index: 1;
  display: grid;
  position: relative;
}

img.mv-module__background-img,
.mv-module__background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

.mv-module__body {
  display: flex;
  grid-area: stack;
  z-index: 10;
  justify-content: center;
  align-items: center;
  padding-inline: 2.5em
}

.mv-module__container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-basis: 100%;
  max-width: 1240px;
  padding-block: calc( 2em + 3vw );
}

.mv-module__container--skinny {
  max-width: 800px;
}

.mv-module__content {
  width: 100%; 
  display: flex;
  flex-direction: column;
}

.parallax-background {
  overflow: hidden;
}

.parallax-background .mv-module__background-img {
  height: 120%;
  max-height: 120%;
}

.mv-module.pt-0 .mv-module__container{ padding-top: 0; }
.mv-module.pt-lg .mv-module__container{ padding-top: calc(4vw + 4em); }
.mv-module.pt-sm .mv-module__container{ padding-top: calc(1vw + 2em); }

.mv-module.pb-0 .mv-module__container{ padding-bottom: 0; }
.mv-module.pb-lg .mv-module__container{ padding-bottom: calc(4vw + 4em); }
.mv-module.pb-sm .mv-module__container{ padding-bottom: calc(1vw + 2em); }


h1.section-title,
h2.section-title{ letter-spacing: normal; margin-bottom: inherit; }


.mv-content-block__body-title strong,
.mv-slider__content-title strong,
.mv-module__header-title strong{
	color: var(--secondary-colour) !important;
}


/* Macros
Specific pieces of UI that are stylized. Typically used for global partial styling
*/
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/







/*****************************************/
/* Start your style declarations here    */
/*****************************************/



.mv-mobile-toggle {
  --color: #fff;
  --hover-color: #ccc;
  color: var(--color);
  padding: 0;
  margin: 0;
  background: none;
  position: relative;
  padding: 1px;
  border-radius: 0.5em;
  border: none;
  transition: opacity 300ms;
  z-index: 100;
}

.backdrop--light .mv-mobile-toggle {
  --color: #333;
  --hover-color: var(--secondary-colour);
}

.mv-mobile-toggle:hover,
.mv-mobile-toggle:focus {
  background: none;
  outline: none;
  color: var(--hover-color);
  opacity: 0.75;
}

.mv-mobile-toggle i {
  transition: transform 300ms, opacity 300ms;
  font-size: 32px;
}

.mv-mobile-toggle .fa-times {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  position: absolute;
  top: 50%;
  left: 50%;
}

.mv-mobile-toggle.showing .fa-times {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.mv-mobile-toggle.showing .fa-bars-staggered {
  opacity: 0;
  transform: scale(0);
}




 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* MV MENU */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* LIST ***********************************************************************************/

.mv-menu__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* LIST MODS -- SITE HEADER ***********************************/

.mv-site-header__navigation .mv-menu__list {
  transition: transform 300ms;
}
.mv-site-header__navigation .mv-menu__list.show-0 {
  transform: translateX(0); 
}
.mv-site-header__navigation .mv-menu__list.show-1 {
  transform: translateX(-100%); 
}
.mv-site-header__navigation .mv-menu__list.show-2 {
  transform: translateX(-200%);
}
.mv-site-header__navigation .mv-menu__list.show-3 {
  transform: translateX(-300%);
}

/* ITEM ***********************************************************************************/

.mv-menu__item {
  display: grid;
}

/* ITEM MODS  ***********************************/



/* LINK ***********************************************************************************/

.mv-menu__link {
  --color: #fff;
  --hover-color: #ccc;
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75em;
  padding: 0.375em 0;
}

.mv-menu__item.has-children .mv-menu__link .fa-chevron-down {
  transform-origin: center;
  font-size: 0.75em;
  transform: rotate(-90deg); 
  transition: 300ms;
}

.mv-menu__back-link {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-block: 1em;
}

/* LINK MODS -- BACKDROP ***********************************/

.backdrop--light .mv-menu__link {
  --color: #333;
  --hover-color: var(--secondary-colour);
}


/* LINK MODS -- SITE HEADER ***********************************/

.mv-site-header__navigation .mv-menu__link {
  padding: 0.5rem calc(var(--module-gap) / 2);
}


/* LINK HOVER ***********************************************************************************/

.mv-menu__link:hover {
  color: var(--hover-color);
}




/* SUB MENU ***********************************************************************************/

.mv-menu__list--sub { 

}


/* SUB MENU MODS -- SITE HEADER ***********************************/

.mv-site-header__navigation .mv-menu__list--sub { 
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.mv-site-header__navigation .show-sub > .mv-menu__list--sub { 
  opacity: 1;
  pointer-events: all;
}

/*
Brockie added this so that top level nav pages that have no link don't get an "About this" sub page on the mobile menu
*/
.mv-menu__item--fully-hidden { display: none !important; }



@media all and (min-width: 900px) {
  
  .site-nav__mobile-menu-nav,
  .mv-menu__item--mob-only,
  .mv-mobile-toggle {
    display: none !important; 
  }

  
  /* 900px + LIST HOZ ***********************************************************************************/
  
  .horizontal.mv-menu__list { 
    display: flex;
    align-items: stretch;
  }
  
  /* 900px + LIST HOZ MODS -- SITE HEADER ***********************************/
  
  .mv-site-header__navigation .horizontal.mv-menu__list { 
    display: flex;
    align-items: stretch;
  }
  
  
  /* 900px + ITEM ***********************************************************************************/
  
  .mv-menu__item {
    position: relative; 
  }
  
  /* 900px + ITEM HOZ MODS -- SITE HEADER ***********************************/
  
  .mv-site-header__navigation .horizontal .mv-menu__item { 
    display: flex;
    align-items: center;
  }
  
  
  /* 900px + LINK ***********************************************************************************/
  
  .mv-menu__link {
    white-space: nowrap;
  }
  .mv-menu__item.has-children .mv-menu__link .fa-chevron-down {
    transform: rotate(0); 
  }
  .mv-menu__item.has-children.focus > .mv-menu__link .fa-chevron-down,
  .mv-menu__item.has-children:hover > .mv-menu__link .fa-chevron-down {
    transform: rotate(-180deg); 
  }
  
  
  /* 900px + SUB MENU ***********************************************************************************/
  
  .mv-menu__list--sub {
    
  }
  
  /* 900px + SUB MENU MODS - SITE HEADER ***********************************/
  
  .mv-site-header__navigation .mv-menu__list--sub { 
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    min-width: 100%;
    width: auto;
  }
  
  .mv-site-header__navigation .mv-menu__list--sub:before { 
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    height: 22px;
    width: 100%;
  }
  
  
  /* keyboard Nav -- comes from JS in module: mv-site-header */
  .mv-site-header__navigation .has-children:hover > .mv-menu__list--sub,
  .mv-site-header__navigation .focus > .mv-menu__list--sub { 
    opacity: 1;
    pointer-events: all;
  }
  
  /* 900px + SUB LINK ***********************************************************************************/
  
  .mv-site-header__navigation .mv-menu__list--sub .mv-menu__link {
    margin-top: 1px;
    min-width: 100%;
  }
  
  .backdrop--light .mv-site-header__navigation .mv-menu__list--sub .mv-menu__link {
    background: rgba(255, 255, 255, 0.9);
  }

  .backdrop--dark .mv-site-header__navigation .mv-menu__list--sub .mv-menu__link {
    background: rgba(33, 33, 33, 0.9);
  }
  
  .mv-site-header__navigation .mv-menu__list--sub.level-1 > .mv-menu__item:nth-child(2) > .mv-menu__link { 
    border-top-left-radius: var(--button-border-radius);
    border-top-right-radius: var(--button-border-radius);
  }
  
  .mv-site-header__navigation .mv-menu__list--sub.level-1 > .mv-menu__item:nth-last-child(2) > .mv-menu__link { 
    border-bottom-left-radius: var(--button-border-radius);
    border-bottom-right-radius: var(--button-border-radius);
  }
  
  .scrolled .mv-site-header__navigation .mv-menu__list--sub.level-1 > .mv-menu__item:nth-child(2) > .mv-menu__link { 
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  } 


  /* 900px + LINK LEVEL 1 ******************************************************************************/

  .mv-site-header__navigation .mv-menu__item.has-children.level-1 > .mv-menu__link .fa-chevron-down {
    transform: rotate(-90deg); 
  }

  .mv-site-header__navigation .mv-menu__item.has-children.focus.level-1 > .mv-menu__link .fa-chevron-down,
  .mv-site-header__navigation .mv-menu__item.has-children:hover.level-1 > .mv-menu__link .fa-chevron-down {
    transform: rotate(-270deg) !important; 
  }

  /* 900px + SUB SUB MENU ******************************************************************************/
  
  .mv-site-header__navigation .mv-menu__list--sub.level-2 {
    left: calc(100% + 1px);
    top: 0;
  }
  
  .mv-site-header__navigation .mv-menu__list--sub.level-2 .mv-menu__item:nth-child(2) .mv-menu__link { 
    border-top-left-radius: var(--button-border-radius);
    border-top-right-radius: var(--button-border-radius);
  }
  
  .mv-site-header__navigation .mv-menu__list--sub.level-2 .mv-menu__item:nth-last-child(2) .mv-menu__link { 
    border-bottom-left-radius: var(--button-border-radius);
    border-bottom-right-radius: var(--button-border-radius);
  }

}









  /*
  .site-nav__list.level-0  {
    flex-direction: row;
    padding: 0;
    height: auto;
    transform: none;
    transition: none;
    position: static;
  }
  
  .has-children .site-nav__link.level-0 {
    padding-right: 16px;
  }
  
  .site-nav__sub-menu.level-1 {
    height: auto;
    transform: none;
    left: -44px;
    top: 100%;
    width: auto;
    box-shadow: -1px -1px 19px 1px rgba(0,0,0,0.1);
    -webkit-box-shadow: -1px -1px 19px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: -1px -1px 19px 1px rgba(0,0,0,0.1);
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    padding: 22px;
  }

  .navigation-blue .site-nav__sub-menu.level-1 {
    border-radius: var(--border-radius);
  }
  
  .site-nav__sub-menu.level-1:before {
    content: '';
    position: absolute;
    top: -20px;
    height: 20px;
    left: -10%;
    width: 120%;
    background: white;
  }

  .has-children:focus .site-nav__sub-menu,
  .has-children:hover .site-nav__sub-menu {
    opacity: 1;
    pointer-events: all;
  }  

  .site-nav__item.level-0 {
    position: relative;
  }

  .site-nav__item.level-0 > a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--mv-aqua);
    opacity: 0;
    transition: opacity 300ms;
  } 

  .site-nav__item.level-0:hover > a:before {
    opacity: 1;
  }

  .site-nav__item.level-0.sub-mega {
    position: static;
  }
  
  .site-nav__link.level-0 {
    padding: 0;
    height: 92px;
    position: relative;
  }

  .site-nav__link.level-0 i {
    right: 0;
    transition: transform 300ms;
  }

  .site-nav__item.level-0:hover .site-nav__link.level-0 i {
    right: 0;
    transform: rotate(-180deg) translateY(6px);
  }
  
  .site-nav__link.level-1 {
    white-space: nowrap;
    font-weight: 500;
    border-radius: 3px;
    min-height: 50px;
    transition: color 300ms, background-color 300ms;
    line-height: 1;
  }
  
  .site-nav__link.level-1:hover {
    color: var(--mv-aqua);
    background: #f5f6f9;
  }
  
  .site-nav__sub-menu.level-2 {
    display: none; 
    align-content: flex-start;
    height: 100%;
    row-gap: 3px;
  }

  .site-nav__sub-menu.level-1.menu-mega {
    left: -214px;
    width: calc(100vw - 20px);
    max-width: var(--max-width);
    row-gap: 3px;
    pointer-events: none;
  }
  
  .site-nav__item.level-0:hover .site-nav__sub-menu.level-1.menu-mega {
    pointer-events: all;
  }

  .menu-mega .site-nav__item.level-1 {
    background: #f5f6f9;
    border-radius: 3px;
    width: 280px;
  }

  .menu-mega .site-nav__link.level-1 {
    position: relative;
    z-index: 1;
  }

  .menu-mega .site-nav__link.level-1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #2E79B2 0%, #2B388F 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 300ms;
    border-radius: 3px;
  }

  .menu-mega .site-nav__item.level-1:hover .site-nav__link.level-1:before {
    opacity: 1;
  }
  .menu-mega .site-nav__item.level-1:hover .site-nav__link.level-1 {
    color: white;
  }
  .site-nav__item.level-0:hover .menu-mega .site-nav__item.level-1:first-of-type .site-nav__link.level-1:before {
    opacity: 1;
  } 
  .site-nav__item.level-0:hover .menu-mega .site-nav__item.level-1:first-of-type .site-nav__link.level-1 {
    color: white;
  }

  .site-nav__item.level-0:hover .menu-mega:hover .site-nav__item.level-1 .site-nav__link.level-1:before {
    opacity: 0;
  }
  .site-nav__item.level-0:hover .menu-mega:hover .site-nav__item.level-1 .site-nav__link.level-1 {
    color: var(--mv-blue);
  }

  .site-nav__item.level-0:hover .menu-mega .site-nav__item.level-1:hover .site-nav__link.level-1:before {
    opacity: 1;
  }
  .site-nav__item.level-0:hover .menu-mega .site-nav__item.level-1:hover .site-nav__link.level-1 {
    color: white;
  }

  .menu-mega .site-nav__item.level-1 i {
    transform: rotate(-90deg) translateX(6px);
  }

  .menu-mega .site-nav__sub-menu.level-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    left: 302px;
    height: 100%;
    width: calc(100% - 302px);
    background: white;
    opacity: 0;
    border-radius: var(--border-radius);
    padding: 22px;
    pointer-events: none;
    align-items: flex-start;
    z-index: 5;
  }

  .menu-mega .site-nav__sub-menu.level-2:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }

  .site-nav__item.level-0:hover .menu-mega .site-nav__item.level-1:first-of-type .site-nav__sub-menu.level-2 {
    opacity: 1;
    pointer-events: all;
  } 

  .menu-mega .site-nav__item.level-1:hover .site-nav__sub-menu.level-2 {
    opacity: 1;
    pointer-events: all;
  } 

  .menu-mega .site-nav__item.level-2 {
    flex-basis: 33.3%;
    position: relative;
    z-index: 10;
  } 

  .menu-mega .site-nav__link.level-2 {
    font-size: inherit;
    color: var(--body-color); 
    min-height: 50px;
  } 

  .menu-mega .site-nav__link.level-2:hover {
    color: var(--mv-aqua);
  } 

  .fa-arrow-right {
    transform: rotate(0) translate(0,0) !important;
    position: static !important;
    font-size: inherit !important;
  }

  .site-nav__item--special {
    display: flex !important;
    flex-basis: 100% !important;
  }
  .site-nav__item--special a {
    font-weight: 500 !important;
    color: var(--mv-blue) !important;
  }
  .site-nav__item--special a:hover {
    font-weight: 500 !important;
    color: var(--mv-aqua) !important;
  }
  
  .mv-mobile-toggle {
    display: none;  
  }
  */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.mv-site-header__search-button {
  padding: 0;
  margin: 0;
  background: none;
  position: relative;
  color: var(--mv-blue);
  padding: 1px;
  border-radius: 0.5em;
  border: none;
  transition: opacity 300ms;
}

.mv-site-header__search-button:hover,
.mv-site-header__search-button:focus {
  background: none;
  outline: none;
  color: var(--mv-aqua);
  opacity: 0.75;
}

.mv-site-header__search-button i {
  transition: transform 300ms, opacity 300ms;
  font-size: 32px;
}

.mv-site-header__search-button .fa-times {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  position: absolute;
  top: 50%;
  left: 50%;
}

.mv-site-header__search-button.showing .fa-times {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.mv-site-header__search-button.showing .fa-search {
  opacity: 0;
  transform: scale(0);
}


.mv-site-header__search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms, transform 300ms;
  z-index: -1;
  display: flex;
  justify-content: center; 
  overflow: hidden;
  padding-bottom: 30px;
}

.mv-site-header__search form {
  width: 100%;
  max-width: var(--max-width);
  box-sizing: border-box;
  background: white;
  padding: var(--edge-padding);
  border-bottom-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);

  box-shadow: -1px -1px 19px 1px rgba(0,0,0,0.1);
  -webkit-box-shadow: -1px -1px 19px 1px rgba(0,0,0,0.1);
  -moz-box-shadow: -1px -1px 19px 1px rgba(0,0,0,0.1);
}

.mv-site-header__search.show {
  opacity: 1;
  pointer-events: all;
}

.mv-site-header__search form {
  width: 100%; 
  display: flex;
  justify-content: center;
}

.mv-site-header__search form input.mv-site-header__search-input {
  border: 1px solid transparent; 
  outline: none;
  transition: border-color 300ms;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.mv-site-header__search form input.mv-site-header__search-input:focus {
  border: 1px solid transparent; 
  outline: none;
}
		

.mv-divider {
    position: relative;
    z-index: 800;
    pointer-events: none;
    height: 2.5vw;
}

.mv-divider svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
}

.mv-divider.top-left svg,
.mv-divider.top-right svg {
    bottom: 0;
}

.mv-divider.bottom-left svg,
.mv-divider.bottom-right svg {
    top: 0;
}
	
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.card-grid {
  display: grid;
  gap: 2.5em;
  grid-template-columns: 1fr;
}

.card-grid.group-cards{ border-radius: var(--border-radius); }



.content-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-direction: column;
  position: relative;
  transition: 300ms;
  z-index: 50;
  display: flex;
}

.grow-on-hover  .content-card:hover{
	transform: scale(1.1);
	z-index: 60;
}

.backdrop--dark .content-card {
  color: white; 
}

.content-card__icon {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  width: 50px;
  height: 50px;
  border-radius: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  background: var(--secondary-colour);
  transition: 300ms;
}

.content-card--background:hover .content-card__icon {
  transform: scale(1.1);
}

.content-card .content-card__content-icon {
	width: 90px;
	display: block;
	height: 90px;
	object-fit: contain;

	margin-bottom: 1rem;
}

.content-card .content-card__content-icon svg{ width: 90px; height: 90px; }


.content-card--left {
  flex-direction: row;
}

.content-card--background {
  flex-direction: row;
  align-items: flex-end;
  justify-content: stretch;
  display: flex;
}



.content-card__img {
  aspect-ratio: 16/11;
  object-fit: cover; 
  border-radius: var(--border-radius);
}

.content-card--left .content-card__img {
  aspect-ratio: 9/10;
  max-width: 30%;
}

.content-card--image-only .content-card__img {
  aspect-ratio: auto;
  max-width: 100%;
  min-height: 100%;
}

.content-card--background .content-card__img {
  aspect-ratio: auto;
  width: 100%; 
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.content-card__body {
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  flex-basis: 100%;
  justify-content: space-between;
  z-index: 10;
  font-weight: 200;
}


.content-card--background .content-card__body {
  background: linear-gradient(180deg, rgba(51,51,51,0) 0%, #333333 100%);
  color: #fff;
  margin-top: 250px;
  gap: 0.5em;
  line-height: 1.25;
  padding-right: 2em;
}

.content-card__body-wrap {
  flex-basis: 100%;
}

.content-card__title {
  font-size: 1.25em;
  margin: 0 0 0.5rem 0;
  flex-basis: 100%;
}
.content-card--background .content-card__title {
  color: #fff;
  transition: 300ms;
}

.content-card--background:hover .content-card__title {
  color: var(--secondary-colour);
}


.content-card__description {
  flex-basis: 100%;
  font-size: 0.875em;
  margin: 0;
}

.content-card__cta {
  font-size: 0.875em;
  color: var(--secondary-colour);
  font-weight: 200;
  margin-top: auto;
}

@media all and (min-width: 1000px) {

  .card-grid--col-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid--col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid--col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .card-grid--col-6 {
    grid-template-columns: repeat(6, 1fr);
  }


  .content-card--cols-2 {
    grid-column-end: span 2;
  }
  .content-card--cols-3 {
    grid-column-end: span 3;
  }
  .content-card--cols-4 {
    grid-column-end: span 4;
  }
  .content-card--cols-5 {
    grid-column-end: span 5;
  }
  .content-card--cols-6 {
    grid-column-end: span 6;
  }

  .content-card--rows-2 {
    grid-row-end: span 2;
  }
  .content-card--rows-3 {
    grid-row-end: span 3;
  }
  .content-card--rows-4 {
    grid-row-end: span 4;
  }

}




/* SLIDER CARDS */
.mv-card-slider .content-card{
	transition: unset;
	transition: opacity 300ms, color 300ms, background-color 300ms;
}

.mv-card-slider.grow-on-hover .content-card .content-card__image-wrap{
	overflow: hidden;
	aspect-ratio: 16/11;
	width: 100%;
	border-radius: var(--border-radius);
}

.mv-card-slider.grow-on-hover .content-card .content-card__img{
	transition: transform 300ms;
	transform: scale(1);
}


.mv-card-slider.grow-on-hover .content-card:hover .content-card__img{
	transform: scale(1.1);
}
.mv-content-block {
  min-height: 50px;
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
}

.mv-content-block__background {
  grid-area: stack;
  z-index: 1;
  display: grid;
  position: relative;
}

img.mv-content-block__background-img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

.mv-content-block__body {
  grid-area: stack;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.mv-content-block__body-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.mv-content-block__body-content {
  width: 100%; 
  display: flex;
  flex-direction: column;
}

.mv-content-block__body-content *:last-child {
  margin-bottom: 0;
}

.mv-content-block__body-image {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: center;
}

.mv-content-block__body-mask-wrap {
  position: relative;
  width: 100%;
}

.mv-content-block__body-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
}

.mv-content-block__body-image .mask {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 20;
  display: block;
}

.mv-content-block__body-title {
  width: 100%;
}

.mv-content-block__body-intro {
  width: 100%;
}

.parallax-background {
  overflow: hidden;
}

.parallax-background .parallax-background-img {
  height: 120%;
  max-height: 120%;
}


.pagination-with-counts {
  display: flex;
  flex-direction: column;
  row-gap: var(--edge-padding);
  width: 100%;
  max-width: calc(var(--max-width) + (var(--edge-padding) * 2));
  align-items: center;
  margin: 0 auto calc(var(--edge-padding) * 2) auto;
  padding: 0 var(--edge-padding);
}

.pagination-with-counts__count {
  flex-basis: 50%;
  color: var(--body-color);

}

.pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-basis: 50%;
  column-gap: 5px;
}

.pagination__link,
.pagination__link:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  line-height: 1;
  transition: 300ms;
  text-decoration: none;
  margin: 0; 
  color: var(--body-color);
}

.pagination__link i {
  font-size: 14px;
}

.pagination__link:hover,
.pagination__link:focus,
.pagination__link:active {
  text-decoration: none;
  margin: 0;
  background: var(--secondary-colour);
  color: white;
}

.pagination__link--disabled {
  cursor: default;
  pointer-events: none;
}

.pagination__link--disabled .pagination__link-text {
  color: #B0C1D4 !important;
}

.pagination__link--first,
.pagination__link--prev {
}

.pagination__link--first {
}

.pagination__link--number {
}


.pagination__link--active {
  background: var(--secondary-colour) !important;
  color: white !important;
}

.pagination__link--last,
.pagination__link--next {
}

.pagination__link--last {
}

.pagination__link-icon svg,
.pagination__link-icon svg {
  height: 16px;
  margin: 0 0.3rem;
  width: 16px;
}

.pagination__link--disabled .pagination__link-icon svg,
.pagination__link--disabled .pagination__link-icon svg {
  fill: #B0C1D4 !important;
}

@media all and (min-width: 640px) {
  .pagination-with-counts {
    flex-direction: row;
  }

  .pagination {
    justify-content: flex-end;
  }
}

.theme-icon .fill{ fill: currentColor; }
.theme-icon .stroke{ stroke: currentColor; }
.theme-icon .fill-none{ fill: none !important; }

/* Layout
Specific pieces of UI that are stylized. Typically used for global partial styling
*/



/* Templates
Specific templates that are stylized.
*/

.blog_archive{
	background-color: #FFF8F5;
}
article.blog-post,
#post-image{
	background-color: #FFF8F5;
}

/* POST HEADER */
#post-header.has-featured-image .mv-module__container{ padding-bottom: 17em !important; }

/* POST IMAGE */
#post-image{
	position: relative;
	z-index: 800;
}

#post-image .mv-module__container{ padding: 0; }

#post-image img{
	margin-top: calc((2.5vw + 15em) * -1);
	max-width: 1240px;
	border-radius: 20px;
}

/* POST BODY */
#post-content {
	padding: 2.5em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
} 

#post-content .blog-post__container {
	width: 100%;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	row-gap: 2.5em;
	position: relative;
}

/* POST META */
#post-meta {
	display: flex;
	flex-direction: column;
	column-gap: 2.5em;
	row-gap: 2.5em;
	color: #585E6C;
	font-size: 14px;
	align-items: center;
}

#post-meta .blog-post__meta-link {
	display: flex;
	column-gap: 7px;
	color: #494B4E;
	align-items: center;
	line-height: 1;
	transition: 300ms;
}

#post-meta .blog-post__meta-link:focus,
#post-meta .blog-post__meta-link:hover {
	opacity: 0.75;
}

@media all and (min-width: 475px) {
	#post-meta {
		flex-direction: row;
		justify-content: space-between;
	}
}

/* POST SOCIALS */
#post-socials .blog-post__socials-container {
	background: #FFF;
	border-radius: var(--border-radius);
	padding: 1.5em;
	display: flex;
	flex-direction: row;
	row-gap: 12px;
	column-gap: 12px;
	color: var(--alt-blue);
	align-items: center;
	justify-content: center;
	margin-top: 2.5em;
	width: 100%;
}

#post-socials a.blog-post__socials-link {
	color: #424242;
	transition: 300ms;
	display: block;
	text-align: center;
}

#post-socials a.blog-post__socials-link:hover {
	opacity: 1;	
	color: #FC6A03;
}

#post-socials a.blog-post__socials-link i {
	font-size: 46px;
}


@media all and (min-width: 1180px) {
	#post-socials .blog-post__socials-container {
		flex-direction: column;
		margin-top: 0;
	}

	#post-socials {
		position: absolute;
		top: 2.5em;
		left: 2.5em;
		width: auto;
	}
}
@media all and (min-width: 1323px) {
	#post-socials {
		left: calc(50% - 620px);
	}
}



/* POST BODY TYPOGRAPHY -- MAYBE MOVE OUT TO GLOBAL TYPOGRAPHY ?? */
#post-body a{ color: #FC6A03; }
#post-body a:hover{ opacity: 0.75; }

#post-body img,
#post-body .hs-embed-wrapper iframe{
	border-radius: var(--border-radius);
	left: min(-1em,-5%);
	margin-bottom: 2em;
	margin-top: 2em;
	max-width: 96vw !important;
	position: relative;
	width: 110% !important;
}

#post-body .hs-embed-wrapper[data-service="youtube"] iframe{
	height: auto !important;
	aspect-ratio: 16 / 9;
}

#post-body td, 
#post-body th{ border: 1px solid; }
.mv-body-container.w-sidebar{
	display: block;
	background: #f5f6f9; 
	padding-right: 2.5em;
	padding-left: 2.5em; 
}

.mv-body-container.w-sidebar > div{
	display: grid;
	gap: 2.5em;
	grid-template-columns: 1fr;

	width: 100%;
	max-width: 1240px;
	
	margin: 0 auto;
	padding: 2.5em 0 0;
}

.mv-body-container.w-sidebar .main-content{ }
.mv-body-container.w-sidebar .sidebar-content{}

.mv-body-container.w-sidebar .sidebar-content .mv-module{
	margin-bottom: 2.5em;
	border-radius: var(--border-radius);
}

@media all and (min-width: 1240px) {
	.mv-body-container.w-sidebar > div {
		grid-template-columns: 2fr 1fr;
	}
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

:root {
  --max-width: 1240px;
  --header-height: 100px;
  --border-radius: 1rem;
  --button-border-radius: 10px; 
  --module-gap: 2.5rem;
  --module-spacing: calc( 2em + 3vw );
  
  --primary-font: Prompt, 'sans-serif';
  --secondary-font: Prompt, 'sans-serif';
  
  --primary-colour:  #424242;
  --secondary-colour: #FC6A03; 
  
  --body-font-family: {font=Prompt, font_set=GOOGLE, styles={font-family=Prompt, sans-serif, font-style=normal, font-weight=normal, text-decoration=none}, size=1, size_unit=em, color=#424242, variant=null, fallback=sans-serif, style=font-family: Prompt, sans-serif; font-style: normal; font-weight: normal; text-decoration: none, css=color: #424242;font-size: 1em;font-family: Prompt, sans-serif;}, 'sans-serif';
  --body-font-weight: ;
  --body-font-colour: #424242;
  --body-font-size: clamp(16px, 3vw, 20px);
  
  --anchor_font_family: {font=Prompt, font_set=GOOGLE, styles={font-family=Prompt, sans-serif, font-style=normal, font-weight=normal, text-decoration=none}, size=1, size_unit=em, color=#424242, variant=null, fallback=sans-serif, style=font-family: Prompt, sans-serif; font-style: normal; font-weight: normal; text-decoration: none, css=color: #424242;font-size: 1em;font-family: Prompt, sans-serif;}, 'sans-serif';
  
  
    
    --h1_font_family: Prompt, 'sans-serif';
    --h1_font_weight: 300;
    --h1_font_colour: #424242;
    --h1_font_size: 3em;
    --h1_text_transform: none;
  
    
    --h2_font_family: Prompt, 'sans-serif';
    --h2_font_weight: 300;
    --h2_font_colour: #424242;
    --h2_font_size: 2.75em;
    --h2_text_transform: none;
  
    
    --h3_font_family: Prompt, 'sans-serif';
    --h3_font_weight: regular;
    --h3_font_colour: #424242;
    --h3_font_size: 1.375em;
    --h3_text_transform: none;
  
    
    --h4_font_family: Prompt, 'sans-serif';
    --h4_font_weight: regular;
    --h4_font_colour: #424242;
    --h4_font_size: 1.25em;
    --h4_text_transform: none;
  
    
    --h5_font_family: Prompt, 'sans-serif';
    --h5_font_weight: regular;
    --h5_font_colour: ;
    --h5_font_size: 1em;
    --h5_text_transform: none;
  
}


/* For content that needs to be visually hidden but stay visible for screenreaders */

.sr-only,
.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
	.sr-only,
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

a.header__skip {
  display: block;
  position: fixed;
  top: 1rem;
  left: -100vw;
  z-index: 999;
  padding: 0.75em 1em;
  border-radius: 0;
  background: white;
  color: black;
}

a.header__skip:focus {
  left: 1rem;
}


.typewriter {
  display: block;
  color: var(--secondary-colour);
}

.type-it {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding-right: 0.25em;
}