/* Partials
================================================ */
* {
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
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;
}

#wpadminbar {
  position: fixed;
}

.animate.fadeinright {
  opacity: 0;
}
.animate.fadeinright.animateelement {
  animation: fadeInRight 0.5s forwards ease-in-out;
}
.animate.fadein {
  opacity: 0;
}
.animate.fadein.animateelement {
  animation: fadeIn 0.5s forwards ease-in-out;
}
.animate.fadeinup {
  opacity: 0;
}
.animate.fadeinup.animateelement {
  animation: fadeInUp 0.5s forwards ease-in-out;
}
.animate.fadeindown {
  opacity: 0;
}
.animate.fadeindown.animateelement {
  animation: fadeInDown 0.5s forwards ease-in-out;
}
@media only screen and (min-width: 768px) {
  .animate.delay {
    animation-delay: 0.5s !important;
  }
  .animate.lg-delay {
    animation-delay: 0.75s !important;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes translateUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/* Font stacks
================================================ */
/* Base Typography
================================================ */
html {
  font-size: 62.5%;
}

body {
  font-family: "tt-commons-pro", sans-serif;
  font-size: 1.5rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: none;
  color: #1B3A4B;
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  body {
    font-size: clamp(16px, 0.8333333333vw, 16px);
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5 {
  font-family: "gelica", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1,
.h1 {
  line-height: 1.05;
}
@media screen and (min-width: 1024px) {
  h1,
  .h1 {
    font-size: clamp(50px, 5.2083333333vw, 100px);
  }
}
@media screen and (max-width: 1023px) {
  h1,
  .h1 {
    font-size: 6.5rem;
  }
}
@media screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 4.5rem;
  }
}

h2,
.h2 {
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  h2,
  .h2 {
    font-size: clamp(34px, 3.5416666667vw, 68px);
  }
}
@media screen and (max-width: 1023px) {
  h2,
  .h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  h3,
  .h3 {
    font-size: clamp(24px, 2.5vw, 48px);
  }
}
@media screen and (max-width: 1023px) {
  h3,
  .h3 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  h3,
  .h3 {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  h4,
  .h4 {
    font-size: clamp(18px, 1.875vw, 36px);
  }
}
@media screen and (max-width: 1023px) {
  h4,
  .h4 {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 1024px) {
  h5,
  .h5 {
    font-size: clamp(14px, 1.4583333333vw, 28px);
  }
}
p {
  line-height: 1.5;
  margin-bottom: 2rem;
}
p:last-of-type {
  margin-bottom: 0;
}
p:last-child {
  margin-bottom: 0;
}
p:only-child {
  margin-bottom: 0;
}

.heading {
  font-family: "gelica", sans-serif;
  font-weight: 600;
}

.body-text {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .body-xl {
    font-size: clamp(16px, 1.25vw, 24px);
  }
}
@media screen and (max-width: 1023px) {
  .body-xl {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .body-large, .service-modules .module .content p {
    font-size: clamp(16px, 1.0416666667vw, 20px);
  }
}
@media screen and (max-width: 1023px) {
  .body-large, .service-modules .module .content p {
    font-size: 1.8rem;
  }
}

.footnote {
  font-size: 1.2rem;
}

.medium-weight {
  font-weight: 400;
}

.bold,
strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.body-style a:not(.btn) {
  transition: all 0.4s ease-in-out;
  display: inline;
  text-underline-offset: 0.3rem;
}
.body-style a:not(.btn):hover {
  text-decoration: underline;
}
.body-style h1,
.body-style h2,
.body-style h3,
.body-style h4,
.body-style h5 {
  margin-bottom: 2rem;
}
.body-style h1:first-child,
.body-style h2:first-child,
.body-style h3:first-child,
.body-style h4:first-child,
.body-style h5:first-child {
  margin-top: 0;
}
.body-style h1:only-child,
.body-style h2:only-child,
.body-style h3:only-child,
.body-style h4:only-child,
.body-style h5:only-child {
  margin-bottom: 0;
}
.body-style p {
  line-height: 1.3;
}
.body-style ul:not(.page-numbers) {
  list-style: disc;
  margin-left: 3rem;
  margin-bottom: 3rem;
}
.body-style ul:not(.page-numbers) li {
  margin-bottom: 0rem;
}
.body-style ul:not(.page-numbers) li:last-of-type {
  margin-bottom: 0;
}
.body-style ul:not(.page-numbers):first-child {
  margin-top: 0;
}
.body-style ul:not(.page-numbers):last-child {
  margin-bottom: 0;
}
.body-style .two-column-content {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.two-column-content {
  display: contents;
}
@media screen and (min-width: 1280px) {
  .two-column-content {
    -moz-column-count: 2;
         column-count: 2;
    display: block;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
    -moz-column-break-inside: avoid;
         break-inside: avoid-column;
  }
  .two-column-content p {
    -moz-column-break-inside: avoid;
         break-inside: avoid-column;
  }
}

/* Links
================================================ */
a,
a:visited {
  color: inherit;
  text-decoration: none;
}

a[href=""] {
  pointer-events: none;
}

a.btn,
.btn {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  border: 1px solid #1B3A4B;
  padding: 0 1.6rem;
  line-height: 1;
  height: 4rem;
  font-weight: bold;
  color: #FFFAF0;
}
@media screen and (min-width: 1024px) {
  a.btn,
  .btn {
    font-size: clamp(16px, 1.25vw, 24px);
  }
}
a.btn.small-font,
.btn.small-font {
  height: 4rem;
  font-size: 1.6rem;
  padding-bottom: 0;
}
a.btn:before,
.btn:before {
  transition: all 0.4s ease-in-out;
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #1B3A4B;
  transform-origin: bottom;
}
a.btn span,
.btn span {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  a.btn:hover:before,
  .btn:hover:before {
    transform: scaleY(0);
  }
}
a.btn.blue-hollow,
.btn.blue-hollow {
  color: #1B3A4B;
  background: transparent;
}
a.btn.blue-hollow:before,
.btn.blue-hollow:before {
  transform: scaleY(0);
}
@media screen and (min-width: 1024px) {
  a.btn.blue-hollow:hover,
  .btn.blue-hollow:hover {
    color: #FFFAF0;
  }
  a.btn.blue-hollow:hover:before,
  .btn.blue-hollow:hover:before {
    transform: scaleY(1);
  }
}
a.btn.white-full,
.btn.white-full {
  color: #1B3A4B;
  border: 1px solid #1B3A4B;
  background: #fffaf0;
}
a.btn.white-full:before,
.btn.white-full:before {
  background: #1B3A4B;
  transform: scaleY(0);
}
@media screen and (min-width: 1024px) {
  a.btn.white-full:hover,
  .btn.white-full:hover {
    color: #fffaf0;
  }
  a.btn.white-full:hover:before,
  .btn.white-full:hover:before {
    transform: scaleY(1);
  }
}
a.btn.white-hollow,
.btn.white-hollow {
  color: #FFFAF0;
  border: 1px solid #FFFAF0;
}
a.btn.white-hollow:before,
.btn.white-hollow:before {
  background: #FFFAF0;
  transform: scaleY(0);
}
@media screen and (min-width: 1024px) {
  a.btn.white-hollow:hover,
  .btn.white-hollow:hover {
    color: #1B3A4B;
  }
  a.btn.white-hollow:hover:before,
  .btn.white-hollow:hover:before {
    transform: scaleY(1);
  }
}

#gform_submit_button_1.btn {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  border: 1px solid #1B3A4B;
  padding: 0 1.6rem;
  line-height: 1;
  height: 4rem;
  font-weight: bold;
  color: #FFFAF0;
}
@media screen and (min-width: 1024px) {
  #gform_submit_button_1.btn {
    font-size: clamp(16px, 1.25vw, 24px);
  }
}
#gform_submit_button_1.btn:before {
  transition: all 0.4s ease-in-out;
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #1B3A4B;
  transform-origin: bottom;
}
#gform_submit_button_1.btn span {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  #gform_submit_button_1.btn:hover:before {
    transform: scaleY(0);
  }
}
#gform_submit_button_1.btn.blue-hollow {
  color: #1B3A4B;
  background: transparent;
}
#gform_submit_button_1.btn.blue-hollow:before {
  transform: scaleY(0);
}
@media screen and (min-width: 1024px) {
  #gform_submit_button_1.btn.blue-hollow:hover {
    color: #FFFAF0;
  }
  #gform_submit_button_1.btn.blue-hollow:hover:before {
    transform: scaleY(1);
  }
}
#gform_submit_button_1.btn.white-full {
  color: #1B3A4B;
  border: 1px solid #1B3A4B;
  background: #fffaf0;
}
#gform_submit_button_1.btn.white-full:before {
  background: #1B3A4B;
  transform: scaleY(0);
}
@media screen and (min-width: 1024px) {
  #gform_submit_button_1.btn.white-full:hover {
    color: #fffaf0;
  }
  #gform_submit_button_1.btn.white-full:hover:before {
    transform: scaleY(1);
  }
}
#gform_submit_button_1.btn.white-hollow {
  color: #FFFAF0;
  border: 1px solid #FFFAF0;
}
#gform_submit_button_1.btn.white-hollow:before {
  background: #FFFAF0;
  transform: scaleY(0);
}
@media screen and (min-width: 1024px) {
  #gform_submit_button_1.btn.white-hollow:hover {
    color: #1B3A4B;
  }
  #gform_submit_button_1.btn.white-hollow:hover:before {
    transform: scaleY(1);
  }
}

