﻿:root {
  --primary-color: #0059FF;
  --light-theme-color: #2E3543;
  --light-theme-background: #F6F9FF;
  --light-theme-header-color: #0059FF;
  --dark-theme-color: white;
  --dark-theme-background: #2E3543;
  --dark-theme-header-color: white;
  --dark-blue-theme-background: #043174;
  --text-color: var(--light-theme-color);
  --anchor-underline-colour: rgba(46, 53, 67, 0.3);
  --section-background-colour: var(--light-theme-background);
  --header-color: var(--light-theme-header-color);
  --input-border-color: rgba(0, 89, 255, 0.3);
  --error-color: #FF0004;
  --primary-button-background: #0059FF;
  --primary-button-color: white;
  --secondary-button-background: transparent;
  --secondary-button-color: #2E3543;
  --solid-button-background: white;
  --solid-button-color: #2E3543;
  --inline-button-color: #2E3543;
  --section-padding: 100px;
  --large-header-font-size: 72px;
  --header-font-size: 48px;
  --medium-header-font-size: 32px;
  --small-header-font-size: 24px;
}
@media only screen and (max-width: 1400px) {
  :root {
    --header-font-size: 36px;
  }
}
@media only screen and (max-width: 1100px) {
  :root {
    --section-padding: 50px;
    --large-header-font-size: 56px;
    --medium-header-font-size: 26px;
    --small-header-font-size: 20px;
  }
}
@media only screen and (max-width: 500px) {
  :root {
    --section-padding: 30px;
    --header-font-size: 30px;
    --small-header-font-size: 22px;
  }
}
html,
body {
  font-family: "ReplicaLL", "Inter", sans-serif;
  background: white;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
body.fixed {
  overflow: hidden;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
@keyframes pulse {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@font-face {
  font-family: "ReplicaLL";
  font-weight: 300;
  src: url("/fonts/ReplicaLLWeb-Light.woff") format("woff");
}
@font-face {
  font-family: "ReplicaLL";
  font-weight: normal;
  src: url("/fonts/ReplicaLLWeb-Regular.woff") format("woff");
}
@font-face {
  font-family: "ReplicaLL";
  font-weight: bold;
  src: url("/fonts/ReplicaLLWeb-Heavy.woff") format("woff");
}
h3,
div.paragraph,
p,
a:not(.button) {
  color: var(--text-color);
}
h1,
h2,
h3 {
  font-style: normal;
  line-height: 110%;
  font-weight: 300;
  margin: 0.5em 0;
}
h1[text-colour="White"],
h2[text-colour="White"],
h3[text-colour="White"] {
  color: white !important;
}
h1[text-colour="Dark"],
h2[text-colour="Dark"],
h3[text-colour="Dark"] {
  color: #2E3543 !important;
}
h1[text-colour="Bright"],
h2[text-colour="Bright"],
h3[text-colour="Bright"] {
  color: #0059FF !important;
}
h1 {
  color: var(--header-color);
  font-size: var(--header-font-size);
}
h1.extra-large {
  font-size: var(--large-header-font-size);
}
h1.medium-large {
  font-size: 36px;
}
h1.hero-heading {
  font-size: 64px;
}
@media only screen and (max-width: 700px) {
  h1.hero-heading {
    font-size: 50px;
  }
}
h1.sub-heading {
  font-size: 30px;
  line-height: 170%;
}
@media only screen and (max-width: 1400px) {
  h1.sub-heading {
    font-size: 24px;
    line-height: 145%;
  }
}
h2 {
  color: var(--header-color);
  font-size: var(--small-header-font-size);
}
h2.large {
  font-size: var(--header-font-size);
}
h3 {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  background: none;
  padding: 0.5em 0;
  border: none;
  color: var(--header-color);
}
div.paragraph,
p {
  font-family: "ReplicaLL", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  font-style: normal;
  line-height: 1.5em;
  margin: 0.5em 0;
  letter-spacing: 0.02em;
  line-height: 170%;
}
div.paragraph.small,
p.small,
div.paragraph.small > *,
p.small > * {
  font-size: 14px;
  line-height: 185%;
  letter-spacing: 0.02em;
}
div.paragraph.large,
p.large,
div.paragraph.large > *,
p.large > * {
  font-size: 18px;
  letter-spacing: 0.02em;
}
div.paragraph[text-colour="Bright"],
p[text-colour="Bright"],
div.paragraph[text-colour="Bright"] > *,
p[text-colour="Bright"] > * {
  color: #0059FF;
  --text-color: #0059FF;
}
div.paragraph[text-colour="White"],
p[text-colour="White"],
div.paragraph[text-colour="White"] > *,
p[text-colour="White"] > * {
  color: white;
  --text-color: white;
}
div.paragraph[text-colour="Dark"],
p[text-colour="Dark"],
div.paragraph[text-colour="Dark"] > *,
p[text-colour="Dark"] > * {
  color: #2E3543;
  --text-color: #2E3543;
}
div.paragraph > a:not(.mail-to),
p > a:not(.mail-to) {
  border-bottom: 1px solid var(--anchor-underline-colour);
}
sub-heading > div.paragraph,
sub-heading > div.paragraph > * {
  font-weight: 300;
  letter-spacing: 0;
  font-size: 30px;
}
sub-heading > div.paragraph > p,
sub-heading > div.paragraph > * > p {
  margin: 0;
}
sub-heading > div.paragraph.small,
sub-heading > div.paragraph > *.small,
sub-heading > div.paragraph.small > *,
sub-heading > div.paragraph > *.small > * {
  font-size: 20px;
}
sub-heading > div.paragraph.medium,
sub-heading > div.paragraph > *.medium,
sub-heading > div.paragraph.medium > *,
sub-heading > div.paragraph > *.medium > * {
  font-size: 24px;
}
sub-heading > div.paragraph.large,
sub-heading > div.paragraph > *.large,
sub-heading > div.paragraph.large > *,
sub-heading > div.paragraph > *.large > * {
  font-size: 30px;
}
heading > div.paragraph,
heading > div.paragraph > * {
  font-weight: 300;
  letter-spacing: 0;
  line-height: 110%;
  color: var(--header-color);
  font-size: var(--header-font-size);
}
heading > div.paragraph > p,
heading > div.paragraph > * > p {
  margin: 0;
}
heading > div.paragraph.extra-large,
heading > div.paragraph > *.extra-large,
heading > div.paragraph.extra-large > *,
heading > div.paragraph > *.extra-large > * {
  font-size: var(--large-header-font-size);
}
heading > div.paragraph.medium-large,
heading > div.paragraph > *.medium-large,
heading > div.paragraph.medium-large > *,
heading > div.paragraph > *.medium-large > * {
  font-size: 36px;
}
heading > div.paragraph.hero-heading,
heading > div.paragraph > *.hero-heading,
heading > div.paragraph.hero-heading > *,
heading > div.paragraph > *.hero-heading > * {
  font-size: 64px;
}
heading > div.paragraph.medium,
heading > div.paragraph > *.medium,
heading > div.paragraph.medium > *,
heading > div.paragraph > *.medium > * {
  font-size: var(--small-header-font-size);
}
heading > div.paragraph.large,
heading > div.paragraph > *.large,
heading > div.paragraph.large > *,
heading > div.paragraph > *.large > * {
  font-size: var(--header-font-size);
}
hr {
  border: none;
  border-top: 1px solid;
  border-color: var(--text-color);
}
ul {
  margin-block: 0.5em;
  color: var(--text-color);
}
.button,
input[type="submit"] {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  background: none;
  padding: 0.5em 0;
  border: none;
  color: var(--button-color);
  display: inline-block;
  background: var(--button-background);
  border: 1px solid var(--button-border-color);
  border-radius: 72px;
  text-align: center;
  padding: 10px 16px;
  white-space: nowrap;
  --button-color: white;
  --button-background: #0059FF;
  --button-border-color: #0059FF;
  opacity: 1;
  transition: opacity 0.2s ease;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media only screen and (max-width: 500px) {
  .button,
  input[type="submit"] {
    font-size: 9px;
    padding: 7px 12px;
  }
}
.button.primary.bright-text,
input[type="submit"].primary.bright-text {
  --button-color: #0059FF !important;
  --button-background: white !important;
  --button-border-color: white !important;
}
.button.primary.dark-text,
input[type="submit"].primary.dark-text {
  --button-color: #2E3543 !important;
  --button-background: white !important;
  --button-border-color: white !important;
}
.button.primary.white-text,
input[type="submit"].primary.white-text {
  --button-color: white !important;
  --button-background: #0059FF !important;
  --button-border-color: #0059FF !important;
}
.button:hover,
input[type="submit"]:hover,
.button:focus,
input[type="submit"]:focus,
.button:focus-visible,
input[type="submit"]:focus-visible {
  opacity: 0.9;
}
.button.secondary,
input[type="submit"].secondary {
  --button-color: var(--secondary-button-color);
  --button-border-color: var(--secondary-button-color);
  --button-background: transparent;
}
.button.secondary.bright-text,
input[type="submit"].secondary.bright-text {
  --button-color: #0059FF !important;
  --button-background: transparent !important;
  --button-border-color: #0059FF !important;
}
.button.secondary.dark-text,
input[type="submit"].secondary.dark-text {
  --button-color: #2E3543 !important;
  --button-background: transparent !important;
  --button-border-color: #2E3543 !important;
}
.button.secondary.white-text,
input[type="submit"].secondary.white-text {
  --button-color: white !important;
  --button-background: transparent !important;
  --button-border-color: white !important;
}
.button.outlined,
input[type="submit"].outlined {
  --button-color: #0059FF !important;
  --button-background: white !important;
  --button-border-color: #0059FF !important;
}
.button.outlined.bright-text,
input[type="submit"].outlined.bright-text {
  --button-color: #0059FF !important;
  --button-background: white !important;
  --button-border-color: #0059FF !important;
}
.button.outlined.dark-text,
input[type="submit"].outlined.dark-text {
  --button-color: #2E3543 !important;
  --button-background: white !important;
  --button-border-color: #2E3543 !important;
}
.button.outlined.white-text,
input[type="submit"].outlined.white-text {
  --button-color: white !important;
  --button-background: #0059FF !important;
  --button-border-color: white !important;
}
.button.inline,
input[type="submit"].inline {
  --button-background: transparent;
  --button-color: var(--inline-button-color);
  border: none;
}
.button.solid,
input[type="submit"].solid {
  --button-background: var(--solid-button-background);
  --button-border-color: var(--solid-button-background);
  --button-color: var(--solid-button-color);
}
a.mail-to::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url(/images/icons/mail.svg) center / contain no-repeat;
  padding-right: 1em;
  font-weight: 400;
}
a.link {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  background: none;
  padding: 0.5em 0;
  border: none;
  cursor: pointer;
  padding: 1em 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--header-color);
}
a.link.arrow:hover > svg {
  margin-left: 0.5em;
}
a.link.arrow > svg {
  transition: margin-left 0.2s ease;
  font-size: 1.4em;
  margin-left: 0.25em;
}
a.link.right-aligned-arrow {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
a.link.white-text {
  color: white !important;
}
a.link.tiny-text {
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media only screen and (max-width: 700px) {
  a.link.tiny-text {
    white-space: normal;
  }
}
a.link:focus,
a.link:focus-visible {
  outline-width: 0;
}
input,
textarea,
select {
  color: var(--text-color);
  border: 1px solid var(--input-border-color);
  background-color: var(--section-background-colour, white);
  padding: 1em;
  border-radius: 5px;
  font-family: "ReplicaLL", "Inter", sans-serif;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  background: none;
  padding: 0.5em 0;
  border: none;
  font-family: "ReplicaLL", "Inter", sans-serif;
  color: var(--header-color);
  font-weight: 600;
}
input:focus,
textarea:focus,
select:focus,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 1px solid var(--input-border-color);
}
input:focus::placeholder,
textarea:focus::placeholder,
select:focus::placeholder,
input:focus-visible::placeholder,
textarea:focus-visible::placeholder,
select:focus-visible::placeholder {
  color: transparent;
}
phone-number > div.paragraph,
email-address > div.paragraph {
  margin-left: -1em;
}
phone-number > div.paragraph::before,
email-address > div.paragraph::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  padding-right: 2em;
  vertical-align: middle;
}
phone-number > div.paragraph::before {
  background: url(/images/icons/phone.svg) center / contain no-repeat;
  height: 19px;
}
email-address > div.paragraph::before {
  background: url(/images/icons/mail.svg) center / contain no-repeat;
}
button-group {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 500px) {
  button-group {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
gradient-mask {
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 25%, #000000bf 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 16em;
}
gradient-mask div.paragraph {
  padding: 20px 0;
  color: white;
  position: absolute;
  bottom: 0;
}
img.background-img,
img[image-postion="Background"] {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}
heading-image > img {
  max-width: 100%;
}
@media only screen and (max-width: 1100px) {
  heading-image > img {
    max-width: 100vw;
    width: 100%;
    object-fit: cover;
  }
}
heading-image.offset-bottom > img,
heading-image.offset-top > img {
  max-width: 90vw;
}
.ql-align-center {
  text-align: center;
}
.ql-align-justify {
  text-align: justify;
}
.ql-align-right {
  text-align: right;
}
.ql-indent-1 {
  padding-left: 3em;
}
.ql-indent-2 {
  padding-left: 6em;
}
.ql-indent-3 {
  padding-left: 9em;
}
.ql-indent-4 {
  padding-left: 12em;
}
blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
code {
  background-color: #f0f0f0;
  border-radius: 3px;
  font-size: 85%;
  padding: 2px 4px;
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.9;
  }
}