html {
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--paragraph-font);
  font-weight: 400;
  color: #000;
  line-height: 1;
  background-color: #fff;
  margin: 0;
}
.home main#primary {
  max-width: 100%;
  padding: 0;
}
.home article,
.home .entry-content {
  margin: 0;
  padding: 0;
}
.b2-row {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}
.b2-row.v-center {
    align-items: center;
}
.b2-row.b2-space-around {
    justify-content: space-around;
}
.b2-row .b2-col {
    padding: 0 15px;
    min-height: 1px;
    margin-bottom: 1px;
}
.b2-row .b2-col.col-1 {
    width: 8.3%;
}
.b2-row .b2-col.col-2 {
    width: 16.6%;
}
.b2-row .b2-col.col-3 {
    width: 24.9%;
}
.b2-row .b2-col.col-4 {
    width: 33.33%;
}
.b2-row .b2-col.col-5 {
    width: 41.51%;
}
.b2-row .b2-col.col-6 {
    width: 50%;
}
.b2-row .b2-col.col-7 {
    width: 58.11%;
}
.b2-row .b2-col.col-8 {
    width: 66.42%;
}
.b2-row .b2-col.col-9 {
    width: 74.72%;
}
.b2-row .b2-col.col-10 {
    width: 83.02%;
}
.b2-row .b2-col.col-11 {
    width: 91.33%;
}
.b2-row .b2-col.col-12 {
    width: 100%;
}
.b2-column-no-gutter .b2-col {
    padding: 0;
}
.b2-ordered-list {
    margin: 0 0 16px 16px;
}
.b2-unordered-list {
    margin: 0 0 16px 16px;
}
.b2-text-center {
    text-align: center;
}
.b2-text-justify {
    text-align: justify;
}
.b2-text-right {
    text-align: right;
}
.b2-text-left {
    text-align: left;
}
.b2-text-underline {
    text-decoration: underline;
}
.b2-text-italic {
    font-style: italic;
}
.b2-text-lowercase {
    text-transform: lowercase;
}
.b2-text-uppercase {
    text-transform: uppercase;
}
.b2-text-capitalize {
    text-transform: capitalize;
}
.b2-font-weight-normal {
    font-weight: 400;
}
.b2-font-weight-light {
    font-weight: 300;
}
.b2-font-weight-semibold {
    font-weight: 600;
}
.b2-font-weight-bold {
    font-weight: 700;
}
.b2-text-white {
    color: #fff;
}
.b2-image-desktop {
  display: block;
}
.b2-image-mobile,
.b2-image-tablet {
  display: none !important;
}
.b2-img-responsive,
.post-thumbnail img {
    display: block;
    max-width: 100%;
    height: auto;
}
.b2-img-left-align {
    float: left;
    margin: 0 16px 16px 0;
}
.b2-img-right-align {
    float: right;
    margin: 0 0 16px 16px;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
}
[hidden] {
    display: none;
}
.b2-ease {
    transition: all 0.2s ease-in;
}
.b2-hover {
    opacity: 0.7;
}
.b2-hidden {
    display: none;
}
.b2-hide-desktop {
  display: none;
}
.b2-spacing-sm {
    margin: 8px;
}
.b2-spacing-md {
    margin: 16px;
}
.b2-spacing-lg {
    margin: 32px;
}
.b2-no-top-spacing {
    margin-top: 0;
}
.b2-no-left-spacing {
    margin-left: 0;
}
.b2-no-right-spacing {
    margin-right: 0;
}
.b2-no-bottom-spacing {
    margin-bottom: 0;
}
.b2-d-inline-block {
  display: inline-block;
}
.b2-d-block {
  display: block;
}
.b2-d-flex {
  display: flex;
}
.b2-clearfix {
    overflow: auto;
}
.b2-clearfix::after {
    content: "";
    clear: both;
    display: table;
}
table {
    border-collapse: collapse;
    border: 1px solid #d3d3d3;
}
table thead td {
    font-weight: 700;
    text-align: center;
    padding: 8px;
    background-color: #ebebeb;
    border: 1px solid #d3d3d3;
}
table tbody td {
    padding: 8px;
    border: 1px solid #d3d3d3;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
section {
  position: relative;
  margin: 120px 0;
}
.b2-bg-primary-color {
  background-color: var(--primary-color);
}
.b2-parallax-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.b2-curved-corners.top-curve {
  border-top-right-radius: 50% 5%;
  border-top-left-radius: 50% 5%;
}
.b2-curved-corners.bottom-curve {
  border-top-right-radius: 50% 5%;
  border-top-left-radius: 50% 5%;
}
.b2-boxshadow {
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
}
.b2-center-fix {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.b2-justify-center {
  justify-content: center;
}
.b2-align-center {
  align-items: center;
}
.b2-align-end {
  align-items: flex-end;
}
.b2-img-center {
  display: block;
  margin: 0 auto;
}
.b2-inner-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 150px;
}
.b2-inner-content.small {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 280px;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--title-font);
  margin-top: 0;
  margin-bottom: 20px;
  clear: both;
}
h1, .h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 3rem;
}
h2, .h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 2.25rem;
  color: #13263A;
}
h3, .h3 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: #13263A;
}
h4, .h4 {
  font-size: 1.5rem;
  line-height: 1.5rem;
}
h5, .h5 {
  font-size: 1.25rem;
  line-height: 1.25rem;
}
h6, .h6 {
  font-size: 1.125rem;
  line-height: 1.125rem;
}
.b2-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 7px;
  color: var(--accent-color);
  text-transform: uppercase;
}
p {
  margin-top: 0;
  margin-bottom: 0;
}
p + p {
  margin-top: 16px;
}
p.large {
  font-size: 1.125rem;
  font-weight: 600;
}
p,
.b2-paragraph {
  font-size: 1rem;
  color: #13263A;
  font-family: var(--paragraph-font);
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 1px;
}
p.small,
.wp-caption {
  font-size: .75rem;
}
.b2-text-primary-color {
  color: #13263A;
}
.b2-text-secondary-color {
  color: var(--secondary-color);
}
.b2-text-accent-color {
  color: var(--accent-color);
}
.b2-text-blue-color {
  color: #0003D9;
}
.b2-title-font {
  font-family: var(--title-font);
}
.post-thumbnail {
  float: left;
  max-width: 300px;
  margin: 0 16px 16px 0;
}
a {
  font-size: inherit;
  color: var(--primary-color);
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s ease-in;
}
a.link {
  text-decoration: underline;
}
.b2-link,
form button,
form input[type=submit],
form input[type=button] {
  position: relative !important;
  display: inline-block !important;
  font-family: var(--paragraph-font) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  line-height: 1.25rem !important;
  color: #fff;
  text-align: center !important;
  padding: 15px 40px !important;
  background-color: #0003D9;
  border-radius: 0 0 0 10px !important;
  overflow: hidden !important;
  z-index: 1 !important;
}
.b2-link:hover,
form button:hover,
form input[type=submit]:hover,
form input[type=button]:hover {
  opacity: 0.8;
}

