@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*! normalize.css simplified version*/
pre {
  font-family: monospace;
  font-size: 1em;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

details {
  display: block;
}

summary {
  display: list-item;
}

:root {
  --transition-timing-function: ease-in-out;
  --transition-speed: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-timing-function: linear;
    --transition-speed: 0s;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

*:focus {
  outline: 4px solid #002fff !important;
  outline-offset: 0.0625rem;
}

::selection {
  color: var(--wp--preset--color--light);
  background: var(--wp--preset--color--secondary);
}

html {
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

@media (min-width: 48rem) {
  body {
    font-size: var(--wp--preset--font-size--medium);
    line-height: 1.5;
  }
}
body::before {
  content: "";
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed) var(--transition-timing-function), visibility var(--transition-speed) var(--transition-timing-function);
}
body.using-mouse :focus {
  outline: none !important;
}
@media (min-width: 48rem) {
  body.megamenu-opened::before {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}
html.user-tab-nav a:focus,
html.user-tab-nav button:focus,
html.user-tab-nav input:focus,
html.user-tab-nav select:focus,
html.user-tab-nav textarea:focus {
  outline: 2px solid #00f;
  outline-offset: 0;
}

.page-content {
  padding-top: 0;
  padding-bottom: 0;
}

input,
select,
textarea {
  max-width: 100%;
}

figure {
  margin: 0;
}

img,
svg {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/* Remove underline from telephone links */
a[href^="tel:"] {
  text-decoration: none;
}
a[href^="tel:"]:hover {
  text-decoration: underline;
}

nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
nav li {
  display: inline-block;
}
nav li > a {
  text-decoration: none;
}

.page-content__wrapper > .wp-block-heading {
  width: 100%;
  max-width: 45rem;
  padding: 0 0.9375rem;
  margin: 0 auto;
}
@media (min-width: 62rem) {
  .page-content__wrapper > .wp-block-heading {
    max-width: 60rem;
  }
}
@media (min-width: 75rem) {
  .page-content__wrapper > .wp-block-heading {
    max-width: 1249px;
    padding-right: 0;
    padding-left: 0;
  }
}

:root :where(.wp-block-image.is-style-rounded img, .wp-block-image .is-style-rounded img) {
  border-radius: 0.75rem;
}

.wp-block-column .wp-block-list {
  padding-left: 1.75rem;
}
.wp-block-column .wp-block-list li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.container {
  width: 100%;
  max-width: 45rem;
  padding: 0 0.9375rem;
  margin: 0 auto;
}
@media (min-width: 62rem) {
  .container {
    max-width: 60rem;
  }
}
@media (min-width: 75rem) {
  .container {
    max-width: 67.5rem;
  }
}
@media (min-width: 90rem) {
  .container {
    max-width: var(--wp--style--global--wide-size);
  }
}

.container.container--full {
  max-width: 100%;
}

.d-flex {
  display: flex;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
}
.row.justify-content-end {
  justify-content: flex-end;
}
.row.justify-content-center {
  justify-content: center;
}
.row.justify-content-between {
  justify-content: space-between;
}
.row.justify-content-evenly {
  justify-content: space-evenly;
}
.row.align-items-center {
  align-items: center;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0 0.9375rem;
}

[class*=col-] {
  flex-grow: 0;
  flex-shrink: 0;
  padding: 0 0.9375rem;
}

.col-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 48rem) {
  .col-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 48rem) {
  .col-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 48rem) {
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}

@media (min-width: 48rem) {
  .col-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 48rem) {
  .col-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 48rem) {
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 48rem) {
  .col-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 48rem) {
  .col-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 48rem) {
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
}

@media (min-width: 48rem) {
  .col-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 48rem) {
  .col-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 48rem) {
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (min-width: 62rem) {
  .col-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 62rem) {
  .col-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 62rem) {
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}

@media (min-width: 62rem) {
  .col-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 62rem) {
  .col-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 62rem) {
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 62rem) {
  .col-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 62rem) {
  .col-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 62rem) {
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
}

@media (min-width: 62rem) {
  .col-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 62rem) {
  .col-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 62rem) {
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (min-width: 75rem) {
  .col-xl-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 75rem) {
  .col-xl-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 75rem) {
  .col-xl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}

@media (min-width: 75rem) {
  .col-xl-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 75rem) {
  .col-xl-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 75rem) {
  .col-xl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 75rem) {
  .col-xl-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 75rem) {
  .col-xl-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 75rem) {
  .col-xl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
}

@media (min-width: 75rem) {
  .col-xl-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 75rem) {
  .col-xl-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 75rem) {
  .col-xl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 61.9rem) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}

@media (max-width: 61.9rem) {
  .wp-block-columns {
    flex-wrap: wrap !important;
  }
}

h1:only-child,
h2:only-child,
h3:only-child,
h4:only-child,
h5:only-child,
h6:only-child {
  margin-bottom: 0;
}

@media (min-width: 48rem) {
  h1 {
    font-size: 3.0625rem;
    line-height: 1.5;
  }
}

@media (min-width: 48rem) {
  h2 {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
h2.wp-block-heading {
  font-family: var(--wp--preset--font-family--alt-font);
  font-weight: 400;
  color: var(--wp--preset--color--dark);
  font-size: 2.25rem;
  line-height: 1.3;
}
@media (min-width: 62rem) {
  h2.wp-block-heading {
    font-size: 3rem;
    line-height: 1.3;
  }
}
h2.wp-block-heading em {
  letter-spacing: 0;
}
h2.wp-block-heading.has-large-font-size {
  letter-spacing: -0.04375rem;
}
h2.wp-block-heading.has-semi-large-font-size {
  letter-spacing: 0;
}

.wp-block-heading {
  font-family: var(--wp--preset--font-family--alt-font);
  font-weight: 400;
}
.wp-block-heading strong {
  font-weight: 600;
}

a img {
  border: 0;
}

p {
  letter-spacing: 0.0125rem;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

.page-content ul:not([class]) ul,
.page-content ul:not([class]) ol,
.acf-block ul:not([class]) ul,
.acf-block ul:not([class]) ol,
.editor-rich-text ul ul,
.editor-rich-text ul ol,
ol ul,
ol ol {
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  border-top: 1px solid var(--wp--preset--color--dark);
}
@media (min-width: 48rem) {
  hr {
    margin-top: calc(var(--wp--preset--spacing--medium) / 16)rem;
    margin-bottom: calc(var(--wp--preset--spacing--medium) / 16)rem;
  }
}

.has-x-large-font-size {
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .has-x-large-font-size {
    margin-bottom: 2.125rem;
    letter-spacing: 0;
  }
}
@media (min-width: 48rem) {
  .has-x-large-font-size em {
    letter-spacing: 0;
  }
}

.has-large-font-size {
  letter-spacing: -0.04375rem;
}
.has-large-font-size em {
  letter-spacing: 0;
}

.has-semi-large-font-size {
  letter-spacing: 0;
}

@media (min-width: 48rem) {
  .has-medium-font-size {
    line-height: 1.66;
  }
}

p br,
h2 br,
h3 br {
  display: none;
}
@media (min-width: 75rem) {
  p br,
  h2 br,
  h3 br {
    display: block;
  }
}

.heading--small {
  margin: 0;
  font-family: var(--wp--preset--font-family--alt-font);
  font-weight: 600;
  color: var(--wp--preset--color--dark);
  font-size: 1.375rem;
  line-height: 1.2727272727;
}

.is-style-uppercase {
  text-transform: uppercase;
}

.is-style-h1 {
  margin-bottom: 1.5rem;
  font-family: var(--wp--preset--font-family--alt-font);
  font-size: 2.5rem;
  line-height: 1.5;
}
@media (min-width: 48rem) {
  .is-style-h1 {
    margin-bottom: 2.125rem;
    font-size: 3.0625rem;
    line-height: 1.5;
  }
}

.is-style-h2 {
  margin-bottom: 1.25rem;
  font-family: var(--wp--preset--font-family--alt-font);
  font-size: 2rem;
  line-height: 1.5;
}
@media (min-width: 48rem) {
  .is-style-h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.is-style-h3 {
  margin-bottom: 0.5rem;
  font-family: var(--wp--preset--font-family--alt-font);
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 62rem) {
  .is-style-h3 {
    font-size: 2.25rem;
    line-height: 1.3333333333;
  }
}

.is-style-caption-medium {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.25;
}

.is-style-accented-caption {
  font-family: var(--wp--preset--font-family--alt-font);
  color: #005c4d;
  font-size: 2.25rem;
  line-height: 1.3333333333;
}

.is-style-heading-style {
  font-family: var(--wp--preset--font-family--alt-font);
  font-weight: 400;
  color: rgba(103, 109, 128, 0.8);
  font-size: 1.75rem;
  line-height: 1.2857142857;
}
@media (min-width: 48rem) {
  .is-style-heading-style {
    font-size: 2.25rem;
    line-height: 1.1666666667;
  }
}

.screen-reader-text,
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  margin: -1px !important;
  white-space: nowrap !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

a.skip-link {
  width: 1px;
  height: 1px;
  position: absolute;
  z-index: -999;
  top: auto;
  left: -999px;
  overflow: hidden;
}
[dir=rtl] a.skip-link {
  right: -999px;
}

a.skip-link:focus,
a.skip-link:active {
  width: 150px;
  height: auto;
  padding: 5px;
  z-index: 9999;
  top: 20px;
  left: 20px;
  margin: 0;
  font-size: scssrem(16);
  text-align: center;
  color: #fff;
  border: 2px solid #ff0;
  border-radius: 8px;
  background-color: #000;
  overflow: auto;
}

[hidden] {
  display: none;
}

.wp-caption {
  width: auto !important;
}
.wp-caption figure {
  width: auto !important;
  margin: 0;
}

.alignleft,
.wp-block-image .alignleft {
  float: left;
  margin: 0 var(--wp--custom--media-spacing) var(--wp--custom--media-spacing) 0;
}

.alignright,
.wp-block-image .alignright {
  float: right;
  margin: 0 0 var(--wp--custom--media-spacing) var(--wp--custom--media-spacing);
}

.alignnone,
.wp-block-image .alignnone {
  display: inline-block;
  max-width: 100%;
}

.aligncenter,
.wp-block-image .aligncenter {
  clear: both;
  margin: var(--wp--custom--media-spacing) auto;
  text-align: center;
}

.has-text-uppercase {
  text-transform: uppercase;
}

.is-content-justification-top-center {
  align-items: flex-start;
  justify-content: center;
}
.is-content-justification-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.is-content-justification-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.is-content-justification-center-center {
  align-items: center;
  justify-content: center;
}
.is-content-justification-center-left {
  align-items: center;
  justify-content: flex-start;
}
.is-content-justification-center-right {
  align-items: center;
  justify-content: flex-end;
}
.is-content-justification-bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.is-content-justification-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.is-content-justification-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.block-spacing--pt {
  padding-top: 2.5rem;
}
@media (min-width: 48rem) {
  .block-spacing--pt {
    padding-top: var(--wp--preset--spacing--medium);
  }
}
.block-spacing--pb {
  padding-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .block-spacing--pb {
    padding-bottom: var(--wp--preset--spacing--medium);
  }
}
.block-spacing--mt {
  margin-top: 1.875rem;
}
@media (min-width: 48rem) {
  .block-spacing--mt {
    margin-top: var(--wp--preset--spacing--medium);
  }
}
.block-spacing--mb {
  margin-bottom: 1.875rem;
}
@media (min-width: 48rem) {
  .block-spacing--mb {
    margin-bottom: var(--wp--preset--spacing--medium);
  }
}