.gform-theme--foundation .gform_footer,
.gform-theme--foundation .gform_page_footer {
  margin-block-start: 0 !important;
}

body {
  background: #FFFAF0;
}
body:before {
  content: "";
  display: block;
  position: absolute;
  position: static;
  height: 10rem;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  body:before {
    height: 6rem;
  }
}
body.noscroll {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 2;
}

.wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .wrap {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    max-width: 192rem;
    padding: 0 3rem;
  }
}
@media screen and (min-width: 1600px) {
  .wrap {
    padding: 0 6rem;
  }
}

.block {
  background: #FFFAF0;
  position: relative;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .block {
    padding-top: clamp(52.5px, 5.46875vw, 105px);
    padding-bottom: clamp(52.5px, 5.46875vw, 105px);
  }
}

.large-pd-top {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .large-pd-top {
    padding-top: clamp(75px, 7.8125vw, 150px);
  }
}

.small-pd-top {
  padding-top: 25px;
}
@media screen and (min-width: 768px) {
  .small-pd-top {
    padding-top: clamp(40px, 4.1666666667vw, 80px);
  }
}

.no-pd-top {
  padding-top: 0;
}

.large-pd-bottom {
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .large-pd-bottom {
    padding-bottom: clamp(75px, 7.8125vw, 150px);
  }
}