.b2-link.secondary {
  background-color: var(--secondary-color);
}

.b2-link.secondary-two {
  background-color: #278BFD;
}

.b2-link.tertiary {
  background-color: #fff;
  color: #0003D9;
}

.b2-link.blue {
  background-color: #0003D9;
  color: #fff;
}

.b2-link.small,
.b2-link.secondary.small,
.b2-link.tertiary.small {
  padding: 7px 25px !important;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.b2-cta-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.b2-back-to-top {
  position: fixed;
  bottom: 80px;
  right: 25px;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}
.b2-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.b2-back-to-top a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  text-align: center;
  width: 50px;
  height: 50px;
  padding: 16px 0;
  background: #278BFD;
  border-radius: 50%;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=url],
form input[type=number],
form input[type=date],
form input[type=search],
form select,
form textarea {
  appearance: none;
  outline: none;
  display: block;
  font-family: var(--paragraph-font);
  width: 100%;
  height: 50px !important;
  padding: 15px 20px;
  border: 1px solid #9FD0D4 !important;
  border-radius: 0 !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  line-height: 20px !important;
  letter-spacing: 1px !important;
}
form textarea {
  min-height: 100px;
  padding: 8px;
  resize: none;
}
main#primary {
  min-height: 500px;
}
div#comments {
  display: none;
}
.entry-meta,
.entry-footer {
  margin-bottom: 16px;
}
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
.post,
.page {
  margin: 0;
}
.updated:not(.published) {
  display: none;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}

.page .b2-sitemap {
  line-height: 1.5;
  list-style: disc;
  margin-left: 32px;
}
.page .b2-sitemap > li {
  margin-bottom: 8px;
}
.page .b2-sitemap > li > a {
  margin-bottom: 12px;
}
.page .b2-sitemap ul {
  list-style: disc;
  padding-left: 16px;
  margin: 8px 0 0 0;
}
.b2-faq-item {
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
}
.b2-faq-item .b2-faq-item-q {
  position: relative;
  padding: 10px 0px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 30px;
}
.b2-faq-item .b2-faq-item-q .faq-down {
  display: none;
}
.b2-faq-item .b2-faq-item-q.tab-close .faq-down {
  display: block;
}
.b2-faq-item .b2-faq-item-q.tab-close .faq-up {
  display: none;
}
.b2-faq-item .b2-faq-item-q h3 {
  color: #13263A;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.375rem;
  letter-spacing: 0.0625rem;
  margin: 0;
}
.b2-faq-item .b2-faq-item-a {
  display: none;
  color: #50535A;
  line-height: 1.3;
  padding: 10px 10px 10px 60px;
  max-width: 800px;
}
.b2-mh-wrap {
  font-size: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background-color: #fff;
  box-shadow: 0 0 12px #6c6c6c;
}
.b2-mh-wrap .b2-mh-top-bar-col {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-logo img {
  max-height: 83px;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu > a {
  font-size: 18px;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-left: auto;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  background-color: #fff;
  display: none;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li {
  background-color: #fff;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li:nth-child(odd) {
  background-color: #f3f3f3;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li.menu-item-has-children > a::after {
  content: "\f106";
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(180deg);
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li > a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #000;
  text-align: center;
  padding: 16px 0;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li > a.active-link {
  color: #fff;
  background-color: var(--primary-color);
  opacity: 1;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li > a.active-link::after {
  color: #fff;
  transform: translateY(-50%) rotate(0deg);
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li .sub-menu {
  display: none;
  padding: 0;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li .sub-menu li {
  background-color: var(--primary-color);
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li .sub-menu li:nth-child(odd) {
  opacity: 0.9;
}
.b2-mh-wrap .b2-mh-top-bar-col.col-menu #mobilenav > li .sub-menu li a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 16px 0;
}

.error404 .banner {
  position: relative;
  border-radius: 0 0 0 100px;
  background: linear-gradient(77deg, var(--Colour-Primary-Navy, #0F0867) 0%, var(--Colour-Primary-Electric, #0003D9) 100%);
  height: 100%;
  z-index: 20;
}
.error404 .banner-inner-wrap {
  height: 100%;
}
.error404 .banner h1 {
  font-size: 6.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 6.25rem;
}
.error404 .banner-container {
  padding-top: 200px;
}

.gform_confirmation_message {
  color: #fff;
  margin: 0 auto;
  text-align: right;
}

.grecaptcha-badge {
  z-index: 200 !important;
}

[data-wpr-lazyrender] {
  content-visibility: visible !important;
}