.small-pd-bottom {
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .small-pd-bottom {
    padding-bottom: clamp(40px, 4.1666666667vw, 80px);
  }
}

.no-pd-bottom {
  padding-bottom: 0;
}

.cc-banner {
  font-family: "tt-commons-pro", sans-serif !important;
  font-size: 1.8rem !important;
  background: #1B3A4B;
}

.cc-btn.cc-dismiss {
  transition: all 0.4s ease-in-out;
  font-weight: 700 !important;
  display: block;
  padding: 1rem 1.2rem;
  background: none;
  white-space: nowrap;
  border-radius: 20rem !important;
  border: 1px solid #fff !important;
  font-size: 1.6rem !important;
  line-height: 1;
  width: 15rem !important;
  text-align: center;
}
.cc-btn.cc-dismiss:hover {
  background: #fff !important;
  color: #1B3A4B;
}

img,
svg {
  display: block;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* Blog image styling
================================================ */
img.alignright,
img.alignleft,
img.aligncenter,
img.alignnone {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 4rem 0;
}

@media screen and (min-width: 1024px) {
  img.alignright {
    float: right;
    margin: 2rem;
  }
  img.alignright:first-child {
    margin-top: 0;
  }
  img.alignleft {
    float: left;
    margin: 2rem;
  }
  img.alignleft:first-child {
    margin-top: 0;
  }
  img.alignnone {
    margin: 7.5rem 0;
  }
  img.aligncenter {
    display: block;
    margin: 7.5rem auto;
  }
  a img.alignright {
    float: right;
    margin: 0 0 7.5rem 7.5rem;
  }
  a img.alignleft {
    float: left;
    margin: 0 7.5rem 7.5rem 0;
  }
  a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.gform_wrapper {
  width: 100%;
}
.gform_wrapper .gform-body {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .gform_wrapper .gform-body {
    width: 65%;
  }
}
.gform_wrapper .gform-body .gfield input {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #1b3a4b;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
.gform_wrapper .gform-body .gfield input::-moz-placeholder {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
.gform_wrapper .gform-body .gfield input::placeholder {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
.gform_wrapper .gform-body .gfield input:focus,
.gform_wrapper .gform-body .gfield input:active {
  --gf-local-outline-width: none;
  outline: none;
}

/* Third Party Payload
================================================ */
/* Layout
================================================ */
header {
  transition: all 0.4s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header_colour);
  font-weight: bold;
  z-index: 15;
}
header .wrap {
  display: flex;
  flex-direction: row;
  justify-content: initial;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 1599px) {
  header .wrap {
    gap: 2rem;
  }
}
header .lower-header {
  background: var(--header_colour);
  padding: 2rem 0;
}
header .logo {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease-in-out;
  display: block;
  max-width: 15rem;
  height: auto;
  margin-right: auto;
}
@media screen and (max-width: 1439px) {
  header .logo {
    max-width: 12rem;
  }
}
@media screen and (min-width: 1600px) {
  header .logo {
    max-width: 19.4rem;
  }
}
header .logo svg {
  display: block;
  width: 100%;
  height: auto;
}
header .logo path {
  transition: all 0.4s ease-in-out;
}
header.headerscrolled .top-bar {
  margin-top: -8.4rem;
}
header.headerscrolled .logo {
  max-width: 15rem;
}
header.headerscrolled.show .top-bar {
  margin: 0;
}

.menu-toggle {
  display: none;
}

@media screen and (max-width: 1279px) {
  .menu-toggle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    position: relative;
    cursor: pointer;
    margin-left: auto;
  }
  .menu-toggle * {
    transition: all 0.4s ease-in-out;
  }
  .menu-toggle span {
    background: #1B3A4B;
    display: block;
  }
  .menu-toggle .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0;
  }
  .menu-toggle .hamburger span {
    width: 100%;
    height: 0.2rem;
    position: relative;
  }
  .menu-toggle .hamburger span:first-of-type {
    margin: 0 0 0.5rem;
  }
  .menu-toggle .hamburger span:last-of-type {
    margin: 0.5rem 0 0;
  }
  .menu-toggle .hamburger span:nth-child(1) {
    transition-delay: 0.5s;
  }
  .menu-toggle .hamburger span:nth-child(2) {
    transition-delay: 0.625s;
  }
  .menu-toggle .hamburger span:nth-child(3) {
    transition-delay: 0.75s;
  }
  .menu-toggle .cross {
    position: relative;
    height: 100%;
    width: 100%;
    transform: rotate(45deg);
  }
  .menu-toggle .cross span:nth-child(1) {
    height: 0%;
    width: 2px;
    position: absolute;
    top: 0;
    left: 13px;
    transition-delay: 0s;
  }
  .menu-toggle .cross span:nth-child(2) {
    width: 0%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 13.5px;
    transition-delay: 0.25s;
  }
  .menu-toggle.active .hamburger span {
    width: 0%;
  }
  .menu-toggle.active .hamburger span:nth-child(1) {
    transition-delay: 0s;
  }
  .menu-toggle.active .hamburger span:nth-child(2) {
    transition-delay: 0.125s;
  }
  .menu-toggle.active .hamburger span:nth-child(3) {
    transition-delay: 0.25s;
  }
  .menu-toggle.active .hamburger span:not(:first-of-type) {
    width: 0%;
  }
  .menu-toggle.active .cross span {
    background: #1B3A4B;
  }
  .menu-toggle.active .cross span:nth-child(1) {
    height: 100%;
    transition-delay: 0.625s;
  }
  .menu-toggle.active .cross span:nth-child(2) {
    width: 100%;
    transition-delay: 0.375s;
  }
  header nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease-in-out;
    overflow: auto;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 1279px) and (min-width: 1024px) {
  header nav ul {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav ul li {
    transition: 0.5s 0s ease-in-out;
  }
  header nav .menu-item-has-children {
    position: relative;
  }
  header nav .menu-item-has-children:after {
    width: 18px;
    height: 12px;
    background-image: url("../library/images/menu-down-chevron.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    position: absolute;
    right: 0rem;
    top: 1.2rem;
    transform: rotate(0deg);
    transition: 0.25s all ease-in-out;
  }
}
@media screen and (max-width: 1279px) and (min-width: 1024px) {
  header nav .menu-item-has-children:after {
    width: 2.4rem;
    height: 1.6rem;
    top: 2rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav .menu-item-has-children.open:after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    position: relative;
    display: none;
    margin: 1rem 0 2rem 0;
    font-size: 1.6rem;
    line-height: 2.2;
    color: #1B3A4B;
    opacity: 0.9;
  }
  header nav .sub-menu:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2rem;
    left: calc(50% - 3rem);
    height: 1px;
    background: #999;
    width: 6rem;
  }
}
@media screen and (max-width: 1279px) and (min-width: 1024px) {
  header nav .sub-menu {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1279px) {
  header nav .sub-menu .menu-item-has-children:after {
    display: none;
  }
  header nav .btn a {
    font-size: 1.6rem;
    position: relative;
  }
  header nav .btn:nth-of-type(2) {
    color: #FFF;
  }
  header nav.open {
    pointer-events: auto;
    opacity: 1;
  }
}
@media screen and (min-width: 1024px) {
  header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: initial;
    align-items: center;
  }
  header nav ul .current-menu-item > a:after {
    transform: scaleX(1);
  }
  header nav ul .current-menu-item .sub-menu a:after {
    transform: scaleX(0);
  }
  header nav ul .current-menu-item .sub-menu a:hover:after {
    transform: scaleX(1);
  }
  header nav ul li:not(.btn) {
    margin-right: 1.5rem;
    position: relative;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1600px) {
  header nav ul li:not(.btn) {
    margin-right: 3.4rem;
  }
}
@media screen and (min-width: 1024px) {
  header nav ul li:not(.btn).menu-item-has-children {
    display: flex;
    flex-direction: row;
    justify-content: initial;
    align-items: center;
    gap: 0.6rem;
  }
  header nav ul li:not(.btn).menu-item-has-children:before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 6rem;
  }
  header nav ul li:not(.btn).menu-item-has-children:after {
    content: "";
    display: block;
    position: absolute;
    position: static;
    background-image: url("../library/images/menu-down-chevron.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 0.9rem;
    width: 1.5rem;
  }
  header nav ul li:not(.btn).menu-item-has-children:hover ul {
    transform: none;
    pointer-events: auto;
    opacity: 1;
  }
  header nav ul li.btn {
    font-size: 1.6rem;
    padding-bottom: 0;
    color: var(--header_colour);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1599px) {
  header nav ul li.btn {
    font-size: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  header nav ul li.btn a:after {
    display: none;
  }
  header nav ul li.btn:hover {
    color: #1B3A4B;
  }
  header nav ul li.btn.white-full {
    margin-right: 1rem;
  }
  header nav ul li.btn.white-full:hover {
    color: var(--header_colour);
  }
  header nav ul li.btn.blue-hollow:hover {
    color: var(--header_colour);
  }
  header nav ul a {
    position: relative;
  }
  header nav ul a:after {
    transition: all 0.4s ease-in-out;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.2rem;
    width: 100%;
    background: #1B3A4B;
    transform-origin: 0;
    transform: scaleX(0);
  }
  header nav ul a:hover:after {
    transform: scaleX(1);
  }
  header nav ul .sub-menu {
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
    left: -2.2rem;
    padding: 2.2rem 4.3rem 2.2rem 2.2rem;
    top: calc(100% + 3rem);
    gap: 0.8rem;
    font-size: 1.4rem;
    transform: scale(0);
    border-radius: 1rem 1rem;
    background: #FFFAF0;
    border: 1px solid #1B3A4B;
    opacity: 0;
    transform-origin: top;
  }
  header nav ul .sub-menu li {
    white-space: nowrap;
  }
  header nav ul .sub-menu li:after {
    display: none;
  }
  header nav ul .sub-menu li:last-of-type {
    border: none;
  }
}
header .top-bar {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease-in-out;
  padding: 0 0 0.8rem 0;
  border-bottom: 1px solid #002269;
}
header .top-bar .banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #002269;
  color: #FFFAF0;
  padding: 0.8rem 0;
  margin-bottom: 0.8rem;
}
header .top-bar .banner a {
  position: relative;
  display: inline;
  font-size: 16px;
  font-weight: 400;
}
header .top-bar .banner a:after {
  transition: all 0.4s ease-in-out;
  content: "";
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 0.1rem;
  width: 100%;
  background: #FFFAF0;
  transform-origin: 0;
  transform: scaleX(0);
}
header .top-bar .banner a:hover:after {
  transform: scaleX(1);
}
header .top-bar .banner span {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  header .top-bar .banner {
    overflow: hidden;
    white-space: nowrap;
    width: 100vw;
    position: relative;
  }
  header .top-bar .banner .track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    width: -moz-max-content;
    width: max-content;
  }
  header .top-bar .banner .track p {
    display: flex;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    margin-left: 5rem;
    font-size: 16px;
  }
  header .top-bar .banner .track p span {
    margin-left: 5rem;
    margin-right: 0.5rem;
  }
}

footer {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5rem 0;
  background: #1B3A4B;
  color: #FFFAF0;
}
@media screen and (min-width: 1024px) {
  footer {
    font-size: clamp(16px, 1.0416666667vw, 20px);
  }
}
@media screen and (max-width: 1023px) {
  footer {
    padding: 4rem 0 4rem 0;
  }
}
footer .background-img svg {
  position: absolute;
  bottom: 0;
  right: -2%;
  width: 900px;
}
footer .top-content {
  grid-column: 1/-1;
}
footer .left {
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  footer .left {
    grid-column: 1/-1;
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
footer .left a {
  width: -moz-fit-content;
  width: fit-content;
}
footer .left a {
  position: relative;
}
footer .left a:after {
  transition: all 0.4s ease-in-out;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.2rem;
  width: 100%;
  background: #FFFAF0;
  transform-origin: 0;
  transform: scaleX(0);
}
footer .left a:hover:after {
  transform: scaleX(1);
}
footer .left h5 {
  font-size: 48px;
}
footer h4 {
  margin-bottom: 5.8rem;
}
@media screen and (max-width: 1023px) {
  footer h4 {
    order: 1;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
footer .logo {
  margin-top: auto;
  display: block;
  margin: 5rem 0;
}
footer .logo svg {
  display: block;
  width: auto;
  max-height: 8.2rem;
}
footer .logo:after {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  footer .logo {
    margin-top: 3rem;
  }
}
footer .middle {
  display: flex;
  z-index: 1;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  footer .middle {
    grid-column: 5/9;
  }
}
footer .right {
  display: flex;
  flex-direction: column;
  grid-column: 1/-1;
  gap: 4rem;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  footer .right {
    grid-column: 7/-1;
    gap: 10rem;
  }
}
@media screen and (min-width: 1600px) {
  footer .right {
    grid-column: 9/-1;
  }
}
footer .right a {
  text-underline-offset: 0.5rem;
}
footer .right a:hover {
  text-decoration: underline;
}
footer .cols {
  display: flex;
  gap: 5rem 6rem;
}
@media screen and (min-width: 1280px) {
  footer .cols {
    gap: 12rem;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1023px) {
  footer .cols {
    flex-wrap: wrap;
  }
}
footer .col .body-large, footer .col .service-modules .module .content p, .service-modules .module .content footer .col p {
  margin-bottom: 1.4rem;
}
footer .col ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
footer .social {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: flex-end;
  gap: 2.5rem;
  padding-bottom: 0.5rem;
}
footer .social img {
  height: 2rem;
  width: auto;
}
footer .social a {
  transition: all 0.4s ease-in-out;
}
footer .social a:hover {
  opacity: 0.4;
}
footer .social .facebook img {
  height: 2.4rem;
}
footer .small-print {
  margin-top: auto;
  width: 100%;
  font-size: 1.6rem;
}

/* Components Payload
================================================ */
.admin-label {
  position: absolute;
  top: 0;
  left: 0;
  background: red;
  color: #FFF;
  padding: 1rem;
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .admin-label {
    display: none;
  }
}

/* Blocks Payload
================================================ */
@media screen and (max-width: 1023px) {
  .content-and-image .wrap {
    padding: 0;
  }
}
.content-and-image .wrapper {
  background: rgba(27, 58, 75, 0.1019607843);
  grid-column: 1/-1;
  display: inherit;
  grid-template-columns: inherit;
}
@media screen and (min-width: 1024px) {
  .content-and-image .wrapper {
    border-radius: 10px;
    padding: 1.8rem;
  }
}
.content-and-image .content {
  grid-column: 1/-1;
  color: #1B3A4B;
  display: flex;
  flex-direction: column;
  justify-content: initial;
  align-items: flex-start;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 5rem 2rem 2rem 2rem;
}
.content-and-image .content p {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .content-and-image .content {
    grid-column: span 5;
    padding-left: 6rem;
    gap: 3rem;
  }
}
.content-and-image .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: initial;
  align-items: flex-start;
  grid-column: 1/-1;
}
@media screen and (min-width: 1024px) {
  .content-and-image .image-wrap {
    grid-column: 7/-1;
  }
}
@media screen and (max-width: 1023px) {
  .content-and-image .image-wrap {
    padding: 2rem;
  }
}
.content-and-image .image-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.content-and-image .image-wrap video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-and-image .gform_heading {
  display: none;
}
.content-and-image form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.masthead .image-wrap {
  grid-column: 1/-1;
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.masthead .image-wrap img,
.masthead .image-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.masthead .image-wrap .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.masthead .image-wrap .overlay .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #FFFAF0;
  gap: 2rem;
  width: 95%;
}
.masthead h1 {
  font-size: clamp(50px, 5.2083333333vw, 96px);
}
.masthead h3,
.masthead h4 {
  font-size: clamp(18px, 1.875vw, 36px);
  font-weight: 400;
}
.masthead a {
  width: -moz-fit-content;
  width: fit-content;
}

.content-and-graphic .wrap.reverse {
  direction: rtl;
}
.content-and-graphic .wrap * {
  direction: ltr;
}
.content-and-graphic .content {
  grid-column: 1/-1;
  color: #1B3A4B;
  display: flex;
  flex-direction: column;
  justify-content: initial;
  align-items: flex-start;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0 0 4rem 0;
}
@media screen and (min-width: 1024px) {
  .content-and-graphic .content {
    grid-column: span 5;
    padding: 0;
  }
}
.content-and-graphic .content p {
  margin-bottom: 0;
}
.content-and-graphic .content h2,
.content-and-graphic .content h3,
.content-and-graphic .content h4,
.content-and-graphic .content h5 {
  margin-bottom: 1rem;
}
.content-and-graphic .image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: initial;
  align-items: flex-start;
  grid-column: 1/-1;
  max-height: 554px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .content-and-graphic .image-wrap {
    grid-column: 7/-1;
  }
}
.content-and-graphic .image-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-and-graphic .image-wrap svg {
  position: absolute;
  z-index: 0;
  transform: scale(0.5);
}
@media screen and (min-width: 1024px) {
  .content-and-graphic .image-wrap svg {
    transform: scale(0.8);
  }
}

.service-modules h2 {
  padding-bottom: 2rem;
  text-align: left;
  grid-column: 1/-1;
}
@media screen and (min-width: 1024px) {
  .service-modules h2 {
    padding-bottom: 5rem;
    text-align: center;
  }
}
.service-modules .module {
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  border-radius: 1rem;
  border: 1px solid #1B3A4B;
}
.service-modules .module .hidden {
  visibility: hidden;
  pointer-events: none;
}
.service-modules .module .image-container {
  border-radius: 1rem 1rem 0 0;
  aspect-ratio: 1/0.75;
  overflow: hidden;
  position: relative;
}
.service-modules .module .image-container .btn {
  position: absolute;
  left: 2rem;
  top: 2rem;
}
.service-modules .module .image-container img {
  transition: all 0.4s ease-in-out;
  height: 100%;
  width: 100%;
}
.service-modules .module .content {
  display: flex;
  flex-direction: column;
  justify-content: initial;
  align-items: flex-start;
  flex: 1;
  padding: 3rem 2rem;
  border-radius: 0 0 1rem 1rem;
  border-top: none;
  background: var(--service_colour);
}
@media screen and (min-width: 1024px) {
  .service-modules .module .content {
    padding: 2rem;
  }
}
.service-modules .module .content h4 {
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: "tt-commons-pro", sans-serif;
}
.service-modules .module .content p:last-of-type {
  margin-bottom: 2.2rem;
}
.service-modules .module .btn {
  margin-top: auto;
  color: #1B3A4B;
  background: #FFFAF0;
}
.service-modules .module .btn:before {
  background: var(--service_colour);
}
.service-modules .module:hover img {
  transform: scale(1.05);
}
.service-modules .module:hover .btn:before {
  transform: scaleY(-1);
}

.content .content-wrapper {
  grid-column: 1/-1;
  color: #1B3A4B;
  display: flex;
  flex-direction: column;
  justify-content: initial;
  align-items: flex-start;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0 0 4rem 0;
}
@media screen and (min-width: 1024px) {
  .content .content-wrapper {
    grid-column: 4/10;
    padding: 0;
  }
}
.content .content-wrapper p {
  margin-bottom: 0;
}
.content .content-wrapper h2,
.content .content-wrapper h3,
.content .content-wrapper h4,
.content .content-wrapper h5 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.content .content-wrapper ul,
.content .content-wrapper ol {
  margin-left: 2rem;
}
.content .content-wrapper li {
  list-style: disc;
}

/* Pages Payload
================================================ */
.error404__content {
  padding: 100px 0 150px;
  text-align: center;
}
.error404__content h1 {
  font-size: 7em;
  line-height: 170px;
  margin-bottom: 30px;
}
.error404__content a {
  transition: all 0.4s ease-in-out;
}
.error404__content a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map*/