/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat; /* 2 */
  box-sizing: border-box; /* 1 */
}

/**
   * 1. Add text decoration inheritance in all browsers (opinionated).
   * 2. Add vertical alignment inheritance in all browsers (opinionated).
   */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
   * 1. Use the default cursor in all browsers (opinionated).
   * 2. Change the line height in all browsers (opinionated).
   * 3. Breaks words to prevent overflow in all browsers (opinionated).
   * 4. Use a 4-space tab width in all browsers (opinionated).
   * 5. Remove the grey highlight on links in iOS (opinionated).
   * 6. Prevent adjustments of font size after orientation changes in iOS.
   */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4;
       tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%; /* 6 */
}

/* Sections
   * ========================================================================== */
/**
   * Remove the margin in all browsers (opinionated).
   */
:where(body) {
  margin: 0;
}

/**
   * 1. Correct the inheritance of border color in Firefox.
   * 2. Add the correct box sizing in Firefox.
   */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
   * Remove the list style on navigation lists in all browsers (opinionated).
   */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   * 3. Prevent overflow of the container in all browsers (opinionated).
   */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/**
   * Change the fill color to match the text color in all browsers (opinionated).
   */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Forms
   * ========================================================================== */
/**
   * Correct the inability to style buttons in iOS and Safari.
   */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

/**
   * 1. Remove the margin in Firefox and Safari.
   * 3. Change the resize direction in all browsers (opinionated).
   */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
   * 1. Correct the odd appearance in Chrome, Edge, and Safari.
   * 2. Correct the outline style in Safari.
   */
:where([type=search i]) {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Safari.
   */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
   * Correct the text style of placeholders in Chrome, Edge, and Safari.
   */
::input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
   * Remove the inner padding in Chrome, Edge, and Safari on macOS.
   */
::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

/**
   * 1. Correct the inability to style upload buttons in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
          appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
   * Add the correct display in Safari.
   */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
   * ========================================================================== */
/**
   * Change the cursor on busy elements in all browsers (opinionated).
   */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
   * Change the cursor on disabled, not-editable, or otherwise
   * inoperable elements in all browsers (opinionated).
   */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
   * Change the display on visually hidden accessible elements
   * in all browsers (opinionated).
   */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/*
 * 1. Remove animations when motion is reduced (opinionated).
 * 2. Remove fixed background attachments when motion is reduced (opinionated).
 * 3. Remove timed scrolling behaviors when motion is reduced (opinionated).
 * 4. Remove transitions when motion is reduced (opinionated).
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important; /* 1 */
    animation-duration: 1ms !important; /* 1 */
    animation-iteration-count: 1 !important; /* 1 */
    background-attachment: initial !important; /* 2 */
    scroll-behavior: auto !important; /* 3 */
    transition-delay: 0s !important; /* 4 */
    transition-duration: 0s !important; /* 4 */
  }
}
.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.natural-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

@media only screen and (min-width: 40rem) and (max-width: 64rem) {
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .f-sm-100 {
    flex: 100%;
  }
  .p-sm-0 {
    padding: 0;
  }
}
@media only screen and (min-width: 40rem) and (max-width: 64rem) {
  .p-0 {
    padding: 0;
  }
}
.footer-m-r {
  margin-right: 1em;
}
@media (max-width: 1025px) {
  .footer-m-r {
    margin-right: 0;
  }
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

.align-center {
  align-self: center;
}

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

.col-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

.col-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

.col-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

.col-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

@media only screen and (min-width: 641px) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 769px) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 1025px) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 1281px) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
@media (min-width: 1537px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media only screen and (min-width: 641px) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 1281px) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0 !important;
}

.col-lg-12 {
  width: 100%;
}

@media (max-width: 768px) {
  .col-sm-12 {
    width: 100%;
  }
}

.flex {
  display: flex;
}

.justify-content-end {
  justify-content: flex-end;
}

.show {
  display: block !important;
}

.row.show {
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }
  .row.show-xs-only {
    display: flex !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}
html,
*,
*::before,
*::after {
  /* autoprefixer: ignore next */
  box-sizing: border-box;
}

img {
  /* autoprefixer: ignore next */
  box-sizing: content-box;
}

.image-background > img {
  object-fit: cover;
}

.image-background {
  overflow: hidden;
  position: relative;
}

.image-background > img,
.image-background-layer {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

:root {
  --color-black: #333333;
  --color-white: #fff;
  --focus-blue: #2D66FF;
  --focus-grey: #333333;
  --color-heading: var(--focus-blue);
  --color-main: var(--color-black);
  --color-paragraph: var(--color-black);
  --color-link-border-bottom: var(--focus-blue);
  --color-link-border-focus: var(--focus-blue);
  --color-link-comment: var(--focus-blue);
  --color-link-comment-time-anchor: var(--focus-blue);
  --color-link-edit-background-hover: var(--focus-blue);
  --color-link-edit-border: var(--focus-blue);
  --color-link-edit-text: color.adjust(#eaf1f8, -20%);
  --color-link-edit-text-hover: var(--focus-blue);
  --color-link-text: var(--focus-blue);
  --color-link-text-focus: var(--color-black);
  --color-link-text-hover: var(--color-black);
  --color-link-background-hover: var(--focus-blue);
  --color-background-code-block: var(--focus-blue);
  --color-background-code-inline: #f9f2f4;
  --color-background-default: #f0f0f0;
  --color-background-shade: #03061b;
  --color-background-table-cell-odd: var(--color-white);
  --color-background-table-cell-even: #f3f3f3;
  --color-background-top: #f5f5f5;
  --color-background-top-hover: #f0f0f0;
  --color-background-tag: var(--focus-blue);
  --color-blockquote: var(--focus-blue);
  --color-comment-text: var(--focus-blue);
  --color-comment-author-text: var(--focus-blue);
  --color-tag-border: rgb(6 22 41 / .1);
  --color-tag-border-hover: rgb(6 22 41 / .4);
  --color-tag-text: var(--color-black);
  --color-category-border: #cdcfd4;
  --color-category-text: var(--color-black);
  --color-caption: #5c5c6a;
  --color-code-block: #c7254e;
  --color-code-text: #f5f5f5;
  --color-kbd-border: #ccc;
  --color-kbd-background: var(--focus-blue);
  --color-pagination-text: var(--focus-blue);
  --color-pagination-background-hover: var(--focus-blue);
  --color-pagination-border-hover: var(--focus-blue);
  --color-pagination-text-hover: var(--color-white);
  --color-pagination-background-current: var(--focus-blue);
  --color-pagination-border-current: var(--focus-blue);
  --color-pagination-text-current: var(--color-white);
  --color-top-arrow-dark: var(--color-black);
  --color-top-arrow-light: var(--color-white);
  --color-error-block-border: #adb2ad;
  --color-error-block-background: #f9f9f9;
  --color-error: #cc2e2e;
  --color-success: #21aa14;
  --color-warning: #cc752e;
  --color-focus-outline: #7b46e1;
  --color-grey: #D9D9D9;
  --color-light-grey: #E6E8E8;
}

@font-face {
  font-display: auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 1 999;
  src: url("../../fonts/inter-variablefont.ttf") format("truetype-variations");
}
@font-face {
  font-display: auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/inter-400.woff") format("woff"), url("../../fonts/inter-400.woff2") format("woff2"), url("../../fonts/inter-400.ttf") format("truetype");
}
@font-face {
  font-display: auto;
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url("../../fonts/inter-400-italic.woff") format("woff"), url("../../fonts/inter-400-italic.woff2") format("woff2"), url("../../fonts/inter-400-italic.ttf") format("truetype");
}
@font-face {
  font-display: auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/inter-500.woff") format("woff"), url("../../fonts/inter-500.woff2") format("woff2"), url("../../fonts/inter-500.ttf") format("truetype");
}
@font-face {
  font-display: auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/inter-600.woff") format("woff"), url("../../fonts/inter-600.woff2") format("woff2"), url("../../fonts/inter-600.ttf") format("truetype");
}
@font-face {
  font-display: auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/inter-700.woff") format("woff"), url("../../fonts/inter-700.woff2") format("woff2"), url("../../fonts/inter-700.ttf") format("truetype");
}
:root {
  --font-elza: "Arial", sans-serif;
  --font-georgia: "Georgia", sans-serif;
  --font-baskerville: "baskerville-urw", serif;
  --font-elza: "elza-text", sans-serif;
  --font-georgia-paragraph: var(--font-georgia);
  --font-elza-paragraph: var(--font-elza);
  --font-elza-paragraph: var(--font-elza);
  --font-baskerville-paragraph: var(--font-baskerville);
  --font-heading: var(--font-elza);
}

.baskerville p {
  font-family: var(--font-baskerville-paragraph) !important;
}

.elza p {
  font-family: var(--font-elza-paragraph) !important;
}

:root {
  --font-size-hero: 52px;
  --font-size-h1: 40px;
  --font-size-h2: 30px;
  --font-size-h3: 24px;
  --font-size-h4: 20px;
  --font-size-h5: 16px;
  --font-size-h6: 14px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-17: 17px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-28: 28px;
  --font-size-paragraph: var(--font-size-18);
  --font-size-nav-toggle-label: 15px;
  --font-size-captions: 15px;
  --line-height-heading: 1.5;
  --line-height-core-heading: 1.23;
  --line-height-paragraph: 1.7;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-paragraph: var(--font-weight-regular);
  --font-weight-heading: var(--font-weight-bold);
}
@media (max-width: 550px) {
  :root {
    --font-size-hero: 38px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
    --font-size-h3: 21px;
    --font-size-h4: 18px;
    --font-size-h5: 14px;
    --font-size-h6: 12px;
    --font-size-paragraph: 16px;
  }
}
@media (max-width: 420px) {
  :root {
    --font-size-16: 14px;
    --font-size-nav-toggle-label: 13px;
  }
}

:root {
  --color-background-input-field: var(--color-white);
  --color-form-text: var(--color-paragraph);
  --color-form-label-text: var(--color-form-text);
  --color-required-label-text: var(--color-form-text);
  --color-border-forms: var(--color-paragraph);
  --color-border-forms-focus: var(--color-paragraph);
  --color-button: var(--color-white);
  --color-button-hover: var(--color-white);
  --color-button-background: var(--color-east-bay);
  --color-button-background-hover: var(--color-valhalla);
  --color-checkbox: var(--color-east-bay);
  --color-checkbox-outline: 0 0 0 3px rgb(84 87 115 / .2);
  --color-checkbox-border-hover: color.adjust(#545773, 15%);
  --color-checkbox-checked: var(--color-form-label-text);
  --color-placeholder: var(--color-paragraph);
  --color-placeholder-focus: var(--color-black);
  --opacity-placeholder: .4;
  --opacity-placeholder-focus: .8;
  --border-radius-checkbox: 3px;
  --border-radius-input-field: 3px;
  --border-radius-button: 3px;
  --border-radius-select: 3px;
  --border-width-checkbox: 1px;
  --border-width-input-field: 1px;
  --font-size-input-fields: var(--font-size-17);
  --font-size-input-labels: var(--font-size-input-fields);
  --font-size-required-text-label: var(--font-size-input-fields);
  --font-size-required-asterisk-label: 22px;
  --form-column-gap: 2rem;
  --form-row-gap: 2rem;
  --form-required-gap: .5rem;
  --form-line-height: 24px;
  --form-padding-vertical: 1rem;
  --form-padding-horizontal: 1.5rem;
  --gap-checkbox: 10px;
  --gap-select-icon: 1.5rem;
  --size-checkbox: 2.2rem;
  --size-checkbox-marker: 12px;
  --size-radio-button: 16px;
  --size-radio-button-marker: 8px;
}

:root {
  --grid-gap: 4.8rem;
  --padding-container-horizontal: 2rem;
  --padding-container-horizontal-large: 6.4rem;
  --padding-container-vertical: 6.4rem;
  --padding-site-header-vertical: 3.375rem;
  --padding-block: 8rem;
  --padding-override-top-bottom: 3.625rem;
  --margin-between-text-elements: 4rem;
  --margin-wp-block-image: 4rem;
  --margin-between-paragraphs: 2.7rem;
}
@media (max-width: 1590px) {
  :root {
    --padding-container-horizontal: 6.4rem;
  }
}
@media (max-width: 700px) {
  :root {
    --padding-container-horizontal: 2rem;
  }
}
@media (max-width: 960px) {
  :root {
    --padding-site-header-vertical: 2rem;
  }
}
@media (max-width: 1024px) {
  :root {
    --grid-gap: 3.2rem;
  }
}
@media (max-width: 770px) {
  :root {
    --grid-gap: var(--padding-container-horizontal);
    --padding-container-vertical: 5rem;
  }
}
@media (max-width: 600px) {
  :root {
    --padding-block: 6rem;
  }
}
@media (max-width: 550px) {
  :root {
    --padding-container-vertical: 15px;
  }
}

.flex {
  display: flex;
}

.jcb {
  justify-content: space-between;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus-within {
  background-color: var(--color-white);
  border-radius: 0;
  box-shadow: 0 0 2px 2px rgba(22, 22, 22, 0.6);
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  display: block;
  font-size: 1.7rem;
  font-weight: var(--font-weight-bold);
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link {
  margin: 5px;
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
div[tabindex]:focus {
  opacity: 1;
  outline-offset: 5px;
}

@media (prefers-reduced-motion: no-preference) {
  *:focus {
    transition: outline-offset 0.25s ease;
  }
}
.external-link-icon {
  display: none !important;
  margin-left: 0.7rem;
  margin-right: 0.2rem;
}
@media (max-width: 550px) {
  .external-link-icon {
    height: 12px;
    margin-left: 0.4rem;
    transform: translateY(1px);
    width: 12px;
  }
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100px;
  text-transform: uppercase;
  padding: 25px 52px 21px;
  text-decoration: none;
  font-family: var(--font-elza);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
}
.button .icon-wrapper {
  width: 15px;
  height: 15px;
  overflow: hidden;
  margin-left: 10px;
}
.button .icon {
  margin: 0;
  animation: slideOutLeft 0.5s forwards;
}
.button:hover .icon {
  animation: slideOutRight 0.5s forwards;
}
.button.button-dark {
  background-color: var(--focus-grey) !important;
  color: var(--color-white);
}
.button.button-dark:hover {
  background-color: var(--focus-blue) !important;
}
.button.button-white {
  background-color: var(--color-white) !important;
  color: var(--color-black);
}
.button.button-white:hover {
  background-color: var(--focus-blue) !important;
  color: var(--color-white);
}
.button.button-white:hover svg path {
  stroke: var(--color-white) !important;
}
.button.button-blue {
  background-color: var(--focus-blue) !important;
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  33% {
    transform: translateX(-50%);
    opacity: 1;
  }
  40% {
    transform: translateX(-50%);
    opacity: 0;
  }
  60% {
    transform: translateX(50%);
    opacity: 0;
  }
  66% {
    transform: translateX(50%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  33% {
    transform: translateX(50%);
    opacity: 1;
  }
  40% {
    transform: translateX(50%);
    opacity: 0;
  }
  60% {
    transform: translateX(-50%);
    opacity: 0;
  }
  66% {
    transform: translateX(-50%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}
.table-responsive table {
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.table-responsive table tr td {
  border: 1px solid #3d3d3b;
  padding: 10px 15px;
}

.hamburger {
  --hamburger-layer-height: 2px;
  --hamburger-width: 3.2rem;
  --hamburger-color: var(--color-white);
  --hamburger-color-active: var(--color-white);
  background-color: var(--hamburger-color);
  flex-shrink: 0;
  height: var(--hamburger-layer-height);
  position: relative;
  transition: all 0.2s ease 0s;
  width: var(--hamburger-width);
}
.hamburger::before, .hamburger::after {
  background-color: var(--hamburger-color);
  content: "";
  display: block;
  height: var(--hamburger-layer-height);
  position: absolute;
  transition: all 0.2s ease 0s;
  width: var(--hamburger-width);
}
.hamburger::before {
  top: -0.9rem;
}
.hamburger::after {
  bottom: -0.9rem;
}

body:not(.js-nav-active) .nav-toggle .hamburger::after,
body:not(.js-nav-active) .nav-toggle:focus .hamburger::after {
  width: 80%;
}

body:not(.js-nav-active) .nav-toggle:hover .hamburger::after {
  width: 100%;
}

.js-nav-active .hamburger::before,
.js-nav-active .hamburger::after {
  background-color: var(--hamburger-color-active);
  left: 0;
  top: 0;
}

.js-nav-active .hamburger::before {
  transform: rotate(-45deg);
}

.js-nav-active .hamburger::after {
  transform: rotate(45deg);
}

.js-nav-active .hamburger {
  background-color: transparent;
}

.nav-toggle::after {
  color: var(--color-white);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
}

.nav-toggle {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  font-weight: var(--font-weight-semibold);
  height: 2rem;
  justify-content: center;
  margin: 0;
  opacity: 1;
  overflow: visible;
  padding: 0;
  position: absolute;
  right: var(--padding-container-horizontal);
  text-decoration: none;
  top: 34px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 100;
}

:root {
  --color-background-nav-mobile-header: var(--color-main);
  --color-background-nav-mobile-header-active: var(--color-main);
  --color-background-menu-items: var(--color-main);
  --color-background-menu-items-active: var(--color-main);
  --color-separator-nav-mobile: rgb(255 255 255 / .1);
  --color-current-menu-item: var(--color-white);
  --color-dropdown-toggle-mobile: var(--color-white);
  --font-size-main-level-mobile: 20px;
  --font-weight-main-level-mobile: 700;
  --padding-main-level-vertical-mobile: 15px;
  --color-main-level-menu-item-hover-focus-mobile: var(--color-white);
  --color-main-level-menu-item-mobile: var(--color-white);
  --font-size-sub-menu-mobile: 20px;
  --font-weight-sub-menu-mobile: 500;
  --margin-left-sub-menu: 1rem;
  --padding-sub-menu-vertical-mobile: .8rem;
  --padding-sub-menu-horizontal-mobile: 2.5rem;
  --color-sub-menu-mobile: rgb(255 255 255 / .8);
}

@media only screen and (max-width: 960px) {
  .menu-items ul {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  ul .sub-menu.toggled-on {
    display: block;
  }
}
.cross:not(.show) {
  display: none;
}

@media screen and (max-width: 959px) {
  .site-header nav {
    max-height: 100px;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
  }
  .site-header nav .menu-items .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .site-header nav .menu-items .menu-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .site-header nav .menu-items .menu-item .sub-menu .menu-item {
    border: none;
  }
  .nav-toggle-label {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  .menu-icon {
    display: none;
  }
  .menu-icon:focus {
    outline: none;
  }
  .site-header {
    padding: 34px 22px 44px !important;
  }
  .site-header .site-title svg {
    max-height: 22px;
    max-width: 100px;
  }
  .site-header ul,
  .site-header li,
  .site-header a {
    position: relative;
  }
  .disable-scroll {
    overflow: hidden;
  }
  .menu-items {
    backface-visibility: hidden;
    background-color: var(--focus-blue);
    display: block;
    left: 0;
    margin: 0;
    overflow: auto;
    padding: 0 22px;
    pointer-events: none;
    position: fixed;
    top: 100px;
    visibility: hidden;
    width: 100%;
    z-index: 5;
  }
  .menu-item a {
    border-top: 1px solid var(--color-separator-nav-mobile);
    color: var(--color-white);
    display: block;
    font-size: var(--font-size-main-level-mobile);
    font-weight: var(--font-weight-main-level-mobile);
    margin-left: 0;
    margin-right: 0;
    padding: var(--padding-main-level-vertical-mobile) 0;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    z-index: 0;
  }
  .sub-menu a {
    color: var(--color-white);
    font-size: var(--font-size-sub-menu-mobile);
    font-weight: var(--font-weight-sub-menu-mobile);
    padding-bottom: var(--padding-sub-menu-vertical-mobile);
    padding-top: var(--padding-sub-menu-vertical-mobile);
    border-top: 0 !important;
    text-transform: none !important;
    letter-spacing: 1px;
  }
  .sub-menu {
    margin-left: 0;
    padding-left: 0;
    z-index: 9999;
  }
  .sub-menu.toggled-on {
    padding-bottom: 15px;
  }
  .sub-menu .sub-menu a {
    padding-left: calc(var(--padding-sub-menu-horizontal-mobile) + var(--margin-left-sub-menu) + var(--margin-left-sub-menu));
  }
  .menu-item a:hover,
  .menu-item a:focus {
    color: var(--color-main-level-menu-item-hover-focus-mobile);
  }
  .menu-item.current-menu-parent > a,
  .menu-item.current-menu-item > a {
    color: var(--color-current-menu-item);
  }
  .dropdown-toggle {
    --dropdown-toggle-size: 12px;
    align-items: center;
    background-color: transparent;
    border: 0;
    color: var(--color-dropdown-toggle-mobile);
    display: inline-flex;
    margin-top: 0;
    overflow: hidden;
    padding: 1.2rem 0;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 100;
    transform: translateY(-50%);
  }
  .dropdown-toggle .menu-icon {
    display: block !important;
  }
  .dropdown-toggle .menu-icon.rotate-icon {
    transform: rotate(90deg);
  }
  .dropdown-toggle .menu-icon .st0 {
    stroke: var(--color-white) !important;
  }
  .dropdown-toggle.toggled-on {
    transform: none;
    top: 20px;
    padding: 0;
  }
  .dropdown-toggle.toggled-on svg {
    transform: rotate(-90deg) !important;
  }
  .dropdown-toggle:hover {
    cursor: pointer;
  }
  .dropdown-toggle:focus {
    cursor: pointer;
    z-index: 100;
  }
  .sub-menu .dropdown-toggle {
    color: var(--color-sub-menu-mobile);
  }
  .js-nav-active .menu-items {
    background-color: var(--focus-blue);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
  .js-nav-active .menu-items::after {
    content: url("data:image/svg+xml,%3Csvg width='58' height='58' viewBox='0 0 58 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_405_2942)'%3E%3Cpath d='M28.9992 0C13.0108 0 0 13.0108 0 28.9992C0 44.9876 13.0108 57.9983 28.9992 57.9983C44.9876 57.9983 57.9983 44.9909 57.9983 28.9992C57.9983 13.0074 44.9893 0 28.9992 0ZM28.9992 53.1803C15.669 53.1803 4.81967 42.3344 4.81967 29.0008C4.81967 15.6673 15.669 4.82305 28.9992 4.82305C42.3293 4.82305 53.1786 15.669 53.1786 28.9992C53.1786 42.3293 42.3293 53.1786 28.9992 53.1786V53.1803Z' fill='white'/%3E%3Cpath d='M21.4807 42.211H27.5036V32.4652H38.0302V27.6455H27.5036V21.9031H39.1979V17.048H21.4807V42.211Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_405_2942'%3E%3Crect width='58' height='58' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    display: block;
    text-align: right;
    margin: 35px 0 25px;
  }
}
.focus-blue {
  background-color: var(--focus-blue);
}

:root {
  --color-dropdown-toggle: var(--color-valhalla);
  --color-current: var(--color-link-text);
  --dropdown-toggle-size: 12px;
  --font-size-main-level: var(--font-size-16);
  --font-weight-main-level: var(--font-weight-bold);
  --padding-main-level-horizontal: 0;
  --padding-main-level-vertical: .6rem;
  --color-main-level: var(--color-black);
  --color-hover-main-level: var(--color-link-text);
  --gap-between-dropdown-toggle: 1.5rem;
  --gap-main-level-horizontal: 2.5rem;
  --font-size-sub-menu: var(--font-size-16);
  --font-weight-sub-menu: var(--font-weight-regular);
  --padding-sub-menu-vertical: .6rem;
  --padding-sub-menu-link-vertical: .6rem;
  --padding-sub-menu-link-horizontal: 1.5rem;
  --width-sub-menu: 20rem;
  --color-sub-menu: var(--color-valhalla);
  --color-hover-sub-menu: var(--color-valhalla);
  --color-background-sub-menu: var(--color-white);
  --gap-dropdown: 1rem;
}

.site-header ul {
  list-style: none;
}

.show {
  display: block;
}

@media only screen and (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
  .nav-primary {
    padding-bottom: 0;
    padding-top: 0;
  }
  .menu-items {
    align-items: center;
    background-color: transparent;
    display: flex;
    gap: var(--gap-main-level-horizontal);
    margin: 0;
    padding: 0;
    position: relative;
  }
  .site-header {
    height: 100%;
    min-height: 160px;
  }
  .site-header .menu-item {
    margin: 0;
    position: relative;
    display: flex;
    align-items: baseline;
  }
  .site-header .menu-item .menu-icon {
    fill: none;
    stroke: #333;
    stroke-width: 2px;
    transition: all 0.3s;
    transform: translateX(-100%);
    opacity: 0;
    margin-right: 8px;
  }
  .site-header .menu-item .menu-icon.rotate-icon {
    transform: rotate(90deg);
  }
  .site-header .menu-item > a {
    align-items: center;
    color: var(--color-white);
    display: inline-flex;
    font-size: var(--font-size-main-level);
    font-weight: var(--font-weight-main-level);
    font-family: var(--font-elza-paragraph);
    margin-left: 0;
    margin-right: 0;
    padding: var(--padding-main-level-vertical) var(--padding-main-level-horizontal);
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .site-header .menu-item .sub-menu a {
    align-items: center;
    color: var(--color-sub-menu);
    display: inline-flex;
    font-size: var(--font-size-sub-menu);
    font-weight: 700;
    font-family: var(--font-elza);
    line-height: 1.5;
    padding: 0.25rem 0;
    white-space: normal;
  }
  .current_page_item .menu-icon {
    opacity: 1 !important;
  }
  .menu-icon .st0 {
    stroke: var(--color-white) !important;
  }
  .menu-item.menu-item-has-children a {
    transition: padding 0.2s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .menu-item:hover,
  .menu-item:focus {
    color: var(--color-white);
  }
  .menu-item:hover .menu-icon,
  .menu-item:focus .menu-icon {
    transform: translateX(0);
    opacity: 1;
  }
  .menu-item a:hover,
  .menu-item a:focus {
    color: var(--color-white);
  }
  .menu-item .sub-menu a:hover,
  .menu-item .sub-menu a:focus {
    color: var(--color-hover-sub-menu);
  }
  .menu-item.menu-item-has-children.hover-intent .sub-menu a,
  .menu-item.menu-item-has-children:focus .sub-menu a {
    padding-bottom: var(--padding-sub-menu-link-vertical);
    padding-top: var(--padding-sub-menu-link-vertical);
  }
  .menu-item.menu-item-has-children.hover-intent .sub-menu,
  .menu-item.menu-item-has-children:focus .sub-menu {
    padding-bottom: var(--padding-sub-menu-vertical);
    padding-top: var(--padding-sub-menu-vertical);
  }
  .nav-primary > ul:first-of-type > .menu-item-has-children:focus::before,
  .nav-primary > ul:first-of-type > .menu-item-has-children:hover::before {
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .sub-menu {
    background-color: transparent;
    border: none;
    color: var(--color-white);
    font-family: var(--font-elza);
    font-weight: 700;
    left: 33%;
    margin-left: 0;
    margin-top: var(--gap-dropdown);
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    visibility: hidden;
    width: var(--width-sub-menu);
    z-index: 9;
    letter-spacing: 1px;
  }
  .sub-menu a,
  .sub-menu span {
    font-size: 14px;
  }
  .sub-menu.is-out-of-viewport {
    left: unset;
    right: 0;
  }
  .sub-menu.is-out-of-viewport .sub-menu {
    left: unset;
    right: 100%;
  }
  .sub-menu .sub-menu.is-out-of-viewport {
    left: unset;
    right: 100%;
  }
  .sub-menu .sub-menu {
    left: 100%;
    margin-left: 0;
    margin-top: calc(-1 * var(--padding-sub-menu-vertical));
    top: 0;
  }
  .sub-menu li {
    padding: 0;
    width: var(--width-sub-menu);
  }
  .menu-item-has-children:focus > .sub-menu,
  .menu-item-has-children.hover-intent > .sub-menu {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible;
    z-index: 12;
  }
  .menu-item-has-children:focus .sub-menu .sub-menu,
  .menu-item-has-children.hover-intent .sub-menu .sub-menu {
    margin-top: calc(-1 * var(--padding-sub-menu-vertical));
    top: 0;
    z-index: 10;
  }
  .menu-item.menu-item-has-children {
    align-items: baseline;
    display: flex;
    justify-content: flex-start;
    position: relative;
  }
  .menu-item.menu-item-has-children::after {
    content: "";
    display: block;
    height: var(--gap-dropdown);
    max-width: var(--width-sub-menu);
    position: absolute;
    top: 100%;
    visibility: hidden;
    width: 100%;
  }
  .menu-item.current-menu-parent .menu-icon,
  .menu-item.current-menu-item .menu-icon {
    transform: translateX(0);
    opacity: 1;
  }
  .menu-item.menu-item-has-children.hover-intent::after {
    visibility: visible;
    z-index: 100;
  }
  .dropdown-toggle svg {
    height: var(--dropdown-toggle-size);
    transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
    width: var(--dropdown-toggle-size);
  }
  .hover-intent > .dropdown-toggle svg {
    transform: rotateX(180deg);
  }
  .dropdown-toggle {
    align-items: center;
    background-color: transparent;
    border: 0;
    color: var(--color-dropdown-toggle);
    justify-content: center;
    padding: 0;
    pointer-events: none;
  }
  button.dropdown-toggle {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  button.dropdown-toggle svg {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  .sub-menu .dropdown-toggle {
    width: 3rem;
  }
  .sub-menu .dropdown-toggle svg {
    transform: rotate(-90deg) rotateX(0deg);
  }
  .sub-menu .hover-intent > .dropdown-toggle > svg {
    transform: rotate(-90deg) rotateX(180deg);
  }
  .sub-menu .menu-item-has-children::after {
    display: none;
  }
  .menu-item.menu-item-has-children.hover-intent > .dropdown-toggle svg,
  .menu-item.menu-item-has-children:focus > .dropdown-toggle svg {
    transform: translateY(0%) rotate(180deg);
  }
  .menu-item.menu-item-has-children .menu-item.menu-item-has-children.hover-intent > .dropdown-toggle svg,
  .menu-item.menu-item-has-children .menu-item.menu-item-has-children:focus > .dropdown-toggle svg {
    transform: translateY(0%) rotate(90deg);
  }
}
@media only screen and (min-width: 960px) and (max-width: 960px) {
  ul li:focus > ul,
  ul li:hover > ul {
    display: block;
  }
}
.block {
  background-color: var(--color-white);
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  width: 100%;
}
.block p {
  margin-top: 0;
}
.block.grey {
  background-color: var(--focus-grey);
}
.block.grey p {
  color: var(--color-white);
}
.block.light-grey {
  background-color: var(--color-light-grey);
}
.block.light-grey p {
  color: var(--focus-grey);
}
.block.blue {
  background-color: var(--focus-blue);
}
.block.blue p {
  color: var(--color-white);
}
.block.white {
  background-color: var(--color-white);
}
.block.white p {
  color: var(--focus-grey);
}

.block.has-unified-padding-if-stacked + .block.has-unified-padding-if-stacked .container {
  overflow: visible;
  padding-top: 0;
}

.global-link {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}

.site {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.container {
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding-bottom: var(--padding-container-vertical);
  padding-left: var(--padding-container-horizontal);
  padding-right: var(--padding-container-horizontal);
  padding-top: var(--padding-container-vertical);
}
.container.y {
  padding: var(--padding-override-top-bottom) var(--padding-container-horizontal) var(--padding-override-top-bottom) !important;
}
.container.t {
  padding-top: var(--padding-override-top-bottom);
}
.container.b {
  padding-bottom: var(--padding-override-top-bottom);
}

.edit-link {
  --color-link-edit-background-hover: var(--color-pattens-blue);
  --color-link-edit-border: var(--color-pattens-blue);
  --color-link-edit-text: color.adjust(#eaf1f8, -20%);
  --color-link-edit-text-hover: var(--color-east-bay);
  clear: both;
  display: block;
  margin-bottom: 0;
  margin-top: 2rem;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  transition: all 150ms;
  width: 100%;
}
.edit-link a {
  background-color: var(--color-white);
  border: 2px dashed var(--color-link-edit-border);
  clear: both;
  color: var(--color-link-edit-text);
  display: block;
  margin: 0;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 150ms;
}
.edit-link:focus,
.edit-link a:hover {
  background-color: var(--color-link-edit-background-hover);
  color: var(--color-link-edit-text-hover);
}

@media (min-width: 550px) {
  .hide-on-desktop {
    display: none !important;
  }
}

@media (max-width: 550px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .hide-on-mobile-nav-view {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .hide-on-desktop-nav-view {
    display: none !important;
  }
}

.hide-completely {
  display: none !important;
}

@media print {
  .nav-container,
  .site-footer,
  .side-nav {
    display: none;
  }
}
:root {
  font-size: 62.5%;
}

.is-root-container,
.acf-block-preview .block,
body {
  color: var(--color-paragraph);
  font-family: var(--font-elza-paragraph);
  font-size: var(--font-size-paragraph);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: var(--font-weight-paragraph);
  line-height: var(--line-height-paragraph);
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  margin-bottom: var(--margin-between-paragraphs);
  margin-top: var(--margin-between-paragraphs);
}

h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-height-heading);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

em,
i {
  font-style: italic;
}

p {
  margin-bottom: 2.9rem;
  margin-top: 2.9rem;
}

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: var(--padding-site-header-vertical) 50px;
  position: relative;
  z-index: 15;
}
@media (max-width: 960px) {
  .site-header {
    --padding-container-horizontal: 2rem;
  }
}

.site-title {
  line-height: 0;
  margin: 0;
}
.site-title a {
  align-items: center;
  display: flex;
  z-index: 99999;
}

.fixed-widget {
  position: fixed;
  right: 90px;
  bottom: 30px;
  z-index: 99;
}
@media (max-width: 1024px) {
  .fixed-widget {
    bottom: 65px;
  }
}
.fixed-widget a {
  text-decoration: none;
}
.fixed-widget a .text-wrapper {
  background: var(--color-white);
  border-radius: 100px 0px 0px 100px;
  padding: 15px 30px 15px 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: var(--focus-blue);
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.15);
  transition: 0.4s all;
}
@media (max-width: 1024px) {
  .fixed-widget a .text-wrapper {
    display: none;
  }
}
.fixed-widget a:hover .text-wrapper {
  padding: 15px 40px 15px 20px;
  transition: 0.4s all;
}
.fixed-widget a:hover::after {
  padding: 25px;
  height: 80px;
  transform: translateY(-50%) rotate(360deg);
  transition: 0.4s all;
}
.fixed-widget a::after {
  content: url("data:image/svg+xml,%3Csvg width='29' height='29' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.0993 10.4595H25.1327V12.5668C25.1327 15.236 22.9686 17.4001 20.2993 17.4001H9.66602V20.5611C9.66602 22.1628 10.9644 23.4611 12.566 23.4611H22.0973L27.3464 28.7198C27.5288 28.9005 27.7759 29.0013 28.0327 29.0001C28.1596 29.0032 28.2852 28.9772 28.4 28.9228C28.7607 28.7748 28.9975 28.4238 28.9993 28.0335V13.3595C28.9993 11.7578 27.701 10.4595 26.0993 10.4595Z' fill='white'/%3E%3Cpath d='M23.2 12.5667V2.9C23.2 1.29835 21.9016 0 20.3 0H2.9C1.29835 0 0 1.29835 0 2.9V21.2667C0.0018125 21.657 0.238646 22.008 0.599333 22.156C0.714125 22.2104 0.839792 22.2364 0.966667 22.2333C1.22344 22.2345 1.47054 22.1336 1.653 21.953L8.12967 15.4667H20.3C21.9016 15.4667 23.2 14.1683 23.2 12.5667ZM4.83333 4.83333H12.5667C13.1008 4.83333 13.5333 5.26592 13.5333 5.8C13.5333 6.33408 13.1008 6.76667 12.5667 6.76667H4.83333C4.29925 6.76667 3.86667 6.33408 3.86667 5.8C3.86667 5.26592 4.29925 4.83333 4.83333 4.83333ZM18.3667 10.6333H4.83333C4.29925 10.6333 3.86667 10.2008 3.86667 9.66667C3.86667 9.13258 4.29925 8.7 4.83333 8.7H18.3667C18.9008 8.7 19.3333 9.13258 19.3333 9.66667C19.3333 10.2008 18.9008 10.6333 18.3667 10.6333Z' fill='white'/%3E%3C/svg%3E%0A");
  position: absolute;
  background: var(--focus-blue);
  border-radius: 100px;
  padding: 20px;
  height: 69px;
  top: 50%;
  transform: translateY(-50%);
  right: -52px;
  transition: 0.4s all;
}
@media (max-width: 1024px) {
  .fixed-widget a::after {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }
}

.site-footer {
  clear: both;
  background-color: var(--focus-grey);
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-elza-paragraph);
  border-bottom: 5px solid var(--focus-blue);
}
.site-footer h3 {
  color: var(--color-white);
  text-align: left;
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .site-footer h3 {
    margin: 10px 0;
  }
}
@media (max-width: 640px) {
  .site-footer h3.contact {
    margin: 25px 0 10px;
  }
}
@media (max-width: 640px) {
  .site-footer .col-12 {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .site-footer .p-sm-0 {
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .site-footer .order-1 {
    order: 2;
  }
}
.site-footer .footer-links,
.site-footer .social-links {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}
.site-footer .footer-links li,
.site-footer .social-links li {
  text-align: left;
}
.site-footer .footer-links li a,
.site-footer .social-links li a {
  text-transform: none;
  text-decoration: none;
  border: none;
  padding: 0;
  font-family: var(--font-elza);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-paragraph);
}
@media only screen and (min-width: 40rem) and (max-width: 64rem) {
  .site-footer .footer-links .menu-item a {
    padding: 0;
    border-top: 0;
    font-weight: 400;
  }
}
.site-footer .footer-newsletter form {
  position: relative;
}
.site-footer .footer-newsletter .gfield--type-email input {
  background: none;
  border-bottom: 2px solid var(--color-white);
  padding-left: 0 !important;
  color: var(--color-white);
  padding-right: 145px !important;
}
.site-footer .footer-newsletter .gfield--type-email input::-moz-placeholder {
  color: var(--color-white);
}
.site-footer .footer-newsletter .gfield--type-email input::placeholder {
  color: var(--color-white);
}
.site-footer .footer-newsletter .ginput_container_consent {
  display: flex;
  align-items: center;
}
.site-footer .footer-newsletter .ginput_container_consent input[type=checkbox] {
  background: none;
  border: 2px solid var(--color-white);
  border-radius: 0;
  padding-left: 0;
}
.site-footer .footer-newsletter .ginput_container_consent input[type=checkbox]::before {
  background-image: none;
  background-color: var(--focus-blue);
}
.site-footer .footer-newsletter .ginput_container_consent input[type=checkbox]:checked {
  border: 2px solid var(--focus-blue);
  background-color: var(--focus-blue);
  color: #fff;
}
.site-footer .footer-newsletter .ginput_container_consent .gfield_consent_label {
  color: var(--color-white);
  margin-left: 20px;
  text-align: left;
}
@media (max-width: 1024px) {
  .site-footer .footer-newsletter .ginput_container_consent .gfield_consent_label {
    font-size: 14px;
    line-height: 17px;
  }
}
.site-footer .footer-newsletter .ginput_container_consent .gfield_consent_label a {
  text-decoration-color: var(--color-white);
}
.site-footer .footer-newsletter .gform_footer {
  position: absolute;
  top: 0px;
  right: 0;
  padding: 0 !important;
  margin: 0 !important;
}
.site-footer .footer-newsletter .gform_footer:hover:after {
  margin-left: 10px;
  transition: 0.2s all;
}
.site-footer .footer-newsletter .gform_footer .gform_button {
  background: no-repeat;
  border: none;
  color: white;
  padding: 0;
  margin-bottom: 0;
  border-bottom: none;
  border-radius: 0;
}
.site-footer .footer-newsletter .gform_footer .gform_button:hover {
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .site-footer .footer-newsletter .gform_footer .gform_button {
    padding: 0 0 10px;
  }
}
.site-footer .footer-newsletter .gform_footer:after {
  content: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.64706 18H19M19 18V7M19 18L8 7' stroke='%232264FF' stroke-width='3'/%3E%3C/svg%3E%0A");
  margin-left: 5px;
  max-height: 26px;
  transition: 0.2s all;
}
.site-footer .contact-links {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
  margin-top: 0;
}
.site-footer .contact-links li {
  text-align: left;
}
.site-footer .contact-links li a {
  text-transform: none;
  text-decoration: none;
}
.site-footer .wordpress-logo {
  display: block;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}
.site-footer span {
  display: block;
  text-align: center;
}
.site-footer svg {
  margin-right: 5px;
  position: relative;
}
.site-footer .powered-by-wordpress {
  display: inline-block;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  text-align: center;
}
.site-footer .github-link {
  margin-left: 8px;
  margin-top: 4px;
  overflow: hidden;
  padding-bottom: 4px;
  position: relative;
}
.site-footer a {
  color: var(--color-white);
  transition: opacity 150ms;
}
.site-footer a:hover, .site-footer a:focus {
  color: var(--color-white);
  opacity: 0.5;
}
.site-footer a:hover::after, .site-footer a:focus::after {
  opacity: 0.2;
}
.site-footer .theme-info {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
}
.site-footer .theme-info i {
  margin: 0 5px;
}
.site-footer .menu-items-row {
  align-items: baseline;
}

.site-main .button-wrapper,
.site-footer .button-wrapper {
  margin-bottom: 0;
}
.site-main button,
.site-main .button,
.site-main input[type=reset],
.site-main input[type=submit],
.site-main input[type=button],
.site-footer button,
.site-footer .button,
.site-footer input[type=reset],
.site-footer input[type=submit],
.site-footer input[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100px;
  text-transform: uppercase;
  padding: 25px 52px 21px;
  text-decoration: none;
  font-family: var(--font-elza);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
}
.site-main button .icon-wrapper,
.site-main .button .icon-wrapper,
.site-main input[type=reset] .icon-wrapper,
.site-main input[type=submit] .icon-wrapper,
.site-main input[type=button] .icon-wrapper,
.site-footer button .icon-wrapper,
.site-footer .button .icon-wrapper,
.site-footer input[type=reset] .icon-wrapper,
.site-footer input[type=submit] .icon-wrapper,
.site-footer input[type=button] .icon-wrapper {
  width: 15px;
  height: 15px;
  overflow: hidden;
  margin-left: 10px;
}
.site-main button .icon,
.site-main .button .icon,
.site-main input[type=reset] .icon,
.site-main input[type=submit] .icon,
.site-main input[type=button] .icon,
.site-footer button .icon,
.site-footer .button .icon,
.site-footer input[type=reset] .icon,
.site-footer input[type=submit] .icon,
.site-footer input[type=button] .icon {
  margin: 0;
  animation: slideOutLeft 0.5s forwards;
}
.site-main button:hover .icon,
.site-main .button:hover .icon,
.site-main input[type=reset]:hover .icon,
.site-main input[type=submit]:hover .icon,
.site-main input[type=button]:hover .icon,
.site-footer button:hover .icon,
.site-footer .button:hover .icon,
.site-footer input[type=reset]:hover .icon,
.site-footer input[type=submit]:hover .icon,
.site-footer input[type=button]:hover .icon {
  animation: slideOutRight 0.5s forwards;
}
.site-main button.button-small,
.site-main .button.button-small,
.site-main input[type=reset].button-small,
.site-main input[type=submit].button-small,
.site-main input[type=button].button-small,
.site-footer button.button-small,
.site-footer .button.button-small,
.site-footer input[type=reset].button-small,
.site-footer input[type=submit].button-small,
.site-footer input[type=button].button-small {
  font-size: var(--font-size-16);
  line-height: 20.9091px;
  padding-bottom: calc(10px - var(--border-width-input-field) * 2);
  padding-left: calc(21px - var(--border-width-input-field) * 2);
  padding-right: calc(21px - var(--border-width-input-field) * 2);
  padding-top: calc(10px - var(--border-width-input-field) * 2);
}
.site-main button.button-large,
.site-main .button.button-large,
.site-main input[type=reset].button-large,
.site-main input[type=submit].button-large,
.site-main input[type=button].button-large,
.site-footer button.button-large,
.site-footer .button.button-large,
.site-footer input[type=reset].button-large,
.site-footer input[type=submit].button-large,
.site-footer input[type=button].button-large {
  font-size: var(--font-size-18);
  line-height: 23.0909px;
  padding-bottom: calc(17px - var(--border-width-input-field) * 2);
  padding-left: calc(21px - var(--border-width-input-field) * 2);
  padding-right: calc(21px - var(--border-width-input-field) * 2);
  padding-top: calc(17px - var(--border-width-input-field) * 2);
}
.site-main button.button-ghost,
.site-main .button.button-ghost,
.site-main input[type=reset].button-ghost,
.site-main input[type=submit].button-ghost,
.site-main input[type=button].button-ghost,
.site-footer button.button-ghost,
.site-footer .button.button-ghost,
.site-footer input[type=reset].button-ghost,
.site-footer input[type=submit].button-ghost,
.site-footer input[type=button].button-ghost {
  background-color: transparent;
  border: var(--border-width-input-field) solid var(--color-button-background);
  color: var(--color-button-background);
  transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-main button.button-ghost.focus, .site-main button.button-ghost:focus, .site-main button.button-ghost:hover,
.site-main .button.button-ghost.focus,
.site-main .button.button-ghost:focus,
.site-main .button.button-ghost:hover,
.site-main input[type=reset].button-ghost.focus,
.site-main input[type=reset].button-ghost:focus,
.site-main input[type=reset].button-ghost:hover,
.site-main input[type=submit].button-ghost.focus,
.site-main input[type=submit].button-ghost:focus,
.site-main input[type=submit].button-ghost:hover,
.site-main input[type=button].button-ghost.focus,
.site-main input[type=button].button-ghost:focus,
.site-main input[type=button].button-ghost:hover,
.site-footer button.button-ghost.focus,
.site-footer button.button-ghost:focus,
.site-footer button.button-ghost:hover,
.site-footer .button.button-ghost.focus,
.site-footer .button.button-ghost:focus,
.site-footer .button.button-ghost:hover,
.site-footer input[type=reset].button-ghost.focus,
.site-footer input[type=reset].button-ghost:focus,
.site-footer input[type=reset].button-ghost:hover,
.site-footer input[type=submit].button-ghost.focus,
.site-footer input[type=submit].button-ghost:focus,
.site-footer input[type=submit].button-ghost:hover,
.site-footer input[type=button].button-ghost.focus,
.site-footer input[type=button].button-ghost:focus,
.site-footer input[type=button].button-ghost:hover {
  background-color: var(--color-button-background);
  border-color: var(--color-button-background);
  color: var(--color-white);
}

legend,
label {
  color: var(--color-form-label-text);
  font-size: var(--font-size-input-fields);
  font-weight: var(--font-weight-semibold);
}

input + label {
  font-weight: unset;
}

textarea,
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
input[type=month],
input[type=week],
input[type=email],
input[type=search] {
  background-color: var(--color-background-input-field);
  border-color: var(--color-border-forms);
  border-radius: var(--border-radius-input-field);
  border-style: solid;
  border-width: var(--border-width-input-field);
  color: var(--color-form-text);
  font-family: var(--font-elza-paragraph);
  font-size: var(--font-size-input-fields);
  line-height: var(--form-line-height);
  margin-bottom: 0;
  padding-bottom: var(--form-padding-vertical);
  padding-left: var(--form-padding-horizontal);
  padding-right: var(--form-padding-horizontal);
  padding-top: var(--form-padding-vertical);
  position: relative;
  text-decoration: none;
  transition: background 0.55s;
}
textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=search]::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: var(--opacity-placeholder);
}
textarea::placeholder,
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder {
  color: var(--color-placeholder);
  opacity: var(--opacity-placeholder);
}
textarea:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=email]:focus,
input[type=search]:focus {
  background-color: var(--color-background-input-field);
  border-color: var(--color-border-forms-focus);
  color: var(--color-form-text);
}
textarea:focus::-moz-placeholder, input[type=text]:focus::-moz-placeholder, input[type=tel]:focus::-moz-placeholder, input[type=url]:focus::-moz-placeholder, input[type=password]:focus::-moz-placeholder, input[type=number]:focus::-moz-placeholder, input[type=month]:focus::-moz-placeholder, input[type=week]:focus::-moz-placeholder, input[type=email]:focus::-moz-placeholder, input[type=search]:focus::-moz-placeholder {
  color: var(--color-placeholder-focus);
  opacity: var(--opacity-placeholder-focus);
}
textarea:focus::placeholder,
input[type=text]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=url]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=month]:focus::placeholder,
input[type=week]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=search]:focus::placeholder {
  color: var(--color-placeholder-focus);
  opacity: var(--opacity-placeholder-focus);
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml, %3Csvg width="12" height="9" viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M2.049 1.552L6.22 6.268a.188.188 0 00.28 0l4.173-4.716" stroke="%23212121" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cdefs%3E%3Cpath fill="none" transform="translate(.861 .45)" d="M0 0h10.544v7.95H0z"/%3E%3C/defs%3E%3C/svg%3E%0A');
  background-position: right var(--gap-select-icon) center;
  background-repeat: no-repeat;
  background-size: 11px auto;
  border-color: var(--color-border-forms);
  border-radius: var(--border-radius-select);
  border-style: solid;
  border-width: var(--border-width-input-field);
  color: var(--color-form-text);
  font-family: var(--font-elza-paragraph);
  font-size: var(--font-size-input-fields);
  line-height: var(--form-line-height);
  max-width: 100%;
  min-width: 0;
  padding-bottom: var(--form-padding-vertical);
  padding-left: var(--form-padding-horizontal);
  padding-right: var(--form-padding-horizontal);
  padding-top: var(--form-padding-vertical);
  text-indent: 1px;
  transition: none;
  width: 100%;
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-background-input-field);
  border: 1px solid var(--color-border-forms);
  color: currentColor;
  display: grid;
  font: inherit;
  height: var(--size-checkbox);
  margin: 0;
  place-content: center;
  width: var(--size-checkbox);
}

input[type=radio]::before,
input[type=radio] {
  border-radius: 50%;
}

input[type=checkbox]::before,
input[type=checkbox] {
  border-radius: var(--border-radius-checkbox);
}

input[type=radio]::before,
input[type=checkbox]::before {
  background-color: var(--color-checkbox-checked);
  background-image: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" heighg="16"%3E%3Cg class="nc-icon-wrapper" stroke-width="3" fill="%237effe1" stroke="%237effe1"%3E%3Cpolyline fill="none" stroke="%237effe1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="1, 9 5, 13 15, 3" data-cap="butt"%3E%3C/polyline%3E%3C/g%3E%3C/svg%3E%0A');
  background-position: center;
  background-size: var(--size-checkbox-marker) var(--size-checkbox-marker);
  border: 1px solid var(--color-checkbox-checked);
  content: "";
  height: var(--size-checkbox);
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.2s;
  width: var(--size-checkbox);
}

input[type=radio]:checked::before,
input[type=checkbox]:checked::before {
  opacity: 1;
  transform: scale(1);
}

input[type=radio]:checked,
input[type=checkbox]:checked {
  background-color: transparent;
  border-color: transparent;
}

input[type=radio]:hover,
input[type=radio] + label:hover,
input[type=radio]:focus,
input[type=radio] + label:focus,
input[type=checkbox]:hover,
input[type=checkbox] + label:hover,
input[type=checkbox]:focus,
input[type=checkbox] + label:focus {
  cursor: pointer;
}

.wpcf7-response-output {
  font-family: var(--font-elza);
}

.cat {
  margin-bottom: 0.5rem;
  margin-top: 4rem;
}
.cat a {
  background-color: transparent;
  border-color: var(--color-category-border);
  border-radius: 5px;
  border-style: solid;
  border-width: 1px 1px 2px;
  box-shadow: none;
  color: var(--color-category-text);
  display: inline-block;
  font-size: var(--font-size-16);
  margin-bottom: 0.5rem;
  margin-right: 0.5em;
  padding: 0.2em 0.6em;
  transition: all 150ms;
}
.cat a:hover,
.cat a:focus {
  border-color: var(--color-tag-border-hover);
}

.tags {
  list-style: none;
  margin-bottom: var(--margin-between-text-elements);
  margin-top: 0;
  overflow: hidden;
}
.tags li {
  float: left;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 10px;
  margin-top: 0;
  padding-left: 0;
}
.tags a {
  background-color: transparent;
  border-color: var(--color-tag-border);
  border-radius: 5px;
  border-style: solid;
  border-width: 1px 1px 2px;
  box-shadow: none;
  color: var(--color-tag-text);
  display: inline-block;
  font-size: var(--font-size-14);
  margin-right: 0.4em;
  padding: 0.2em 0.6em;
  transition: all 150ms;
}
.tags a:hover,
.tags a:focus {
  border-color: var(--color-tag-border-hover);
}

.post-navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

:root {
  --color-border-sticky: #d7e4f2;
  --color-bypostauthor: rgb(42 45 62 / .5);
}

.sticky {
  border: 1px dashed var(--color-border-sticky);
  margin-bottom: 2rem;
  padding: 2rem;
}

.comment-list li.bypostauthor,
.bypostauthor {
  border: 1px dashed var(--color-bypostauthor);
  padding: 2rem;
}

.wp-caption {
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}
.wp-caption .wp-caption-text {
  font-style: italic;
  margin-bottom: 20px;
  padding: 1rem 0;
  text-align: left;
}

.top {
  background-color: var(--color-background-top);
  border-radius: 2px;
  bottom: var(--padding-container-horizontal);
  color: var(--color-black);
  cursor: pointer;
  font-size: var(--font-size-16);
  height: 3rem;
  line-height: 30px;
  opacity: 0;
  position: fixed;
  right: var(--padding-container-horizontal);
  text-align: center;
  text-decoration: none;
  transition: 500ms opacity;
  visibility: hidden;
  width: 3rem;
  z-index: 1;
}
.top:hover {
  background-color: var(--color-background-top-hover);
}
.top:focus {
  background-color: var(--color-background-top);
}

.top.is-visible {
  opacity: 1;
  visibility: visible;
}

.gallery {
  display: grid;
  grid-gap: 1.5em;
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

.navigation:not(.post-navigation) .nav-links {
  align-items: flex-start;
  display: flex;
  font-family: var(--font-heading);
  font-size: 14px;
  justify-content: flex-start;
  margin-top: 4rem;
  overflow: hidden;
  text-align: left;
  width: 100%;
}
.navigation:not(.post-navigation) .nav-links a {
  text-decoration: none;
}

.page-numbers {
  align-items: center;
  background-color: var(--color-white);
  border-bottom: 2px solid var(--color-blue-chalk);
  border-left: 1px solid var(--color-blue-chalk);
  border-right: 1px solid var(--color-blue-chalk);
  border-top: 2px solid var(--color-blue-chalk);
  color: var(--color-pagination-text);
  display: flex;
  font-weight: var(--font-weight-medium);
  height: 35px;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  transition: all 150ms;
  width: 35px;
}
.page-numbers:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
}
.page-numbers:first-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
}
@media (max-width: 600px) {
  .page-numbers {
    height: 26px;
    width: 26px;
  }
}

a.page-numbers:hover,
a.page-numbers:focus {
  background-color: var(--color-pagination-background-hover);
  border-color: var(--color-pagination-border-hover);
  color: var(--color-pagination-text-hover);
}

.page-numbers.current {
  background-color: var(--color-pagination-background-current);
  border-color: var(--color-pagination-border-current);
  color: var(--color-pagination-text-current);
}

.page-numbers.next,
.page-numbers.prev {
  padding-left: 20px;
  padding-right: 20px;
  width: auto;
}
@media (max-width: 600px) {
  .page-numbers.next,
  .page-numbers.prev {
    padding-left: 10px;
    padding-right: 10px;
  }
}

div.validation_error {
  background-color: var(--color-error);
  color: var(--color-white);
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--form-row-gap);
  padding: 2rem;
}
div.validation_error:focus {
  color: var(--color-white);
}

body *[aria-invalid=true] {
  border-color: var(--color-error);
}

.validation_message {
  color: var(--color-error);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-regular);
}

.validation_list {
  list-style: none;
  margin-bottom: var(--form-row-gap);
  margin-left: 0;
  padding: 0;
}
.validation_list a {
  color: var(--color-error);
  text-decoration: none;
}
.validation_list li {
  color: var(--color-error);
  font-weight: var(--font-weight-bold);
}

.gform_required_legend,
.sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.gform_required_legend:focus-within,
.sr-only:focus-within {
  background-color: var(--color-white);
  border-radius: 0;
  box-shadow: 0 0 2px 2px rgba(22, 22, 22, 0.6);
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  display: block;
  font-size: 1.7rem;
  font-weight: var(--font-weight-bold);
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.gfield_required.gfield_required_asterisk {
  font-size: var(--font-size-required-asterisk-label);
}

.gfield_required.gfield_required_asterisk,
.gfield_required.gfield_required_text {
  color: var(--color-required-label-text);
}

.gfield_required.gfield_required_text {
  font-size: var(--font-size-required-text-label);
}

.gform_wrapper > form {
  display: grid;
  grid-column-gap: var(--form-column-gap);
  grid-row-gap: var(--form-row-gap);
}

.gform-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gform-body textarea,
.gform-body input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
}
.gform-body .ginput_container.ginput_container_textarea {
  display: flex;
}
.gform-body .gfield_radio,
.gform-body .gfield_checkbox {
  display: grid;
  gap: 1rem;
}
.gform-body .gchoice {
  display: flex;
  gap: 1rem;
}
.gform-body .gfield_label {
  display: inline-flex;
  gap: var(--form-required-gap);
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding-inline-end: 0;
  padding-inline-start: 0;
}
.gform-body .gform_fields {
  display: grid;
  grid-column-gap: var(--form-column-gap);
  grid-row-gap: var(--form-row-gap);
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  width: 100%;
}
.gform-body .gfield {
  border: 0;
  grid-column: 1/-1;
  padding: 0;
}
.gform-body .gfield.gfield--width-full {
  grid-column: span 12;
}
.gform-body .gfield.gfield--width-eleven-twelfths {
  grid-column: span 11;
}
.gform-body .gfield.gfield--width-five-sixths {
  grid-column: span 10;
}
.gform-body .gfield.gfield--width-three-quarter {
  grid-column: span 9;
}
.gform-body .gfield.gfield--width-two-thirds {
  grid-column: span 8;
}
.gform-body .gfield.gfield--width-seven-twelfths {
  grid-column: span 7;
}
.gform-body .gfield.gfield--width-half {
  grid-column: span 6;
}
.gform-body .gfield.gfield--width-five-twelfths {
  grid-column: span 5;
}
.gform-body .gfield.gfield--width-third {
  grid-column: span 4;
}
.gform-body .gfield.gfield--width-quarter {
  grid-column: span 3;
}
@media (max-width: 640px) {
  .gform-body .gform_fields {
    grid-column-gap: 0;
  }
  .gform-body .gfield:not(.gfield--width-full) {
    grid-column: 1/-1;
  }
}

.gform_validation_container {
  display: none;
}

.gform_confirmation_message {
  background-color: transparent;
  border: 2px solid var(--color-success);
  color: var(--color-success);
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-semibold);
  padding: 2rem;
}

:root {
  --color-sticky-navigation-background: var(--color-valhalla);
}

.nav-container {
  overflow: visible;
  width: 100%;
  z-index: 100;
  background-color: var(--focus-grey);
}
.nav-container.grey {
  background-color: var(--focus-grey) !important;
}
.nav-container.blue {
  background-color: var(--focus-blue) !important;
}
.nav-container.transparent {
  background-color: transparent !important;
  position: absolute;
}
.nav-container.is-fixed {
  background-color: var(--color-sticky-navigation-background);
  left: 0;
  position: fixed;
  top: 0;
}

.block-search,
.block-search-results {
  background-color: var(--color-white);
}

.block-search form {
  display: grid;
  /* autoprefixer: off */
  grid-gap: 1rem;
  grid-template-columns: 9fr 1fr;
}
.block-search form input,
.block-search form label {
  width: 100%;
}

.block-search-results > .container {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .block-search-results > .container {
    display: grid;
  }
}
.block-search-results .row-result {
  border-top: 2px solid var(--color-border-forms);
  padding: 2rem 0;
}
.block-search-results .row-result:last-of-type {
  border-bottom: 2px solid var(--color-border-forms);
}
.block-search-results h3 {
  font-size: var(--font-size-h4);
  margin-bottom: 1rem;
}
.block-search-results p {
  margin-top: 1rem;
}
.block-search-results .tags a {
  background-color: var(--color-background-tag);
  color: var(--color-main);
}
.block-search-results .tags a:hover, .block-search-results .tags a:focus {
  background-color: var(--color-main);
  color: var(--color-background-tag);
}

.error404 .site-header {
  filter: blur(2px);
}
.error404 .site-header .site-branding svg {
  max-width: 327px;
}
@media (max-width: 1024px) {
  .error404 .site-header .site-branding svg {
    max-width: 200px;
  }
}
.error404 .block-error-404 .embed-container {
  filter: blur(10px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.error404 .block-error-404 .embed-container iframe {
  height: 100vh;
  width: 100vw;
}
.error404 .block-error-404 .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 1024px) {
  .error404 .block-error-404 .overlay {
    width: 100%;
  }
}
.error404 .block-error-404 .overlay h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 250px;
  line-height: 270px;
  color: var(--color-white);
  margin: 0;
}
@media (max-width: 1024px) {
  .error404 .block-error-404 .overlay h1 {
    font-size: 150px;
    line-height: 180px;
  }
}
.error404 .block-error-404 .overlay p {
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: var(--color-white);
  font-family: var(--font-baskerville-paragraph);
}
@media (max-width: 1024px) {
  .error404 .block-error-404 .overlay p {
    font-size: 20px;
    line-height: 24px;
  }
}
.error404 .block-error-404 .overlay .button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.error404 .block-error-404 .overlay .button svg {
  margin-left: 10px;
}
.error404 .block-error-404 .overlay .button svg .st1110:hover {
  stroke: var(--color-white);
}

.comments-area {
  margin-bottom: 0;
  margin-top: 50px;
  overflow: visible;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list .children {
  list-style: none;
}
.comment-list li {
  font-size: var(--font-size-14);
  margin-bottom: 70px;
  margin-top: 0;
  padding: 0;
}
.comment-list p {
  color: var(--color-comment-text);
  font-size: var(--font-size-14);
}
.comment-list .avatar {
  border-radius: 50%;
  float: right;
}
.comment-list .comment-author {
  color: var(--color-comment-author-text);
  font-size: var(--font-size-h4);
  margin-bottom: 10px;
  margin-top: 0;
  padding: 0;
}
.comment-list a,
.comment-list .comments-link a {
  box-shadow: none;
  color: var(--color-link-comment);
}
.comment-list .comment-author a {
  color: var(--color-paragraph);
}
.comment-list .comment-time {
  font-size: var(--font-size-14);
  margin: 0;
  padding: 0;
}
.comment-list .comment-time a {
  color: var(--color-link-comment-time-anchor);
}
.comment-list .comment-time:focus, .comment-list .comment-time:hover {
  opacity: 1;
}
.comment-list .comment-time svg {
  fill: var(--color-link-comment-time-anchor);
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.comments-link {
  align-items: center;
  display: inline-flex;
  font-size: var(--font-size-14);
  text-align: right;
}
.comments-link a {
  color: var(--color-link-comment);
}
.comments-link:hover, .comments-link:focus,
.comments-link a:hover,
.comments-link a:focus {
  color: var(--color-black);
}
.comments-link svg {
  margin-right: 7px;
  position: relative;
  top: -1px;
}

@media (min-width: 1024px) {
  .comment-form {
    display: grid;
    grid-gap: 1em;
    grid-template-columns: 1fr 1fr;
    /* autoprefixer: off */
    justify-content: center;
  }
  .comment-form .comment-notes,
  .comment-form .comment-form-comment,
  .comment-form .form-submit {
    grid-column: 1/span 2;
  }
}

.comment-respond {
  margin-bottom: 0;
  overflow: visible;
}
@media (max-width: 550px) {
  .comment-respond input {
    width: 100%;
  }
}
.comment-respond .comment-form-author {
  margin-bottom: 20px;
  margin-top: 0;
}
.comment-respond .comment-form-author input {
  border-width: 1px;
  padding: 15px;
  width: 100%;
}
.comment-respond .comment-form-email {
  clear: right;
  margin-bottom: 20px;
  margin-right: 0;
  margin-top: 0;
}
.comment-respond .comment-form-email input {
  border-width: 1px;
  padding: 15px;
  width: 100%;
}
.comment-respond .comment-form-url {
  margin-bottom: 30px;
  margin-top: 0;
  position: relative;
}
.comment-respond .comment-form-url input {
  border-width: 1px;
  padding: 15px;
  width: 100%;
}
.comment-respond .form-submit {
  clear: both;
  display: block;
  margin-bottom: 0;
  margin-top: 0;
}
.comment-respond .comment-form-comment {
  margin-bottom: 20px;
}
.comment-respond textarea {
  width: 100%;
}

.block-header {
  background-color: var(--color-black);
  width: 100%;
}
.block-header.white h1, .block-header.white h2, .block-header.white h3, .block-header.white h4, .block-header.white h5, .block-header.white h6, .block-header.white p {
  color: var(--focus-grey) !important;
}
.block-header.white .button-white {
  border: 1px solid var(--focus-blue) !important;
}
.block-header.light-grey h1, .block-header.light-grey h2, .block-header.light-grey h3, .block-header.light-grey h4, .block-header.light-grey h5, .block-header.light-grey h6, .block-header.light-grey p {
  color: var(--focus-grey) !important;
}
.block-header.blue .button-white:hover {
  border: 1px solid var(--color-white) !important;
}
.block-header .style-one .image {
  width: 100%;
  position: relative;
}
.block-header .style-one .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-header .style-one .image .next-article-button {
  position: absolute;
  bottom: 45px;
  right: 0;
}
@media (max-width: 1280px) {
  .block-header .style-one .image .next-article-button {
    bottom: 15px;
  }
}
.block-header .style-one .image .next-article-button a {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  align-items: flex-start;
  background-color: var(--focus-blue);
  padding: 20px 35px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
@media (max-width: 1280px) {
  .block-header .style-one .image .next-article-button a {
    padding: 15px 25px;
  }
}
.block-header .style-one .image .next-article-button a:hover {
  background-color: var(--color-white);
  cursor: pointer;
  color: var(--focus-blue);
  text-decoration: none;
}
.block-header .style-one .image .next-article-button a:hover svg path {
  stroke: var(--focus-blue);
}
.block-header .style-one .image .next-article-button a svg {
  margin-left: 15px;
}
.block-header .style-one .image img {
  max-width: 100%;
  width: 100%;
  max-height: 800px;
  min-height: 730px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 1280px) {
  .block-header .style-one .image img {
    height: 100%;
    min-height: 630px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-one .image img {
    max-height: 430px;
  }
}
.block-header .style-one .image img.desktop-header-image {
  display: block;
}
@media (max-width: 768px) {
  .block-header .style-one .image img.desktop-header-image {
    display: none;
  }
}
.block-header .style-one .image img.mobile-header-image {
  display: none;
}
@media (max-width: 768px) {
  .block-header .style-one .image img.mobile-header-image {
    display: block;
  }
}
.block-header .style-one .content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 100px;
}
@media (max-width: 1590px) {
  .block-header .style-one .content {
    padding: 0 55px;
  }
}
@media (max-width: 1536px) {
  .block-header .style-one .content {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-one .content {
    padding: 130px 20px 45px;
  }
}
@media (max-width: 768px) {
  .block-header .style-one .content {
    padding: 100px 20px 45px;
  }
}
.block-header .style-one .content h1, .block-header .style-one .content h2, .block-header .style-one .content h3, .block-header .style-one .content h4, .block-header .style-one .content h5, .block-header .style-one .content h6,
.block-header .style-one .content p {
  color: var(--color-white);
}
.block-header .style-one .content h1, .block-header .style-one .content h2, .block-header .style-one .content h3, .block-header .style-one .content h4, .block-header .style-one .content h5, .block-header .style-one .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
}
@media (max-width: 1280px) {
  .block-header .style-one .content h1, .block-header .style-one .content h2, .block-header .style-one .content h3, .block-header .style-one .content h4, .block-header .style-one .content h5, .block-header .style-one .content h6 {
    font-size: 30px;
    line-height: 31px;
  }
}
.block-header .style-one .content .categories {
  background-color: var(--focus-blue);
  padding: 10px 20px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-family: var(--font-baskerville-paragraph);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 0px;
}
.block-header .style-one .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.block-header .style-one .content p.date {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
}
.block-header .style-two {
  padding: 25px 0 50px;
  align-items: center;
}
@media (max-width: 1024px) {
  .block-header .style-two {
    padding: 30px 0;
  }
}
.block-header .style-two::after {
  content: "";
  background-image: url("/wp-content/themes/wp-theme-focus-agency/public/images/arrows.gif");
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 167px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1280px) {
  .block-header .style-two::after {
    display: none;
  }
}
.block-header .style-two .content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 200px;
}
@media (max-width: 1536px) {
  .block-header .style-two .content {
    padding: 0 50px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-two .content {
    padding: 20px;
  }
}
.block-header .style-two .content h1, .block-header .style-two .content h2, .block-header .style-two .content h3, .block-header .style-two .content h4, .block-header .style-two .content h5, .block-header .style-two .content h6,
.block-header .style-two .content p {
  color: var(--color-white);
}
.block-header .style-two .content h1, .block-header .style-two .content h2, .block-header .style-two .content h3, .block-header .style-two .content h4, .block-header .style-two .content h5, .block-header .style-two .content h6 {
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  font-style: normal;
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .block-header .style-two .content h1, .block-header .style-two .content h2, .block-header .style-two .content h3, .block-header .style-two .content h4, .block-header .style-two .content h5, .block-header .style-two .content h6 {
    padding-right: 85px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-two .content h1, .block-header .style-two .content h2, .block-header .style-two .content h3, .block-header .style-two .content h4, .block-header .style-two .content h5, .block-header .style-two .content h6 {
    font-size: 40px;
    line-height: 42px;
  }
}
.block-header .style-two .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  font-style: normal;
}
.block-header .style-two .content .button {
  max-width: 300px;
  border: 1px solid var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-two .content .button {
    max-width: 100%;
    justify-content: center;
    padding: 17px 0px;
    display: flex;
    position: relative;
  }
  .block-header .style-two .content .button .icon {
    position: absolute;
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-two .image {
    position: absolute;
    top: 50px;
    right: 15px;
  }
  .block-header .style-two .image svg {
    max-width: 50px;
    height: auto;
  }
}
.block-header .style-three.small {
  height: 300px;
  min-height: 300px;
}
@media (max-width: 1024px) {
  .block-header .style-three.small {
    height: 250px;
  }
}
.block-header .style-three.medium {
  height: 450px;
  min-height: 450px;
}
@media (max-width: 1024px) {
  .block-header .style-three.medium {
    height: 350px;
  }
}
.block-header .style-three.full {
  height: 800px;
  min-height: 800px;
}
@media (max-width: 1024px) {
  .block-header .style-three.full {
    height: 600px;
  }
}
.block-header .style-three .background-image {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 460px;
}
.block-header .style-three .background-image.desktop-header-image {
  display: block;
}
@media (max-width: 768px) {
  .block-header .style-three .background-image.desktop-header-image {
    display: none;
  }
}
.block-header .style-three .background-image.mobile-header-image {
  display: none;
}
@media (max-width: 768px) {
  .block-header .style-three .background-image.mobile-header-image {
    display: block;
  }
}
.block-header .style-three .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-header .style-three .overlay .content {
  max-width: 60%;
  padding-left: 200px;
}
@media (max-width: 1536px) {
  .block-header .style-three .overlay .content {
    max-width: 80%;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-three .overlay .content {
    max-width: 100%;
    padding: 0 20px;
  }
}
.block-header .style-three .overlay .content h1, .block-header .style-three .overlay .content h2, .block-header .style-three .overlay .content h3, .block-header .style-three .overlay .content h4, .block-header .style-three .overlay .content h5, .block-header .style-three .overlay .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-three .overlay .content h1, .block-header .style-three .overlay .content h2, .block-header .style-three .overlay .content h3, .block-header .style-three .overlay .content h4, .block-header .style-three .overlay .content h5, .block-header .style-three .overlay .content h6 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;
  }
}
.block-header .style-three .overlay .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-three .overlay .content p {
    margin-bottom: 15px;
  }
}
.block-header .style-three .overlay .content .button {
  min-width: 290px;
  max-width: 300px;
}
@media (max-width: 1024px) {
  .block-header .style-three .overlay .content .button {
    max-width: 100%;
    justify-content: center;
    padding: 17px 0px;
    display: flex;
    position: relative;
  }
  .block-header .style-three .overlay .content .button .icon {
    position: absolute;
    right: 20px;
  }
}
.block-header .style-four {
  background: var(--color-white);
}
.block-header .style-four .header-slider {
  margin-bottom: 0;
}
.block-header .style-four .header-slider .background-image {
  width: 100%;
  max-width: 100%;
  height: 800px;
  object-fit: cover;
}
.block-header .style-four .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-header .style-four .overlay .content {
  max-width: 45%;
  padding-left: 200px;
}
@media (max-width: 1536px) {
  .block-header .style-four .overlay .content {
    max-width: 80%;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-four .overlay .content {
    max-width: 100%;
    padding: 0 20px;
  }
}
.block-header .style-four .overlay .content h1, .block-header .style-four .overlay .content h2, .block-header .style-four .overlay .content h3, .block-header .style-four .overlay .content h4, .block-header .style-four .overlay .content h5, .block-header .style-four .overlay .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-four .overlay .content h1, .block-header .style-four .overlay .content h2, .block-header .style-four .overlay .content h3, .block-header .style-four .overlay .content h4, .block-header .style-four .overlay .content h5, .block-header .style-four .overlay .content h6 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;
  }
}
.block-header .style-four .overlay .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-four .overlay .content p {
    margin-bottom: 15px;
  }
}
.block-header .style-four .overlay .content .button {
  width: -moz-fit-content;
  width: fit-content;
}
.block-header .style-four .header-slider-navigation {
  width: 100%;
  max-width: 300px;
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
  bottom: -65px;
}
.block-header .style-four .header-slider-navigation.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .block-header .style-four .header-slider-navigation {
    display: none;
  }
  .block-header .style-four .header-slider-navigation.mobile {
    display: block;
  }
}
.block-header .style-four .header-slider-navigation .slick-arrow {
  padding: 0;
  line-height: normal;
  font-size: inherit;
  display: block;
  border-radius: 0px;
  align-content: unset;
  top: 0;
  transform: none;
  width: 47px;
  height: 46px;
  position: relative;
  margin: 0 5px;
}
.block-header .style-four .header-slider-navigation .slick-arrow.slick-prev {
  left: 0px;
}
.block-header .style-four .header-slider-navigation .slick-arrow.slick-prev::before {
  content: url("data:image/svg+xml,%3Csvg width='47' height='46' viewBox='0 0 47 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_210_1926)'%3E%3Cpath d='M23.4993 0C10.5432 0 0 10.3189 0 22.9993C0 35.6798 10.5432 45.9987 23.4993 45.9987C36.4554 45.9987 46.9986 35.6825 46.9986 22.9993C46.9986 10.3162 36.4568 0 23.4993 0ZM23.4993 42.1775C12.6973 42.1775 3.9056 33.5755 3.9056 23.0007C3.9056 12.4258 12.6973 3.82518 23.4993 3.82518C34.3013 3.82518 43.093 12.4271 43.093 22.9993C43.093 33.5715 34.3013 42.1762 23.4993 42.1762V42.1775Z' fill='%232264FF'/%3E%3Cmask id='mask0_210_1926' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='47' height='46'%3E%3Cellipse cx='23.5' cy='23' rx='23.5' ry='23' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_210_1926)'%3E%3Cpath d='M28.8063 14.8359L18.1934 22.754L28.8063 30.672' stroke='%232264FF' stroke-width='5'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_210_1926'%3E%3Crect width='47' height='46' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.block-header .style-four .header-slider-navigation .slick-arrow.slick-next {
  right: 0px;
}
.block-header .style-four .header-slider-navigation .slick-arrow.slick-next::before {
  content: url("data:image/svg+xml,%3Csvg width='47' height='46' viewBox='0 0 47 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_210_1927)'%3E%3Cpath d='M23.5007 46C36.4568 46 47 35.6811 47 23.0007C47 10.3202 36.4568 0.00133041 23.5007 0.00132927C10.5446 0.00132814 0.00136497 10.3175 0.00136386 23.0007C0.00136275 35.6838 10.5432 46 23.5007 46ZM23.5007 3.82249C34.3027 3.82249 43.0944 12.4245 43.0944 22.9993C43.0944 33.5742 34.3027 42.1748 23.5007 42.1748C12.6987 42.1748 3.90696 33.5728 3.90696 23.0007C3.90696 12.4285 12.6987 3.82383 23.5007 3.82383L23.5007 3.82249Z' fill='%232264FF'/%3E%3Cmask id='mask0_210_1927' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='47' height='46'%3E%3Cellipse cx='23.5' cy='23' rx='23.5' ry='23' transform='rotate(-180 23.5 23)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_210_1927)'%3E%3Cpath d='M18.1937 31.1641L28.8066 23.246L18.1937 15.328' stroke='%232264FF' stroke-width='5'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_210_1927'%3E%3Crect width='47' height='46' fill='white' transform='translate(47 46) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.block-header .style-four .header-slider-navigation .dots .slick-dots {
  position: relative;
  bottom: 0;
}
.block-header .style-four .header-slider-navigation .dots .slick-dots li {
  height: 3px;
  width: 22px;
}
.block-header .style-four .header-slider-navigation .dots .slick-dots li.slick-active button {
  background: var(--focus-blue);
}
.block-header .style-four .header-slider-navigation .dots .slick-dots li button {
  height: 3px;
  width: 22px;
  padding: 0px;
  border-radius: 0px;
  background: var(--color-light-grey);
}
.block-header .style-four .header-slider-navigation .dots .slick-dots li button::before {
  content: none;
  height: 3px;
  width: 22px;
}
.block-header .style-five.medium {
  height: 450px;
}
@media (max-width: 1024px) {
  .block-header .style-five.medium {
    height: 350px;
  }
}
.block-header .style-five video {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .block-header .style-five video#heroVideo {
    display: none;
  }
}
.block-header .style-five video#mobileHeroVideo {
  display: none;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .block-header .style-five video#mobileHeroVideo {
    display: block;
  }
}
.block-header .style-five .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-header .style-five .overlay .content {
  max-width: 60%;
  padding-left: 200px;
}
@media (max-width: 1536px) {
  .block-header .style-five .overlay .content {
    max-width: 80%;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-five .overlay .content {
    max-width: 100%;
    padding: 0 20px;
  }
}
.block-header .style-five .overlay .content h1, .block-header .style-five .overlay .content h2, .block-header .style-five .overlay .content h3, .block-header .style-five .overlay .content h4, .block-header .style-five .overlay .content h5, .block-header .style-five .overlay .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-five .overlay .content h1, .block-header .style-five .overlay .content h2, .block-header .style-five .overlay .content h3, .block-header .style-five .overlay .content h4, .block-header .style-five .overlay .content h5, .block-header .style-five .overlay .content h6 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;
  }
}
.block-header .style-five .overlay .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-five .overlay .content p {
    margin-bottom: 15px;
  }
}
.block-header .style-five .overlay .content .button {
  min-width: 290px;
  max-width: 300px;
}
@media (max-width: 1024px) {
  .block-header .style-five .overlay .content .button {
    max-width: 100%;
    justify-content: center;
    padding: 17px 0px;
    display: flex;
    position: relative;
  }
  .block-header .style-five .overlay .content .button .icon {
    position: absolute;
    right: 20px;
  }
}

.block-breadcrumb {
  padding: 15px 50px;
}
@media (max-width: 1024px) {
  .block-breadcrumb {
    padding: 15px 20px;
  }
}
.block-breadcrumb nav.rank-math-breadcrumb p span {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--focus-blue);
  font-family: var(--font-elza-paragraph);
}
@media (max-width: 1024px) {
  .block-breadcrumb nav.rank-math-breadcrumb p span {
    font-size: 12px;
    line-height: 18px;
  }
}
.block-breadcrumb nav.rank-math-breadcrumb p a {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--focucs-grey);
  text-decoration: underline;
  font-family: var(--font-elza-paragraph);
}
@media (max-width: 1024px) {
  .block-breadcrumb nav.rank-math-breadcrumb p a {
    font-size: 12px;
    line-height: 18px;
  }
}

.post-type-archive-case_studies .nav-container.transparent {
  position: relative;
  background-color: var(--focus-grey) !important;
}
.post-type-archive-case_studies .block-case-studies .filters {
  display: flex;
  justify-content: center;
  margin: 25px auto;
  flex-wrap: wrap;
  max-width: 55%;
}
@media (max-width: 1536px) {
  .post-type-archive-case_studies .block-case-studies .filters {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .post-type-archive-case_studies .block-case-studies .filters {
    justify-content: flex-start;
    margin: 25px 20px;
    max-width: 100%;
  }
}
.post-type-archive-case_studies .block-case-studies .filters button {
  margin: 10px 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--focus-grey);
  color: var(--focus-grey);
  border-radius: 200px;
  padding: 10px 30px;
  background: transparent;
  text-decoration: none;
}
@media (max-width: 768px) {
  .post-type-archive-case_studies .block-case-studies .filters button {
    margin: 10px 7px;
    padding: 10px 20px;
    font-size: 10px;
  }
}
.post-type-archive-case_studies .block-case-studies .filters button[data-name=focuspod] {
  text-transform: none;
}
.post-type-archive-case_studies .block-case-studies .filters button[data-name=digisuite] {
  text-transform: none;
}
.post-type-archive-case_studies .block-case-studies .filters button:hover {
  background: var(--focus-blue);
  border: 1px solid var(--focus-blue);
  color: var(--color-white);
}
.post-type-archive-case_studies .block-case-studies .filters button.active {
  background: var(--focus-blue);
  border: 1px solid var(--focus-blue);
  color: var(--color-white);
}
.post-type-archive-case_studies .block-case-studies .post {
  padding: 1rem 30px 60px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .post-type-archive-case_studies .block-case-studies .post {
    padding: 15px 15px 30px;
  }
}
@media (max-width: 1024px) {
  .post-type-archive-case_studies .block-case-studies .post {
    padding: 15px 20px;
    width: 100%;
  }
}
.post-type-archive-case_studies .block-case-studies .post a {
  text-decoration: none;
}
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper {
  height: 541px;
  overflow: hidden;
  display: block;
}
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all;
}
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper img:hover {
  transform: scale(1.1);
  transition: 0.4s all;
}
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .featured-video,
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .embed-container {
  height: 100%;
  overflow: hidden;
}
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .featured-video video,
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .featured-video iframe,
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .embed-container video,
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .embed-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all;
}
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .featured-video video:hover,
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .featured-video iframe:hover,
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .embed-container video:hover,
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .embed-container iframe:hover {
  transform: scale(1.1);
  transition: 0.4s all;
}
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .featured-video iframe:hover,
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper .embed-container iframe:hover {
  transform: none;
}
.post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper iframe:hover {
  transform: none;
}
@media (max-width: 1024px) {
  .post-type-archive-case_studies .block-case-studies .post a.featured-image-wrapper {
    height: 337px;
  }
}
.post-type-archive-case_studies .block-case-studies .post a h2 {
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}
@media (max-width: 1024px) {
  .post-type-archive-case_studies .block-case-studies .post a h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
.post-type-archive-case_studies .block-case-studies .post a p.categories {
  color: var(--color-black);
  font-family: var(--font-baskerville-paragraph);
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 1024px) {
  .post-type-archive-case_studies .block-case-studies .post a p.categories {
    font-size: 18px;
    line-height: 22px;
  }
}
.post-type-archive-case_studies .block-case-studies .pages {
  display: none;
}
.post-type-archive-case_studies .block-case-studies .btn__wrapper {
  text-align: right;
  padding: 103px 50px 107px;
}
@media (max-width: 1024px) {
  .post-type-archive-case_studies .block-case-studies .btn__wrapper {
    padding: 40px 20px;
  }
}
.post-type-archive-case_studies .block-case-studies .btn__wrapper .button {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.post-type-archive-case_studies .block-case-studies .btn__wrapper .button:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .post-type-archive-case_studies .block-case-studies .btn__wrapper .button {
    margin: 0;
    width: 100%;
    justify-content: center;
    position: relative;
    padding: 17px 0px;
  }
  .post-type-archive-case_studies .block-case-studies .btn__wrapper .button:hover {
    background-color: var(--focus-grey) !important;
  }
  .post-type-archive-case_studies .block-case-studies .btn__wrapper .button svg {
    position: absolute;
    right: 20px;
  }
}

.block-header {
  background-color: var(--color-black);
  width: 100%;
}
.block-header.white h1, .block-header.white h2, .block-header.white h3, .block-header.white h4, .block-header.white h5, .block-header.white h6, .block-header.white p {
  color: var(--focus-grey) !important;
}
.block-header.white .button-white {
  border: 1px solid var(--focus-blue) !important;
}
.block-header.light-grey h1, .block-header.light-grey h2, .block-header.light-grey h3, .block-header.light-grey h4, .block-header.light-grey h5, .block-header.light-grey h6, .block-header.light-grey p {
  color: var(--focus-grey) !important;
}
.block-header.blue .button-white:hover {
  border: 1px solid var(--color-white) !important;
}
.block-header .style-one .image {
  width: 100%;
  position: relative;
}
.block-header .style-one .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-header .style-one .image .next-article-button {
  position: absolute;
  bottom: 45px;
  right: 0;
}
@media (max-width: 1280px) {
  .block-header .style-one .image .next-article-button {
    bottom: 15px;
  }
}
.block-header .style-one .image .next-article-button a {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  align-items: flex-start;
  background-color: var(--focus-blue);
  padding: 20px 35px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
@media (max-width: 1280px) {
  .block-header .style-one .image .next-article-button a {
    padding: 15px 25px;
  }
}
.block-header .style-one .image .next-article-button a:hover {
  background-color: var(--color-white);
  cursor: pointer;
  color: var(--focus-blue);
  text-decoration: none;
}
.block-header .style-one .image .next-article-button a:hover svg path {
  stroke: var(--focus-blue);
}
.block-header .style-one .image .next-article-button a svg {
  margin-left: 15px;
}
.block-header .style-one .image img {
  max-width: 100%;
  width: 100%;
  max-height: 800px;
  min-height: 730px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 1280px) {
  .block-header .style-one .image img {
    height: 100%;
    min-height: 630px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-one .image img {
    max-height: 430px;
  }
}
.block-header .style-one .image img.desktop-header-image {
  display: block;
}
@media (max-width: 768px) {
  .block-header .style-one .image img.desktop-header-image {
    display: none;
  }
}
.block-header .style-one .image img.mobile-header-image {
  display: none;
}
@media (max-width: 768px) {
  .block-header .style-one .image img.mobile-header-image {
    display: block;
  }
}
.block-header .style-one .content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 100px;
}
@media (max-width: 1590px) {
  .block-header .style-one .content {
    padding: 0 55px;
  }
}
@media (max-width: 1536px) {
  .block-header .style-one .content {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-one .content {
    padding: 130px 20px 45px;
  }
}
@media (max-width: 768px) {
  .block-header .style-one .content {
    padding: 100px 20px 45px;
  }
}
.block-header .style-one .content h1, .block-header .style-one .content h2, .block-header .style-one .content h3, .block-header .style-one .content h4, .block-header .style-one .content h5, .block-header .style-one .content h6,
.block-header .style-one .content p {
  color: var(--color-white);
}
.block-header .style-one .content h1, .block-header .style-one .content h2, .block-header .style-one .content h3, .block-header .style-one .content h4, .block-header .style-one .content h5, .block-header .style-one .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
}
@media (max-width: 1280px) {
  .block-header .style-one .content h1, .block-header .style-one .content h2, .block-header .style-one .content h3, .block-header .style-one .content h4, .block-header .style-one .content h5, .block-header .style-one .content h6 {
    font-size: 30px;
    line-height: 31px;
  }
}
.block-header .style-one .content .categories {
  background-color: var(--focus-blue);
  padding: 10px 20px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-family: var(--font-baskerville-paragraph);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 0px;
}
.block-header .style-one .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.block-header .style-one .content p.date {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
}
.block-header .style-two {
  padding: 25px 0 50px;
  align-items: center;
}
@media (max-width: 1024px) {
  .block-header .style-two {
    padding: 30px 0;
  }
}
.block-header .style-two::after {
  content: "";
  background-image: url("/wp-content/themes/wp-theme-focus-agency/public/images/arrows.gif");
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 167px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1280px) {
  .block-header .style-two::after {
    display: none;
  }
}
.block-header .style-two .content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 200px;
}
@media (max-width: 1536px) {
  .block-header .style-two .content {
    padding: 0 50px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-two .content {
    padding: 20px;
  }
}
.block-header .style-two .content h1, .block-header .style-two .content h2, .block-header .style-two .content h3, .block-header .style-two .content h4, .block-header .style-two .content h5, .block-header .style-two .content h6,
.block-header .style-two .content p {
  color: var(--color-white);
}
.block-header .style-two .content h1, .block-header .style-two .content h2, .block-header .style-two .content h3, .block-header .style-two .content h4, .block-header .style-two .content h5, .block-header .style-two .content h6 {
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  font-style: normal;
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .block-header .style-two .content h1, .block-header .style-two .content h2, .block-header .style-two .content h3, .block-header .style-two .content h4, .block-header .style-two .content h5, .block-header .style-two .content h6 {
    padding-right: 85px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-two .content h1, .block-header .style-two .content h2, .block-header .style-two .content h3, .block-header .style-two .content h4, .block-header .style-two .content h5, .block-header .style-two .content h6 {
    font-size: 40px;
    line-height: 42px;
  }
}
.block-header .style-two .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  font-style: normal;
}
.block-header .style-two .content .button {
  max-width: 300px;
  border: 1px solid var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-two .content .button {
    max-width: 100%;
    justify-content: center;
    padding: 17px 0px;
    display: flex;
    position: relative;
  }
  .block-header .style-two .content .button .icon {
    position: absolute;
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-two .image {
    position: absolute;
    top: 50px;
    right: 15px;
  }
  .block-header .style-two .image svg {
    max-width: 50px;
    height: auto;
  }
}
.block-header .style-three.small {
  height: 300px;
  min-height: 300px;
}
@media (max-width: 1024px) {
  .block-header .style-three.small {
    height: 250px;
  }
}
.block-header .style-three.medium {
  height: 450px;
  min-height: 450px;
}
@media (max-width: 1024px) {
  .block-header .style-three.medium {
    height: 350px;
  }
}
.block-header .style-three.full {
  height: 800px;
  min-height: 800px;
}
@media (max-width: 1024px) {
  .block-header .style-three.full {
    height: 600px;
  }
}
.block-header .style-three .background-image {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 460px;
}
.block-header .style-three .background-image.desktop-header-image {
  display: block;
}
@media (max-width: 768px) {
  .block-header .style-three .background-image.desktop-header-image {
    display: none;
  }
}
.block-header .style-three .background-image.mobile-header-image {
  display: none;
}
@media (max-width: 768px) {
  .block-header .style-three .background-image.mobile-header-image {
    display: block;
  }
}
.block-header .style-three .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-header .style-three .overlay .content {
  max-width: 60%;
  padding-left: 200px;
}
@media (max-width: 1536px) {
  .block-header .style-three .overlay .content {
    max-width: 80%;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-three .overlay .content {
    max-width: 100%;
    padding: 0 20px;
  }
}
.block-header .style-three .overlay .content h1, .block-header .style-three .overlay .content h2, .block-header .style-three .overlay .content h3, .block-header .style-three .overlay .content h4, .block-header .style-three .overlay .content h5, .block-header .style-three .overlay .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-three .overlay .content h1, .block-header .style-three .overlay .content h2, .block-header .style-three .overlay .content h3, .block-header .style-three .overlay .content h4, .block-header .style-three .overlay .content h5, .block-header .style-three .overlay .content h6 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;
  }
}
.block-header .style-three .overlay .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-three .overlay .content p {
    margin-bottom: 15px;
  }
}
.block-header .style-three .overlay .content .button {
  min-width: 290px;
  max-width: 300px;
}
@media (max-width: 1024px) {
  .block-header .style-three .overlay .content .button {
    max-width: 100%;
    justify-content: center;
    padding: 17px 0px;
    display: flex;
    position: relative;
  }
  .block-header .style-three .overlay .content .button .icon {
    position: absolute;
    right: 20px;
  }
}
.block-header .style-four {
  background: var(--color-white);
}
.block-header .style-four .header-slider {
  margin-bottom: 0;
}
.block-header .style-four .header-slider .background-image {
  width: 100%;
  max-width: 100%;
  height: 800px;
  object-fit: cover;
}
.block-header .style-four .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-header .style-four .overlay .content {
  max-width: 45%;
  padding-left: 200px;
}
@media (max-width: 1536px) {
  .block-header .style-four .overlay .content {
    max-width: 80%;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-four .overlay .content {
    max-width: 100%;
    padding: 0 20px;
  }
}
.block-header .style-four .overlay .content h1, .block-header .style-four .overlay .content h2, .block-header .style-four .overlay .content h3, .block-header .style-four .overlay .content h4, .block-header .style-four .overlay .content h5, .block-header .style-four .overlay .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-four .overlay .content h1, .block-header .style-four .overlay .content h2, .block-header .style-four .overlay .content h3, .block-header .style-four .overlay .content h4, .block-header .style-four .overlay .content h5, .block-header .style-four .overlay .content h6 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;
  }
}
.block-header .style-four .overlay .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-four .overlay .content p {
    margin-bottom: 15px;
  }
}
.block-header .style-four .overlay .content .button {
  width: -moz-fit-content;
  width: fit-content;
}
.block-header .style-four .header-slider-navigation {
  width: 100%;
  max-width: 300px;
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
  bottom: -65px;
}
.block-header .style-four .header-slider-navigation.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .block-header .style-four .header-slider-navigation {
    display: none;
  }
  .block-header .style-four .header-slider-navigation.mobile {
    display: block;
  }
}
.block-header .style-four .header-slider-navigation .slick-arrow {
  padding: 0;
  line-height: normal;
  font-size: inherit;
  display: block;
  border-radius: 0px;
  align-content: unset;
  top: 0;
  transform: none;
  width: 47px;
  height: 46px;
  position: relative;
  margin: 0 5px;
}
.block-header .style-four .header-slider-navigation .slick-arrow.slick-prev {
  left: 0px;
}
.block-header .style-four .header-slider-navigation .slick-arrow.slick-prev::before {
  content: url("data:image/svg+xml,%3Csvg width='47' height='46' viewBox='0 0 47 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_210_1926)'%3E%3Cpath d='M23.4993 0C10.5432 0 0 10.3189 0 22.9993C0 35.6798 10.5432 45.9987 23.4993 45.9987C36.4554 45.9987 46.9986 35.6825 46.9986 22.9993C46.9986 10.3162 36.4568 0 23.4993 0ZM23.4993 42.1775C12.6973 42.1775 3.9056 33.5755 3.9056 23.0007C3.9056 12.4258 12.6973 3.82518 23.4993 3.82518C34.3013 3.82518 43.093 12.4271 43.093 22.9993C43.093 33.5715 34.3013 42.1762 23.4993 42.1762V42.1775Z' fill='%232264FF'/%3E%3Cmask id='mask0_210_1926' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='47' height='46'%3E%3Cellipse cx='23.5' cy='23' rx='23.5' ry='23' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_210_1926)'%3E%3Cpath d='M28.8063 14.8359L18.1934 22.754L28.8063 30.672' stroke='%232264FF' stroke-width='5'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_210_1926'%3E%3Crect width='47' height='46' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.block-header .style-four .header-slider-navigation .slick-arrow.slick-next {
  right: 0px;
}
.block-header .style-four .header-slider-navigation .slick-arrow.slick-next::before {
  content: url("data:image/svg+xml,%3Csvg width='47' height='46' viewBox='0 0 47 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_210_1927)'%3E%3Cpath d='M23.5007 46C36.4568 46 47 35.6811 47 23.0007C47 10.3202 36.4568 0.00133041 23.5007 0.00132927C10.5446 0.00132814 0.00136497 10.3175 0.00136386 23.0007C0.00136275 35.6838 10.5432 46 23.5007 46ZM23.5007 3.82249C34.3027 3.82249 43.0944 12.4245 43.0944 22.9993C43.0944 33.5742 34.3027 42.1748 23.5007 42.1748C12.6987 42.1748 3.90696 33.5728 3.90696 23.0007C3.90696 12.4285 12.6987 3.82383 23.5007 3.82383L23.5007 3.82249Z' fill='%232264FF'/%3E%3Cmask id='mask0_210_1927' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='47' height='46'%3E%3Cellipse cx='23.5' cy='23' rx='23.5' ry='23' transform='rotate(-180 23.5 23)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_210_1927)'%3E%3Cpath d='M18.1937 31.1641L28.8066 23.246L18.1937 15.328' stroke='%232264FF' stroke-width='5'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_210_1927'%3E%3Crect width='47' height='46' fill='white' transform='translate(47 46) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.block-header .style-four .header-slider-navigation .dots .slick-dots {
  position: relative;
  bottom: 0;
}
.block-header .style-four .header-slider-navigation .dots .slick-dots li {
  height: 3px;
  width: 22px;
}
.block-header .style-four .header-slider-navigation .dots .slick-dots li.slick-active button {
  background: var(--focus-blue);
}
.block-header .style-four .header-slider-navigation .dots .slick-dots li button {
  height: 3px;
  width: 22px;
  padding: 0px;
  border-radius: 0px;
  background: var(--color-light-grey);
}
.block-header .style-four .header-slider-navigation .dots .slick-dots li button::before {
  content: none;
  height: 3px;
  width: 22px;
}
.block-header .style-five.medium {
  height: 450px;
}
@media (max-width: 1024px) {
  .block-header .style-five.medium {
    height: 350px;
  }
}
.block-header .style-five video {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .block-header .style-five video#heroVideo {
    display: none;
  }
}
.block-header .style-five video#mobileHeroVideo {
  display: none;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .block-header .style-five video#mobileHeroVideo {
    display: block;
  }
}
.block-header .style-five .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-header .style-five .overlay .content {
  max-width: 60%;
  padding-left: 200px;
}
@media (max-width: 1536px) {
  .block-header .style-five .overlay .content {
    max-width: 80%;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  .block-header .style-five .overlay .content {
    max-width: 100%;
    padding: 0 20px;
  }
}
.block-header .style-five .overlay .content h1, .block-header .style-five .overlay .content h2, .block-header .style-five .overlay .content h3, .block-header .style-five .overlay .content h4, .block-header .style-five .overlay .content h5, .block-header .style-five .overlay .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-five .overlay .content h1, .block-header .style-five .overlay .content h2, .block-header .style-five .overlay .content h3, .block-header .style-five .overlay .content h4, .block-header .style-five .overlay .content h5, .block-header .style-five .overlay .content h6 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;
  }
}
.block-header .style-five .overlay .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .block-header .style-five .overlay .content p {
    margin-bottom: 15px;
  }
}
.block-header .style-five .overlay .content .button {
  min-width: 290px;
  max-width: 300px;
}
@media (max-width: 1024px) {
  .block-header .style-five .overlay .content .button {
    max-width: 100%;
    justify-content: center;
    padding: 17px 0px;
    display: flex;
    position: relative;
  }
  .block-header .style-five .overlay .content .button .icon {
    position: absolute;
    right: 20px;
  }
}

.block-breadcrumb {
  padding: 15px 50px;
}
@media (max-width: 1024px) {
  .block-breadcrumb {
    padding: 15px 20px;
  }
}
.block-breadcrumb nav.rank-math-breadcrumb p span {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--focus-blue);
  font-family: var(--font-elza-paragraph);
}
@media (max-width: 1024px) {
  .block-breadcrumb nav.rank-math-breadcrumb p span {
    font-size: 12px;
    line-height: 18px;
  }
}
.block-breadcrumb nav.rank-math-breadcrumb p a {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--focucs-grey);
  text-decoration: underline;
  font-family: var(--font-elza-paragraph);
}
@media (max-width: 1024px) {
  .block-breadcrumb nav.rank-math-breadcrumb p a {
    font-size: 12px;
    line-height: 18px;
  }
}

.single-services .custom-submenu {
  padding: 2rem;
  background-color: var(--focus-blue);
}
@media (max-width: 1280px) {
  .single-services .custom-submenu {
    padding: 1rem;
  }
}
.single-services .custom-submenu .select-wrapper {
  position: relative;
}
@media (min-width: 1024px) {
  .single-services .custom-submenu .select-wrapper {
    display: none;
  }
}
.single-services .custom-submenu .select-wrapper.active::before {
  transform: translateY(-50%) rotate(-90deg);
  right: 0;
  transition: 0.2s all;
}
.single-services .custom-submenu .select-wrapper::before {
  content: url("data:image/svg+xml,%3Csvg class='menu-icon rotate-icon' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 16.9 16.2' width='15' height='15' style='enable-background:new 0 0 16.9 16.2;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:none;stroke:%23FFFFFF;stroke-width:3;stroke-linecap:square;stroke-linejoin:round;%7D%3C/style%3E%3Cpath class='st0' d='M8.8,14.1l6-6 M1.5,8.1h13.3l-6-6'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  display: block;
  transition: 0.2s all;
}
.single-services .custom-submenu .select-wrapper .custom-submenu-mobile {
  background: transparent;
  color: var(--color-white);
  border: none;
  border-bottom: 2px solid var(--color-white);
  padding: 5px;
  position: relative;
  font-weight: var(--font-weight-main-level);
  font-family: var(--font-elza-paragraph);
  text-transform: uppercase;
}
.single-services .custom-submenu .select-wrapper .custom-submenu-mobile:focus-visible {
  outline: none;
}
.single-services .custom-submenu .select-wrapper .custom-submenu-mobile option {
  color: var(--focus-grey);
}
.single-services .custom-submenu .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.single-services .custom-submenu .menu-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1024px) {
  .single-services .custom-submenu .menu-wrapper {
    display: none;
  }
}
.single-services .custom-submenu .menu-wrapper .menu-item {
  padding: 0 20px;
}
.single-services .custom-submenu .menu-wrapper .menu-item a {
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  font-size: var(--font-size-main-level);
  font-weight: var(--font-weight-main-level);
  font-family: var(--font-elza-paragraph);
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .single-services .custom-submenu .menu-wrapper .menu-item a {
    font-size: 16px;
    border: none;
    padding: 0;
  }
}
.single-services .custom-submenu .menu-wrapper .menu-item a:hover::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml, %3Csvg class='icon' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 16.9 16.2' width='15' height='15' style='enable-background:new 0 0 16.9 16.2;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st1%7Bfill:none;stroke:%23fff;stroke-width:3;stroke-linecap:square;stroke-linejoin:round;%7D%3C/style%3E%3Cpath class='st1' d='M8.8,14.1l6-6 M1.5,8.1h13.3l-6-6'/%3E%3C/svg%3E");
  position: absolute;
  top: 40%;
  right: -25px;
  transform: translateY(-50%);
}

.post-type-archive-services .block-header .style-two::after {
  content: "";
  background-image: url("/wp-content/themes/wp-theme-focus-agency/public/images/arrows.gif");
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 167px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1280px) {
  .post-type-archive-services .block-header .style-two::after {
    display: none;
  }
}
.post-type-archive-services .block-services .filters {
  display: flex;
  justify-content: center;
  margin: 25px auto;
  flex-wrap: wrap;
  max-width: 55%;
}
@media (max-width: 1536px) {
  .post-type-archive-services .block-services .filters {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .post-type-archive-services .block-services .filters {
    justify-content: flex-start;
    margin: 25px 20px;
    max-width: 100%;
  }
}
.post-type-archive-services .block-services .filters .service-filter-button {
  margin: 10px 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--focus-grey);
  color: var(--focus-grey);
  border-radius: 200px;
  padding: 10px 30px;
  background: transparent;
  text-decoration: none;
}
@media (max-width: 768px) {
  .post-type-archive-services .block-services .filters .service-filter-button {
    margin: 10px 7px;
    padding: 10px 20px;
    font-size: 10px;
  }
}
.post-type-archive-services .block-services .filters .service-filter-button[data-name=focuspod] {
  text-transform: none;
}
.post-type-archive-services .block-services .filters .service-filter-button[data-name=digisuite] {
  text-transform: none;
}
.post-type-archive-services .block-services .filters .service-filter-button:hover {
  background: var(--focus-blue);
  border: 1px solid var(--focus-blue);
  color: var(--color-white);
  cursor: pointer;
}
.post-type-archive-services .block-services .filters .service-filter-button.active {
  background: var(--focus-blue);
  border: 1px solid var(--focus-blue);
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .post-type-archive-services .block-services .services {
    justify-content: center;
  }
}
.post-type-archive-services .block-services .services .post {
  padding: 1rem 30px 60px;
}
@media (max-width: 1280px) {
  .post-type-archive-services .block-services .services .post {
    padding: 15px 15px 30px;
  }
}
@media (max-width: 1024px) {
  .post-type-archive-services .block-services .services .post {
    padding: 15px 20px;
    width: 100%;
  }
}
.post-type-archive-services .block-services .services .post .image-wrapper {
  position: relative;
  overflow: hidden;
}
.post-type-archive-services .block-services .services .post .image-wrapper:hover .overlay-background {
  background: linear-gradient(180deg, rgba(34, 100, 255, 0) 0%, #2264FF 76.04%);
  height: 100%;
  transition: 0.4s height;
}
.post-type-archive-services .block-services .services .post .image-wrapper:hover .overlay {
  height: auto;
}
.post-type-archive-services .block-services .services .post .image-wrapper:hover .overlay .heading-animation {
  animation: slideUp 0.6s forwards;
}
.post-type-archive-services .block-services .services .post .image-wrapper:hover .overlay p {
  display: block;
  animation: slideIn 0.5s forwards;
}
.post-type-archive-services .block-services .services .post .image-wrapper:hover .overlay .button {
  display: flex;
  animation: slideInFar 0.5s forwards;
}
.post-type-archive-services .block-services .services .post .image-wrapper:hover .overlay .button .icon {
  animation: none !important;
}
.post-type-archive-services .block-services .services .post .image-wrapper:not(:hover) .heading-animation {
  animation: slideDown 0.6s forwards;
}
.post-type-archive-services .block-services .services .post .image-wrapper:not(:hover) p {
  display: block;
  animation: slideOut 0.5s forwards;
}
.post-type-archive-services .block-services .services .post .image-wrapper:not(:hover) .button {
  display: flex;
  animation: slideOutFar 0.5s forwards;
}
.post-type-archive-services .block-services .services .post .image-wrapper:not(:hover) .button .icon {
  animation: none !important;
}
.post-type-archive-services .block-services .services .post .image-wrapper .featured-image {
  width: 100%;
  height: 541px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .post-type-archive-services .block-services .services .post .image-wrapper .featured-image {
    height: 380px;
  }
}
.post-type-archive-services .block-services .services .post .image-wrapper .overlay-background {
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.4s height;
}
.post-type-archive-services .block-services .services .post .image-wrapper .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.2s all;
  padding-left: 50px;
  padding-bottom: 30px;
}
@media (max-width: 1280px) {
  .post-type-archive-services .block-services .services .post .image-wrapper .overlay {
    padding-left: 30px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .post-type-archive-services .block-services .services .post .image-wrapper .overlay {
    padding-left: 20px;
  }
}
.post-type-archive-services .block-services .services .post .image-wrapper .overlay .heading-animation {
  animation: slideDown 0.6s forwards;
  text-decoration: none;
}
.post-type-archive-services .block-services .services .post .image-wrapper .overlay .heading-animation h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-white);
  margin: 0;
  position: relative;
}
@media (max-width: 1024px) {
  .post-type-archive-services .block-services .services .post .image-wrapper .overlay .heading-animation h2 {
    font-size: 26px;
    line-height: 30px;
  }
}
.post-type-archive-services .block-services .services .post .image-wrapper .overlay p {
  display: none;
  width: 50%;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--color-white);
  margin: 15px 0;
}
@media (max-width: 1280px) {
  .post-type-archive-services .block-services .services .post .image-wrapper .overlay p {
    width: 65%;
  }
}
@media (max-width: 1024px) {
  .post-type-archive-services .block-services .services .post .image-wrapper .overlay p {
    width: 100%;
    margin: 10px 0px;
    font-size: 14px;
    line-height: 18px;
    padding-right: 15px;
  }
}
.post-type-archive-services .block-services .services .post .image-wrapper .overlay .button {
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-white);
  background-color: transparent !important;
  padding: 0px 0px 10px;
}
.post-type-archive-services .block-services .services .post .image-wrapper .overlay .button svg {
  margin-left: 10px;
}

@keyframes slideUp {
  0% {
    transform: translateY(750%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(-5%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slideInFar {
  0% {
    transform: translateX(-20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: none;
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(-5%);
    opacity: 0;
  }
}
@keyframes slideOutFar {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(-20%);
    opacity: 0;
  }
}
.block-accordion.grey h3 {
  color: var(--color-white) !important;
}
.block-accordion.light-grey .row-heading {
  border-top: 1px solid var(--focus-grey);
  border-bottom: 1px solid var(--focus-grey);
}
.block-accordion.blue h3 {
  color: var(--color-white) !important;
}
.block-accordion.blue .row-heading.active::after {
  content: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.59733 9.19665L8.91797 16.5173M8.91797 16.5173L16.6961 8.73911M8.91797 16.5173V0.960938' stroke='%23ffffff' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion.blue .row-heading:hover::after {
  content: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.59733 9.19665L8.91797 16.5173M8.91797 16.5173L16.6961 8.73911M8.91797 16.5173V0.960938' stroke='%23ffffff' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion.blue .row-heading::after {
  content: url("data:image/svg+xml,%3Csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.75057 13H12.1035M12.1035 13V2M12.1035 13L1.10352 2' stroke='%23ffffff' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion .row-heading {
  border-top: 1px solid var(--color-light-grey);
  border-bottom: 1px solid var(--color-light-grey);
  position: relative;
}
.block-accordion .row-heading:hover {
  cursor: pointer;
}
.block-accordion .row-heading.active {
  border-bottom: none;
}
.block-accordion .row-heading.active::after {
  content: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.59733 9.19665L8.91797 16.5173M8.91797 16.5173L16.6961 8.73911M8.91797 16.5173V0.960938' stroke='%232264FF' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion .row-heading:hover::after {
  content: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.59733 9.19665L8.91797 16.5173M8.91797 16.5173L16.6961 8.73911M8.91797 16.5173V0.960938' stroke='%232264FF' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion .row-heading::after {
  content: url("data:image/svg+xml,%3Csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.75057 13H12.1035M12.1035 13V2M12.1035 13L1.10352 2' stroke='%232264FF' stroke-width='3'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 20px;
}
.block-accordion .row-heading h3 {
  padding: 20px 0;
  margin: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  font-family: var(--font-baskerville-paragraph);
  color: var(--focus-grey);
}
.block-accordion .row-content {
  display: none;
  padding: 20px 0 60px;
}
.block-accordion .row-content.active {
  display: block;
}
.block-accordion .row-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.single-vacancies .container {
  padding: 28px 0rem 0;
  margin: 0 110px;
}
@media (max-width: 1590px) {
  .single-vacancies .container {
    margin: 0 120px;
  }
}
@media (max-width: 1536px) {
  .single-vacancies .container {
    margin: 0 50px;
  }
}
@media (max-width: 1024px) {
  .single-vacancies .container {
    padding: 30px 20px;
    margin: 0;
  }
}
.single-vacancies .block-vacancy-header {
  background-color: var(--focus-grey);
  padding-bottom: 60px;
}
.single-vacancies .block-vacancy-header h1 {
  color: var(--color-white);
  margin-bottom: 0;
}
.single-vacancies .block-vacancy-header .back-button {
  max-width: 220px;
}
.single-vacancies .block-vacancy-header .back-button .button-wrapper a {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  align-items: flex-start;
  background-color: var(--focus-blue);
  padding: 20px 55px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.single-vacancies .block-vacancy-header .back-button .button-wrapper a:hover {
  background-color: var(--color-white);
  cursor: pointer;
  color: var(--focus-blue);
  text-decoration: none;
}
.single-vacancies .block-vacancy-header .back-button .button-wrapper a:hover svg path {
  stroke: var(--focus-blue);
}
.single-vacancies .block-vacancy-header .back-button .button-wrapper a svg {
  margin-left: 15px;
}
.single-vacancies .share-box {
  background-color: var(--focus-blue);
  min-width: 565px;
  position: fixed;
  right: 0;
  top: 30%;
  z-index: 1;
  padding: 35px 50px 45px;
}
@media (max-width: 1590px) {
  .single-vacancies .share-box {
    min-width: auto;
  }
}
@media (max-width: 1280px) {
  .single-vacancies .share-box {
    position: relative;
    padding: 30px 20px;
  }
}
.single-vacancies .share-box h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  color: var(--color-white);
  margin-bottom: 23px;
}
@media (max-width: 1024px) {
  .single-vacancies .share-box h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
.single-vacancies .share-box .borders {
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  padding: 10px 0px;
}
.single-vacancies .share-box .borders a {
  display: flex;
  align-items: flex-end;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--color-white);
}
.single-vacancies .share-box .borders a svg {
  margin-right: 10px;
}
.single-vacancies .share-box .button {
  margin-top: 30px;
  max-width: 290px;
  position: relative;
}
.single-vacancies .share-box .button:hover {
  background-color: var(--color-white) !important;
  color: var(--focus-blue);
}
.single-vacancies .share-box .button:hover svg path {
  stroke: var(--focus-blue);
}
.single-vacancies .share-box .button svg {
  position: absolute;
  right: 20px;
}
.single-vacancies ul.job-overview {
  list-style-type: none;
  padding-left: 0;
  font-size: 16px;
  font-family: var(--font-elza-paragraph);
}
.single-vacancies ul.job-overview li {
  margin-bottom: 15px;
  color: var(--color-paragraph);
  line-height: var(--line-height-paragraph);
  font-family: var(--font-elza-paragraph);
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-paragraph);
}
.single-vacancies ul.responsibilities-list {
  font-size: 16px;
  font-family: var(--font-elza-paragraph);
}
.single-vacancies ul.responsibilities-list li {
  margin-bottom: 15px;
  color: var(--color-paragraph);
  line-height: var(--line-height-paragraph);
  font-family: var(--font-elza-paragraph);
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-paragraph);
}
.single-vacancies .before-apply .before-list {
  margin-top: 0;
  list-style-type: none;
}
.single-vacancies .before-apply .before-list li {
  margin-bottom: 28px;
  font-family: var(--font-baskerville);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.single-vacancies .before-apply .before-list li svg {
  margin-right: 30px;
  min-width: 30px;
  max-width: 30px;
}
.single-vacancies .block-form {
  background-color: #E6E8E8;
  padding: 50px 0 90px;
}
.single-vacancies .block-form .form-heading h1, .single-vacancies .block-form .form-heading h2, .single-vacancies .block-form .form-heading h3, .single-vacancies .block-form .form-heading h4, .single-vacancies .block-form .form-heading h5, .single-vacancies .block-form .form-heading h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  margin: 0 0 50px;
}
@media (max-width: 1024px) {
  .single-vacancies .block-form .form-heading h1, .single-vacancies .block-form .form-heading h2, .single-vacancies .block-form .form-heading h3, .single-vacancies .block-form .form-heading h4, .single-vacancies .block-form .form-heading h5, .single-vacancies .block-form .form-heading h6 {
    margin: 30px 0;
  }
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield {
  margin-bottom: 50px;
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-fileupload .gform_fileupload_rules,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield.gfield--type-fileupload .gform_fileupload_rules {
  display: none;
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-fileupload:last-of-type .gform_fileupload_rules,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield.gfield--type-fileupload:last-of-type .gform_fileupload_rules {
  display: block;
  content: "Max 20mb/PDF";
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 20px;
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--focus-blue);
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input {
  background: transparent;
  border: none;
  box-shadow: 0px 1px 0px 0px rgba(51, 51, 51, 0.2);
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0 0 5px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--focus-grey);
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input:focus-visible,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input:focus-visible {
  box-shadow: 0px 1px 0px 0px rgb(45, 102, 255);
  outline: none;
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea {
  background: transparent;
  box-shadow: 0px 0px 0px 2px rgba(51, 51, 51, 0.2);
  -webkit-appearance: none;
  border: none;
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea:focus-visible,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea:focus-visible {
  box-shadow: 0px 0px 0px 2px rgb(45, 102, 255);
  outline: none;
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload input {
  box-shadow: none;
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent input {
  box-shadow: none;
  border: 1px solid var(--focus-grey);
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label {
  padding-left: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a {
  text-decoration: underline;
  color: var(--focus-blue);
}
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.single-vacancies .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.single-vacancies .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk {
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--focus-blue);
}
.single-vacancies .block-form .gform_wrapper form .gform_footer {
  justify-content: center;
}
.single-vacancies .block-form .gform_wrapper form .gform_footer input {
  background: var(--focus-grey);
  color: var(--color-white);
  border: 1px solid var(--focus-grey);
}
.single-vacancies .block-form .gform_wrapper form .gform_footer input:hover {
  background: var(--focus-blue);
  cursor: pointer;
}

.block-accordion.grey h3 {
  color: var(--color-white) !important;
}
.block-accordion.light-grey .row-heading {
  border-top: 1px solid var(--focus-grey);
  border-bottom: 1px solid var(--focus-grey);
}
.block-accordion.blue h3 {
  color: var(--color-white) !important;
}
.block-accordion.blue .row-heading.active::after {
  content: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.59733 9.19665L8.91797 16.5173M8.91797 16.5173L16.6961 8.73911M8.91797 16.5173V0.960938' stroke='%23ffffff' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion.blue .row-heading:hover::after {
  content: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.59733 9.19665L8.91797 16.5173M8.91797 16.5173L16.6961 8.73911M8.91797 16.5173V0.960938' stroke='%23ffffff' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion.blue .row-heading::after {
  content: url("data:image/svg+xml,%3Csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.75057 13H12.1035M12.1035 13V2M12.1035 13L1.10352 2' stroke='%23ffffff' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion .row-heading {
  border-top: 1px solid var(--color-light-grey);
  border-bottom: 1px solid var(--color-light-grey);
  position: relative;
}
.block-accordion .row-heading:hover {
  cursor: pointer;
}
.block-accordion .row-heading.active {
  border-bottom: none;
}
.block-accordion .row-heading.active::after {
  content: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.59733 9.19665L8.91797 16.5173M8.91797 16.5173L16.6961 8.73911M8.91797 16.5173V0.960938' stroke='%232264FF' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion .row-heading:hover::after {
  content: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.59733 9.19665L8.91797 16.5173M8.91797 16.5173L16.6961 8.73911M8.91797 16.5173V0.960938' stroke='%232264FF' stroke-width='3'/%3E%3C/svg%3E%0A");
}
.block-accordion .row-heading::after {
  content: url("data:image/svg+xml,%3Csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.75057 13H12.1035M12.1035 13V2M12.1035 13L1.10352 2' stroke='%232264FF' stroke-width='3'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 20px;
}
.block-accordion .row-heading h3 {
  padding: 20px 0;
  margin: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  font-family: var(--font-baskerville-paragraph);
  color: var(--focus-grey);
}
.block-accordion .row-content {
  display: none;
  padding: 20px 0 60px;
}
.block-accordion .row-content.active {
  display: block;
}
.block-accordion .row-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.page-template-template-submit .container {
  padding: 28px 6.4rem 0;
}
@media (max-width: 1024px) {
  .page-template-template-submit .container {
    padding: 30px 20px;
  }
}
.page-template-template-submit .block-vacancy-header {
  background-color: var(--focus-grey);
  padding-bottom: 60px;
}
@media (max-width: 1280px) {
  .page-template-template-submit .block-vacancy-header {
    padding-bottom: 0;
  }
}
.page-template-template-submit .block-vacancy-header h1 {
  color: var(--color-white);
  margin-bottom: 25px;
}
.page-template-template-submit .block-vacancy-header p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
.page-template-template-submit .share-box {
  background-color: var(--focus-blue);
  min-width: 500px;
  right: 0;
  z-index: 1;
  padding: 35px 35px 40px;
  position: fixed;
  right: 0;
  top: 30%;
}
@media (max-width: 1536px) {
  .page-template-template-submit .share-box {
    min-width: auto;
  }
}
@media (max-width: 1280px) {
  .page-template-template-submit .share-box {
    position: relative;
    padding: 30px 20px;
  }
}
.page-template-template-submit .share-box h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  color: var(--color-white);
  margin-bottom: 23px;
}
@media (max-width: 1024px) {
  .page-template-template-submit .share-box h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
.page-template-template-submit .share-box .borders {
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  padding: 10px 0px;
}
.page-template-template-submit .share-box .borders a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-template-template-submit .share-box .borders a {
    justify-content: flex-start;
  }
}
.page-template-template-submit .share-box .borders a p {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
}
.page-template-template-submit .share-box .borders a img {
  margin-right: 10px;
}
.page-template-template-submit .introduction {
  padding: 70px 0;
}
.page-template-template-submit .introduction .main {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--focus-grey);
  margin-bottom: 5px;
}
.page-template-template-submit .introduction .sub {
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  line-height: 36px;
  color: var(--focus-blue);
  margin: 0 0 50px;
}
.page-template-template-submit .introduction .before-list {
  margin-top: 0;
  list-style-type: none;
  padding-inline-start: 0px;
}
.page-template-template-submit .introduction .before-list li {
  margin-bottom: 28px;
  font-family: var(--font-baskerville);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.page-template-template-submit .introduction .before-list li svg {
  margin-right: 30px;
  min-width: 30px;
  max-width: 30px;
}
.page-template-template-submit .block-form {
  background-color: #E6E8E8;
  padding: 50px 0 90px;
}
.page-template-template-submit .block-form .form-heading h1, .page-template-template-submit .block-form .form-heading h2, .page-template-template-submit .block-form .form-heading h3, .page-template-template-submit .block-form .form-heading h4, .page-template-template-submit .block-form .form-heading h5, .page-template-template-submit .block-form .form-heading h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  margin: 0 0 50px;
}
@media (max-width: 1024px) {
  .page-template-template-submit .block-form .form-heading h1, .page-template-template-submit .block-form .form-heading h2, .page-template-template-submit .block-form .form-heading h3, .page-template-template-submit .block-form .form-heading h4, .page-template-template-submit .block-form .form-heading h5, .page-template-template-submit .block-form .form-heading h6 {
    margin: 30px 0;
  }
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield {
  margin-bottom: 50px;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-fileupload .gform_fileupload_rules,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield.gfield--type-fileupload .gform_fileupload_rules {
  display: none;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-fileupload:last-of-type .gform_fileupload_rules,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield.gfield--type-fileupload:last-of-type .gform_fileupload_rules {
  display: block;
  content: "Max 20mb/PDF";
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 20px;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--focus-blue);
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input {
  background: transparent;
  border: none;
  box-shadow: 0px 1px 0px 0px rgba(51, 51, 51, 0.2);
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0 0 5px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--focus-grey);
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input:focus-visible,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input:focus-visible {
  box-shadow: 0px 1px 0px 0px rgb(45, 102, 255);
  outline: none;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea {
  background: transparent;
  box-shadow: 0px 0px 0px 2px rgba(51, 51, 51, 0.2);
  -webkit-appearance: none;
  border: none;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea:focus-visible,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea:focus-visible {
  box-shadow: 0px 0px 0px 2px rgb(45, 102, 255);
  outline: none;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload input {
  box-shadow: none;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent input {
  box-shadow: none;
  border: 1px solid var(--focus-grey);
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label {
  padding-left: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a {
  text-decoration: underline;
  color: var(--focus-blue);
}
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.page-template-template-submit .block-form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.page-template-template-submit .block-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk {
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--focus-blue);
}
.page-template-template-submit .block-form .gform_wrapper form .gform_footer {
  justify-content: center;
}
.page-template-template-submit .block-form .gform_wrapper form .gform_footer input {
  background: var(--focus-grey);
  color: var(--color-white);
  border: 1px solid var(--focus-grey);
}
.page-template-template-submit .block-form .gform_wrapper form .gform_footer input:hover {
  background: var(--focus-blue);
  cursor: pointer;
}

.blog .block-header {
  background-color: var(--color-black);
  width: 100%;
}
.blog .block-header.white h1, .blog .block-header.white h2, .blog .block-header.white h3, .blog .block-header.white h4, .blog .block-header.white h5, .blog .block-header.white h6, .blog .block-header.white p {
  color: var(--focus-grey) !important;
}
.blog .block-header.white .button-white {
  border: 1px solid var(--focus-blue) !important;
}
.blog .block-header.light-grey h1, .blog .block-header.light-grey h2, .blog .block-header.light-grey h3, .blog .block-header.light-grey h4, .blog .block-header.light-grey h5, .blog .block-header.light-grey h6, .blog .block-header.light-grey p {
  color: var(--focus-grey) !important;
}
.blog .block-header.blue .button-white:hover {
  border: 1px solid var(--color-white) !important;
}
.blog .block-header .style-one .image {
  width: 100%;
  position: relative;
}
.blog .block-header .style-one .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog .block-header .style-one .image .next-article-button {
  position: absolute;
  bottom: 45px;
  right: 0;
}
@media (max-width: 1280px) {
  .blog .block-header .style-one .image .next-article-button {
    bottom: 15px;
  }
}
.blog .block-header .style-one .image .next-article-button a {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  align-items: flex-start;
  background-color: var(--focus-blue);
  padding: 20px 35px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
@media (max-width: 1280px) {
  .blog .block-header .style-one .image .next-article-button a {
    padding: 15px 25px;
  }
}
.blog .block-header .style-one .image .next-article-button a:hover {
  background-color: var(--color-white);
  cursor: pointer;
  color: var(--focus-blue);
  text-decoration: none;
}
.blog .block-header .style-one .image .next-article-button a:hover svg path {
  stroke: var(--focus-blue);
}
.blog .block-header .style-one .image .next-article-button a svg {
  margin-left: 15px;
}
.blog .block-header .style-one .image img {
  max-width: 100%;
  width: 100%;
  max-height: 800px;
  min-height: 730px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 1280px) {
  .blog .block-header .style-one .image img {
    height: 100%;
    min-height: 630px;
  }
}
@media (max-width: 1024px) {
  .blog .block-header .style-one .image img {
    max-height: 430px;
  }
}
.blog .block-header .style-one .image img.desktop-header-image {
  display: block;
}
@media (max-width: 768px) {
  .blog .block-header .style-one .image img.desktop-header-image {
    display: none;
  }
}
.blog .block-header .style-one .image img.mobile-header-image {
  display: none;
}
@media (max-width: 768px) {
  .blog .block-header .style-one .image img.mobile-header-image {
    display: block;
  }
}
.blog .block-header .style-one .content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 100px;
}
@media (max-width: 1590px) {
  .blog .block-header .style-one .content {
    padding: 0 55px;
  }
}
@media (max-width: 1536px) {
  .blog .block-header .style-one .content {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .blog .block-header .style-one .content {
    padding: 130px 20px 45px;
  }
}
@media (max-width: 768px) {
  .blog .block-header .style-one .content {
    padding: 100px 20px 45px;
  }
}
.blog .block-header .style-one .content h1, .blog .block-header .style-one .content h2, .blog .block-header .style-one .content h3, .blog .block-header .style-one .content h4, .blog .block-header .style-one .content h5, .blog .block-header .style-one .content h6,
.blog .block-header .style-one .content p {
  color: var(--color-white);
}
.blog .block-header .style-one .content h1, .blog .block-header .style-one .content h2, .blog .block-header .style-one .content h3, .blog .block-header .style-one .content h4, .blog .block-header .style-one .content h5, .blog .block-header .style-one .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
}
@media (max-width: 1280px) {
  .blog .block-header .style-one .content h1, .blog .block-header .style-one .content h2, .blog .block-header .style-one .content h3, .blog .block-header .style-one .content h4, .blog .block-header .style-one .content h5, .blog .block-header .style-one .content h6 {
    font-size: 30px;
    line-height: 31px;
  }
}
.blog .block-header .style-one .content .categories {
  background-color: var(--focus-blue);
  padding: 10px 20px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-family: var(--font-baskerville-paragraph);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 0px;
}
.blog .block-header .style-one .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.blog .block-header .style-one .content p.date {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
}
.blog .block-header .style-two {
  padding: 25px 0 50px;
  align-items: center;
}
@media (max-width: 1024px) {
  .blog .block-header .style-two {
    padding: 30px 0;
  }
}
.blog .block-header .style-two::after {
  content: "";
  background-image: url("/wp-content/themes/wp-theme-focus-agency/public/images/arrows.gif");
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 167px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1280px) {
  .blog .block-header .style-two::after {
    display: none;
  }
}
.blog .block-header .style-two .content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 200px;
}
@media (max-width: 1536px) {
  .blog .block-header .style-two .content {
    padding: 0 50px;
  }
}
@media (max-width: 1024px) {
  .blog .block-header .style-two .content {
    padding: 20px;
  }
}
.blog .block-header .style-two .content h1, .blog .block-header .style-two .content h2, .blog .block-header .style-two .content h3, .blog .block-header .style-two .content h4, .blog .block-header .style-two .content h5, .blog .block-header .style-two .content h6,
.blog .block-header .style-two .content p {
  color: var(--color-white);
}
.blog .block-header .style-two .content h1, .blog .block-header .style-two .content h2, .blog .block-header .style-two .content h3, .blog .block-header .style-two .content h4, .blog .block-header .style-two .content h5, .blog .block-header .style-two .content h6 {
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  font-style: normal;
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .blog .block-header .style-two .content h1, .blog .block-header .style-two .content h2, .blog .block-header .style-two .content h3, .blog .block-header .style-two .content h4, .blog .block-header .style-two .content h5, .blog .block-header .style-two .content h6 {
    padding-right: 85px;
  }
}
@media (max-width: 1024px) {
  .blog .block-header .style-two .content h1, .blog .block-header .style-two .content h2, .blog .block-header .style-two .content h3, .blog .block-header .style-two .content h4, .blog .block-header .style-two .content h5, .blog .block-header .style-two .content h6 {
    font-size: 40px;
    line-height: 42px;
  }
}
.blog .block-header .style-two .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  font-style: normal;
}
.blog .block-header .style-two .content .button {
  max-width: 300px;
  border: 1px solid var(--color-white);
}
@media (max-width: 1024px) {
  .blog .block-header .style-two .content .button {
    max-width: 100%;
    justify-content: center;
    padding: 17px 0px;
    display: flex;
    position: relative;
  }
  .blog .block-header .style-two .content .button .icon {
    position: absolute;
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .blog .block-header .style-two .image {
    position: absolute;
    top: 50px;
    right: 15px;
  }
  .blog .block-header .style-two .image svg {
    max-width: 50px;
    height: auto;
  }
}
.blog .block-header .style-three.small {
  height: 300px;
  min-height: 300px;
}
@media (max-width: 1024px) {
  .blog .block-header .style-three.small {
    height: 250px;
  }
}
.blog .block-header .style-three.medium {
  height: 450px;
  min-height: 450px;
}
@media (max-width: 1024px) {
  .blog .block-header .style-three.medium {
    height: 350px;
  }
}
.blog .block-header .style-three.full {
  height: 800px;
  min-height: 800px;
}
@media (max-width: 1024px) {
  .blog .block-header .style-three.full {
    height: 600px;
  }
}
.blog .block-header .style-three .background-image {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 460px;
}
.blog .block-header .style-three .background-image.desktop-header-image {
  display: block;
}
@media (max-width: 768px) {
  .blog .block-header .style-three .background-image.desktop-header-image {
    display: none;
  }
}
.blog .block-header .style-three .background-image.mobile-header-image {
  display: none;
}
@media (max-width: 768px) {
  .blog .block-header .style-three .background-image.mobile-header-image {
    display: block;
  }
}
.blog .block-header .style-three .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog .block-header .style-three .overlay .content {
  max-width: 60%;
  padding-left: 200px;
}
@media (max-width: 1536px) {
  .blog .block-header .style-three .overlay .content {
    max-width: 80%;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  .blog .block-header .style-three .overlay .content {
    max-width: 100%;
    padding: 0 20px;
  }
}
.blog .block-header .style-three .overlay .content h1, .blog .block-header .style-three .overlay .content h2, .blog .block-header .style-three .overlay .content h3, .blog .block-header .style-three .overlay .content h4, .blog .block-header .style-three .overlay .content h5, .blog .block-header .style-three .overlay .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .blog .block-header .style-three .overlay .content h1, .blog .block-header .style-three .overlay .content h2, .blog .block-header .style-three .overlay .content h3, .blog .block-header .style-three .overlay .content h4, .blog .block-header .style-three .overlay .content h5, .blog .block-header .style-three .overlay .content h6 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;
  }
}
.blog .block-header .style-three .overlay .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .blog .block-header .style-three .overlay .content p {
    margin-bottom: 15px;
  }
}
.blog .block-header .style-three .overlay .content .button {
  min-width: 290px;
  max-width: 300px;
}
@media (max-width: 1024px) {
  .blog .block-header .style-three .overlay .content .button {
    max-width: 100%;
    justify-content: center;
    padding: 17px 0px;
    display: flex;
    position: relative;
  }
  .blog .block-header .style-three .overlay .content .button .icon {
    position: absolute;
    right: 20px;
  }
}
.blog .block-header .style-four {
  background: var(--color-white);
}
.blog .block-header .style-four .header-slider {
  margin-bottom: 0;
}
.blog .block-header .style-four .header-slider .background-image {
  width: 100%;
  max-width: 100%;
  height: 800px;
  object-fit: cover;
}
.blog .block-header .style-four .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog .block-header .style-four .overlay .content {
  max-width: 45%;
  padding-left: 200px;
}
@media (max-width: 1536px) {
  .blog .block-header .style-four .overlay .content {
    max-width: 80%;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  .blog .block-header .style-four .overlay .content {
    max-width: 100%;
    padding: 0 20px;
  }
}
.blog .block-header .style-four .overlay .content h1, .blog .block-header .style-four .overlay .content h2, .blog .block-header .style-four .overlay .content h3, .blog .block-header .style-four .overlay .content h4, .blog .block-header .style-four .overlay .content h5, .blog .block-header .style-four .overlay .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .blog .block-header .style-four .overlay .content h1, .blog .block-header .style-four .overlay .content h2, .blog .block-header .style-four .overlay .content h3, .blog .block-header .style-four .overlay .content h4, .blog .block-header .style-four .overlay .content h5, .blog .block-header .style-four .overlay .content h6 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;
  }
}
.blog .block-header .style-four .overlay .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .blog .block-header .style-four .overlay .content p {
    margin-bottom: 15px;
  }
}
.blog .block-header .style-four .overlay .content .button {
  width: -moz-fit-content;
  width: fit-content;
}
.blog .block-header .style-four .header-slider-navigation {
  width: 100%;
  max-width: 300px;
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
  bottom: -65px;
}
.blog .block-header .style-four .header-slider-navigation.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .blog .block-header .style-four .header-slider-navigation {
    display: none;
  }
  .blog .block-header .style-four .header-slider-navigation.mobile {
    display: block;
  }
}
.blog .block-header .style-four .header-slider-navigation .slick-arrow {
  padding: 0;
  line-height: normal;
  font-size: inherit;
  display: block;
  border-radius: 0px;
  align-content: unset;
  top: 0;
  transform: none;
  width: 47px;
  height: 46px;
  position: relative;
  margin: 0 5px;
}
.blog .block-header .style-four .header-slider-navigation .slick-arrow.slick-prev {
  left: 0px;
}
.blog .block-header .style-four .header-slider-navigation .slick-arrow.slick-prev::before {
  content: url("data:image/svg+xml,%3Csvg width='47' height='46' viewBox='0 0 47 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_210_1926)'%3E%3Cpath d='M23.4993 0C10.5432 0 0 10.3189 0 22.9993C0 35.6798 10.5432 45.9987 23.4993 45.9987C36.4554 45.9987 46.9986 35.6825 46.9986 22.9993C46.9986 10.3162 36.4568 0 23.4993 0ZM23.4993 42.1775C12.6973 42.1775 3.9056 33.5755 3.9056 23.0007C3.9056 12.4258 12.6973 3.82518 23.4993 3.82518C34.3013 3.82518 43.093 12.4271 43.093 22.9993C43.093 33.5715 34.3013 42.1762 23.4993 42.1762V42.1775Z' fill='%232264FF'/%3E%3Cmask id='mask0_210_1926' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='47' height='46'%3E%3Cellipse cx='23.5' cy='23' rx='23.5' ry='23' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_210_1926)'%3E%3Cpath d='M28.8063 14.8359L18.1934 22.754L28.8063 30.672' stroke='%232264FF' stroke-width='5'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_210_1926'%3E%3Crect width='47' height='46' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.blog .block-header .style-four .header-slider-navigation .slick-arrow.slick-next {
  right: 0px;
}
.blog .block-header .style-four .header-slider-navigation .slick-arrow.slick-next::before {
  content: url("data:image/svg+xml,%3Csvg width='47' height='46' viewBox='0 0 47 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_210_1927)'%3E%3Cpath d='M23.5007 46C36.4568 46 47 35.6811 47 23.0007C47 10.3202 36.4568 0.00133041 23.5007 0.00132927C10.5446 0.00132814 0.00136497 10.3175 0.00136386 23.0007C0.00136275 35.6838 10.5432 46 23.5007 46ZM23.5007 3.82249C34.3027 3.82249 43.0944 12.4245 43.0944 22.9993C43.0944 33.5742 34.3027 42.1748 23.5007 42.1748C12.6987 42.1748 3.90696 33.5728 3.90696 23.0007C3.90696 12.4285 12.6987 3.82383 23.5007 3.82383L23.5007 3.82249Z' fill='%232264FF'/%3E%3Cmask id='mask0_210_1927' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='47' height='46'%3E%3Cellipse cx='23.5' cy='23' rx='23.5' ry='23' transform='rotate(-180 23.5 23)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_210_1927)'%3E%3Cpath d='M18.1937 31.1641L28.8066 23.246L18.1937 15.328' stroke='%232264FF' stroke-width='5'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_210_1927'%3E%3Crect width='47' height='46' fill='white' transform='translate(47 46) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.blog .block-header .style-four .header-slider-navigation .dots .slick-dots {
  position: relative;
  bottom: 0;
}
.blog .block-header .style-four .header-slider-navigation .dots .slick-dots li {
  height: 3px;
  width: 22px;
}
.blog .block-header .style-four .header-slider-navigation .dots .slick-dots li.slick-active button {
  background: var(--focus-blue);
}
.blog .block-header .style-four .header-slider-navigation .dots .slick-dots li button {
  height: 3px;
  width: 22px;
  padding: 0px;
  border-radius: 0px;
  background: var(--color-light-grey);
}
.blog .block-header .style-four .header-slider-navigation .dots .slick-dots li button::before {
  content: none;
  height: 3px;
  width: 22px;
}
.blog .block-header .style-five.medium {
  height: 450px;
}
@media (max-width: 1024px) {
  .blog .block-header .style-five.medium {
    height: 350px;
  }
}
.blog .block-header .style-five video {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .blog .block-header .style-five video#heroVideo {
    display: none;
  }
}
.blog .block-header .style-five video#mobileHeroVideo {
  display: none;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .blog .block-header .style-five video#mobileHeroVideo {
    display: block;
  }
}
.blog .block-header .style-five .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog .block-header .style-five .overlay .content {
  max-width: 60%;
  padding-left: 200px;
}
@media (max-width: 1536px) {
  .blog .block-header .style-five .overlay .content {
    max-width: 80%;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  .blog .block-header .style-five .overlay .content {
    max-width: 100%;
    padding: 0 20px;
  }
}
.blog .block-header .style-five .overlay .content h1, .blog .block-header .style-five .overlay .content h2, .blog .block-header .style-five .overlay .content h3, .blog .block-header .style-five .overlay .content h4, .blog .block-header .style-five .overlay .content h5, .blog .block-header .style-five .overlay .content h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .blog .block-header .style-five .overlay .content h1, .blog .block-header .style-five .overlay .content h2, .blog .block-header .style-five .overlay .content h3, .blog .block-header .style-five .overlay .content h4, .blog .block-header .style-five .overlay .content h5, .blog .block-header .style-five .overlay .content h6 {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;
  }
}
.blog .block-header .style-five .overlay .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .blog .block-header .style-five .overlay .content p {
    margin-bottom: 15px;
  }
}
.blog .block-header .style-five .overlay .content .button {
  min-width: 290px;
  max-width: 300px;
}
@media (max-width: 1024px) {
  .blog .block-header .style-five .overlay .content .button {
    max-width: 100%;
    justify-content: center;
    padding: 17px 0px;
    display: flex;
    position: relative;
  }
  .blog .block-header .style-five .overlay .content .button .icon {
    position: absolute;
    right: 20px;
  }
}
.blog .block-breadcrumb {
  padding: 15px 50px;
}
@media (max-width: 1024px) {
  .blog .block-breadcrumb {
    padding: 15px 20px;
  }
}
.blog .block-breadcrumb nav.rank-math-breadcrumb p span {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--focus-blue);
  font-family: var(--font-elza-paragraph);
}
@media (max-width: 1024px) {
  .blog .block-breadcrumb nav.rank-math-breadcrumb p span {
    font-size: 12px;
    line-height: 18px;
  }
}
.blog .block-breadcrumb nav.rank-math-breadcrumb p a {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--focucs-grey);
  text-decoration: underline;
  font-family: var(--font-elza-paragraph);
}
@media (max-width: 1024px) {
  .blog .block-breadcrumb nav.rank-math-breadcrumb p a {
    font-size: 12px;
    line-height: 18px;
  }
}
.blog .block-blog .filters {
  display: flex;
  justify-content: center;
  margin: 25px auto;
  flex-wrap: wrap;
  max-width: 55%;
}
@media (max-width: 1536px) {
  .blog .block-blog .filters {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .blog .block-blog .filters {
    justify-content: flex-start;
    margin: 25px 20px;
    max-width: 100%;
  }
}
.blog .block-blog .filters button {
  margin: 10px 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--focus-grey);
  color: var(--focus-grey);
  border-radius: 200px;
  padding: 10px 30px;
  background: transparent;
  text-decoration: none;
}
@media (max-width: 768px) {
  .blog .block-blog .filters button {
    margin: 10px 7px;
    padding: 10px 20px;
    font-size: 10px;
  }
}
.blog .block-blog .filters button:hover {
  background: var(--focus-blue);
  border: 1px solid var(--focus-blue);
  color: var(--color-white);
}
.blog .block-blog .filters button.active {
  background: var(--focus-blue);
  border: 1px solid var(--focus-blue);
  color: var(--color-white);
}
.blog .block-blog .news-items .post {
  padding: 1rem 30px 60px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .blog .block-blog .news-items .post {
    padding: 15px 15px 30px;
  }
}
@media (max-width: 1024px) {
  .blog .block-blog .news-items .post {
    padding: 15px 20px;
    width: 100%;
  }
}
.blog .block-blog .news-items .post .image-wrapper {
  position: relative;
}
.blog .block-blog .news-items .post .image-wrapper a {
  text-decoration: none;
}
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper {
  height: 541px;
  overflow: hidden;
  display: block;
}
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all;
}
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper img:hover {
  transform: scale(1.1);
  transition: 0.4s all;
}
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .featured-video,
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .embed-container {
  height: 100%;
  overflow: hidden;
}
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .featured-video video,
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .featured-video iframe,
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .embed-container video,
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .embed-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all;
}
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .featured-video video:hover,
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .featured-video iframe:hover,
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .embed-container video:hover,
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .embed-container iframe:hover {
  transform: scale(1.1);
  transition: 0.4s all;
}
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .featured-video iframe:hover,
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper .embed-container iframe:hover {
  transform: none;
}
.blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper iframe:hover {
  transform: none;
}
@media (max-width: 1024px) {
  .blog .block-blog .news-items .post .image-wrapper a.featured-image-wrapper {
    height: 337px;
  }
}
.blog .block-blog .news-items .post .image-wrapper a h2 {
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}
@media (max-width: 1024px) {
  .blog .block-blog .news-items .post .image-wrapper a h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
.blog .block-blog .news-items .post .image-wrapper p {
  position: absolute;
  top: 20px;
  right: 15px;
  background-color: var(--focus-grey);
  padding: 10px 20px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-height: auto;
}
.blog .block-blog .news-items .post .image-wrapper p.categories {
  font-family: var(--font-baskerville-paragraph);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 0px;
  color: var(--color-white);
}
.blog .block-blog .news-items .post a {
  text-decoration: none;
}
.blog .block-blog .news-items .post a h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
  min-height: 70px;
}
@media (max-width: 1024px) {
  .blog .block-blog .news-items .post a h2 {
    min-height: auto;
  }
}
.blog .block-blog .news-items .post p {
  min-height: 60px;
}
@media (max-width: 1280px) {
  .blog .block-blog .news-items .post p {
    min-height: 90px;
  }
}
@media (max-width: 1024px) {
  .blog .block-blog .news-items .post p {
    min-height: auto;
  }
}
.blog .block-blog .news-items .post p.date {
  margin: 30px 0 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  min-height: auto;
}
.blog .block-blog .news-items .post .button {
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  text-align: right;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--focus-grey);
  padding: 0;
}
.blog .block-blog .news-items .post .button svg {
  margin-right: 10px;
}
.blog .block-blog .btn__wrapper {
  text-align: right;
  padding: 103px 50px 107px;
}
@media (max-width: 1024px) {
  .blog .block-blog .btn__wrapper {
    padding: 40px 20px;
  }
}
.blog .block-blog .btn__wrapper .button {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.blog .block-blog .btn__wrapper .button:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .blog .block-blog .btn__wrapper .button {
    margin: 0;
    width: 100%;
    justify-content: center;
    position: relative;
    padding: 17px 0px;
  }
  .blog .block-blog .btn__wrapper .button:hover {
    background-color: var(--focus-grey) !important;
  }
  .blog .block-blog .btn__wrapper .button svg {
    position: absolute;
    right: 20px;
  }
}
.blog .block-blog .btn__wrapper .button svg {
  margin-left: 10px;
}

.post-template-template-blog-post .block-blog-content {
  padding: 0px 100px;
}
@media (max-width: 1024px) {
  .post-template-template-blog-post .block-blog-content {
    padding: 0px 0px;
  }
}
.post-template-template-blog-post .block-blog-content .contents.fixed {
  position: fixed;
  top: 15rem;
  left: 5%;
}
@media (max-width: 1536px) {
  .post-template-template-blog-post .block-blog-content .contents.fixed {
    left: 65px;
  }
}
@media (max-width: 1024px) {
  .post-template-template-blog-post .block-blog-content .contents.fixed {
    position: relative;
    left: auto;
    top: auto;
  }
}
.post-template-template-blog-post .block-blog-content .contents h2 {
  margin-bottom: 10px;
}
.post-template-template-blog-post .block-blog-content .contents .item a {
  text-decoration: none;
  color: var(--focus-grey);
  font-size: 20px;
  font-weight: bold;
  padding-left: 0;
  transition: 0.2s padding-left;
}
.post-template-template-blog-post .block-blog-content .contents .item a:hover {
  padding-left: 10px;
  transition: 0.2s padding-left;
}
.post-template-template-blog-post .block-blog-content .contents .item a::before {
  content: url("data:image/svg+xml,%3Csvg class='menu-icon' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 16.9 16.2' width='15' height='15' style='enable-background:new 0 0 16.9 16.2;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:none;stroke:%23333333;stroke-width:3;stroke-linecap:square;stroke-linejoin:round;%7D%3C/style%3E%3Cpath class='st0' d='M8.8,14.1l6-6 M1.5,8.1h13.3l-6-6'%3E%3C/path%3E%3C/svg%3E");
  margin-right: 10px;
}
.post-template-template-blog-post .block-blog-content .content-wrapper .block-content.focus-icon {
  height: auto !important;
}
.post-template-template-blog-post .block-blog-content .content-wrapper .block-content h1, .post-template-template-blog-post .block-blog-content .content-wrapper .block-content h2 {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .post-template-template-blog-post .block-blog-content .content-wrapper .block-content h1, .post-template-template-blog-post .block-blog-content .content-wrapper .block-content h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.post-template-template-blog-post .block-blog-content .content-wrapper .block-content h1 img, .post-template-template-blog-post .block-blog-content .content-wrapper .block-content h2 img {
  max-width: 25px;
  height: auto;
  margin-left: 20px;
}
.post-template-template-blog-post .block-blog-content .content-wrapper .block-icon-slider .fluid {
  padding: 80px 40px 50px;
}
.post-template-template-blog-post .block-blog-content .content-wrapper .block-icon-slider .fluid .icon-slider .slick-slide {
  margin: 0 30px;
}

.page-template-template-ai-landing .hero {
  background-color: var(--focus-blue);
  background-image: url("../../images/ai-background.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1024px) {
  .page-template-template-ai-landing .hero {
    background-image: none;
  }
}
.page-template-template-ai-landing .hero h1 {
  color: var(--color-white);
  font-size: 75px;
  line-height: 80px;
}
@media (max-width: 1024px) {
  .page-template-template-ai-landing .hero h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
.page-template-template-ai-landing .hero h1 i {
  font-family: var(--font-baskerville);
  font-weight: normal;
}
.page-template-template-ai-landing .hero p {
  color: var(--color-white);
}
.page-template-template-ai-landing .hero .tag p {
  margin: 0 0 10px;
  font-family: var(--font-baskerville);
  color: var(--color-white);
  font-size: 25px;
  font-style: italic;
}
.page-template-template-ai-landing .questions {
  background-color: #ffe2ee;
}
.page-template-template-ai-landing .questions .justify-content-center {
  justify-content: center;
}
.page-template-template-ai-landing .questions h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
}
@media (max-width: 1024px) {
  .page-template-template-ai-landing .questions h2 {
    margin: 30px 0 0px;
    font-size: 30px;
    line-height: 35px;
  }
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .gfield_label,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .gfield_label {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0;
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--focus-blue);
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container input,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container input {
  background: transparent;
  border: none;
  box-shadow: 0px 1px 0px 0px rgba(51, 51, 51, 0.2);
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0 0 5px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--focus-grey);
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container input:focus-visible,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container input:focus-visible {
  box-shadow: 0px 1px 0px 0px rgb(45, 102, 255);
  outline: none;
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container textarea,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container textarea {
  background: transparent;
  box-shadow: 0px 0px 0px 2px rgba(51, 51, 51, 0.2);
  -webkit-appearance: none;
  border: none;
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container textarea:focus-visible,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container textarea:focus-visible {
  box-shadow: 0px 0px 0px 2px rgb(45, 102, 255);
  outline: none;
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent input {
  box-shadow: none;
  border: 1px solid var(--focus-grey);
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label {
  padding-left: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a {
  text-decoration: underline;
  color: var(--focus-blue);
}
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.page-template-template-ai-landing .questions form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.page-template-template-ai-landing .questions form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk {
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--focus-blue);
}
.page-template-template-ai-landing .questions form .gform_footer {
  justify-content: center;
}
.page-template-template-ai-landing .questions form .gform_footer input {
  background: var(--focus-grey);
  color: var(--color-white);
  border: 1px solid var(--focus-grey);
}
.page-template-template-ai-landing .questions form .gform_footer input:hover {
  background: var(--focus-blue);
  cursor: pointer;
}
.page-template-template-ai-landing .banner {
  background-color: var(--focus-blue);
  text-align: center;
}
.page-template-template-ai-landing .banner h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .page-template-template-ai-landing .banner h2 {
    margin: 0px 0 30px;
    font-size: 30px;
    line-height: 35px;
  }
}
.page-template-template-ai-landing .banner .button-wrapper {
  display: flex;
  justify-content: center;
}
.page-template-template-ai-landing .banner .button-wrapper .button {
  max-width: 300px;
}
.page-template-template-ai-landing .banner .button-wrapper .button:hover {
  background-color: var(--focus-grey) !important;
}
.page-template-template-ai-landing .post-event {
  background: linear-gradient(155deg, rgb(45, 102, 255) 0%, rgb(45, 102, 255) 50%, rgb(255, 125, 112) 50%, rgb(255, 125, 112) 100%);
}
.page-template-template-ai-landing .post-event h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .page-template-template-ai-landing .post-event h2 {
    margin: 30px 0 30px;
    font-size: 30px;
    line-height: 35px;
  }
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .gfield_label,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .gfield_label {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0;
  color: var(--color-white);
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-white);
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container input,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container input {
  background: transparent;
  border: none;
  box-shadow: 0px 1px 0px 0px rgb(255, 255, 255);
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0 0 5px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-white);
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container input:focus-visible,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container input:focus-visible {
  box-shadow: 0px 1px 0px 0px rgb(45, 102, 255);
  outline: none;
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container textarea,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container textarea {
  background: transparent;
  box-shadow: 0px 0px 0px 2px rgb(255, 255, 255);
  -webkit-appearance: none;
  border: none;
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container textarea:focus-visible,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container textarea:focus-visible {
  box-shadow: 0px 0px 0px 2px rgb(45, 102, 255);
  outline: none;
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container .gfield_checkbox,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container .gfield_checkbox,
  .page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox {
    flex-direction: column;
  }
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container .gfield_checkbox .gfield-choice-input,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gfield-choice-input {
  border: 1px solid var(--color-white);
  box-shadow: none;
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container .gfield_checkbox .gfield-choice-input::before,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gfield-choice-input::before {
  background-color: var(--color-white);
  width: 100%;
  display: block;
  border: none;
  border-radius: 0;
  background-image: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" heighg="16"%3E%3Cg class="nc-icon-wrapper" stroke-width="3" fill="%237effe1" stroke="%237effe1"%3E%3Cpolyline fill="none" stroke="%23000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="1, 9 5, 13 15, 3" data-cap="butt"%3E%3C/polyline%3E%3C/g%3E%3C/svg%3E%0A');
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice {
  align-items: center;
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice label,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice label {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0;
  color: var(--color-white);
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent input {
  box-shadow: none;
  border: 1px solid var(--color-white);
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label {
  padding-left: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-white);
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a {
  text-decoration: underline;
  color: var(--color-white);
}
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.page-template-template-ai-landing .post-event form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.page-template-template-ai-landing .post-event form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk {
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--focus-blue);
}
.page-template-template-ai-landing .post-event form .gform_footer {
  justify-content: center;
}
.page-template-template-ai-landing .post-event form .gform_footer input {
  background: var(--focus-blue);
  color: var(--color-white);
  border: 1px solid var(--focus-blue);
}
.page-template-template-ai-landing .post-event form .gform_footer input:hover {
  background: var(--focus-grey);
  cursor: pointer;
}

.page-template-template-landing .block-hero {
  background-color: var(--color-black);
  width: 100%;
  padding: 0 !important;
}
.page-template-template-landing .block-hero .relative {
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .page-template-template-landing .block-hero .relative {
    height: 100%;
  }
}
.page-template-template-landing .block-hero .relative .image-video {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-left: auto;
  cursor: url("data:image/svg+xml,%3Csvg width='114' height='114' viewBox='0 0 114 114' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='57' cy='57' r='57' fill='white'/%3E%3Cg clip-path='url(%23clip0_364_1358)'%3E%3Ccircle cx='60.5' cy='59.5' r='38.5' fill='white'/%3E%3Cpath d='M68.4458 58.3898L51.9639 49.585V67.1947L68.4458 58.3898Z' fill='%232264FF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_364_1358'%3E%3Crect width='76' height='76' fill='white' transform='translate(19 19)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"), auto;
  transition: 0.2s all;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-hero .relative .image-video {
    display: block;
    width: 100%;
    cursor: auto;
    background-color: var(--focus-blue);
  }
}
.page-template-template-landing .block-hero .relative .image-video video {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-hero .relative .image-video video#heroVideo {
    display: none;
  }
}
.page-template-template-landing .block-hero .relative .image-video video#mobileHeroVideo {
  display: none;
  max-height: 565px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-hero .relative .image-video video#mobileHeroVideo {
    display: block;
  }
}
.page-template-template-landing .block-hero .relative .image-video .play-overlay {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-template-template-landing .block-hero .relative .image-video .play-overlay svg {
  max-width: 60px;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-hero .relative .image-video .play-overlay {
    display: block;
  }
}
.page-template-template-landing .block-hero .relative .image-video.full-screen {
  background-color: black;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: 0.2s all;
  display: block;
  margin: 0;
  cursor: url("data:image/svg+xml,%3Csvg viewPort='0 0 12 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1' y1='11' x2='11' y2='1' stroke='black' stroke-width='2'/%3E%3Cline x1='1' y1='1' x2='11' y2='11' stroke='black' stroke-width='2'/%3E%3C/svg%3E"), auto;
}
.page-template-template-landing .block-hero .introduction .container {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-hero .introduction .container {
    padding: 30px 20px;
  }
}
.page-template-template-landing .block-hero .introduction .container .content {
  max-width: 700px;
  text-align: center;
}
.page-template-template-landing .block-hero .introduction .container .content h1, .page-template-template-landing .block-hero .introduction .container .content h2, .page-template-template-landing .block-hero .introduction .container .content h3, .page-template-template-landing .block-hero .introduction .container .content h4, .page-template-template-landing .block-hero .introduction .container .content h5, .page-template-template-landing .block-hero .introduction .container .content h6, .page-template-template-landing .block-hero .introduction .container .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: var(--color-white);
}
.page-template-template-landing .block-hero .introduction .container .content h1 span, .page-template-template-landing .block-hero .introduction .container .content h2 span, .page-template-template-landing .block-hero .introduction .container .content h3 span, .page-template-template-landing .block-hero .introduction .container .content h4 span, .page-template-template-landing .block-hero .introduction .container .content h5 span, .page-template-template-landing .block-hero .introduction .container .content h6 span, .page-template-template-landing .block-hero .introduction .container .content p span {
  font-family: var(--font-baskerville-paragraph);
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-hero .introduction .container .content h1 span, .page-template-template-landing .block-hero .introduction .container .content h2 span, .page-template-template-landing .block-hero .introduction .container .content h3 span, .page-template-template-landing .block-hero .introduction .container .content h4 span, .page-template-template-landing .block-hero .introduction .container .content h5 span, .page-template-template-landing .block-hero .introduction .container .content h6 span, .page-template-template-landing .block-hero .introduction .container .content p span {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-hero .introduction .container .content h1, .page-template-template-landing .block-hero .introduction .container .content h2, .page-template-template-landing .block-hero .introduction .container .content h3, .page-template-template-landing .block-hero .introduction .container .content h4, .page-template-template-landing .block-hero .introduction .container .content h5, .page-template-template-landing .block-hero .introduction .container .content h6, .page-template-template-landing .block-hero .introduction .container .content p {
    font-size: 16px;
    line-height: 22px;
  }
}
.page-template-template-landing .block-hero .container-fluid {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}
.page-template-template-landing .block-hero .container-fluid.blue {
  background-color: var(--focus-blue);
  text-align: center;
}
.page-template-template-landing .block-hero .container-fluid.blue p {
  color: var(--color-white);
  font-weight: bold;
}
.page-template-template-landing .block-introduction {
  background-color: var(--color-black);
}
.page-template-template-landing .block-introduction .container {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-introduction .container {
    padding: 30px 20px;
  }
}
.page-template-template-landing .block-introduction .container .content {
  max-width: 700px;
  text-align: center;
}
.page-template-template-landing .block-introduction .container .content h1, .page-template-template-landing .block-introduction .container .content h2, .page-template-template-landing .block-introduction .container .content h3, .page-template-template-landing .block-introduction .container .content h4, .page-template-template-landing .block-introduction .container .content h5, .page-template-template-landing .block-introduction .container .content h6, .page-template-template-landing .block-introduction .container .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: var(--color-white);
}
.page-template-template-landing .block-introduction .container .content h1 span, .page-template-template-landing .block-introduction .container .content h2 span, .page-template-template-landing .block-introduction .container .content h3 span, .page-template-template-landing .block-introduction .container .content h4 span, .page-template-template-landing .block-introduction .container .content h5 span, .page-template-template-landing .block-introduction .container .content h6 span, .page-template-template-landing .block-introduction .container .content p span {
  font-family: var(--font-baskerville-paragraph);
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-introduction .container .content h1 span, .page-template-template-landing .block-introduction .container .content h2 span, .page-template-template-landing .block-introduction .container .content h3 span, .page-template-template-landing .block-introduction .container .content h4 span, .page-template-template-landing .block-introduction .container .content h5 span, .page-template-template-landing .block-introduction .container .content h6 span, .page-template-template-landing .block-introduction .container .content p span {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-introduction .container .content h1, .page-template-template-landing .block-introduction .container .content h2, .page-template-template-landing .block-introduction .container .content h3, .page-template-template-landing .block-introduction .container .content h4, .page-template-template-landing .block-introduction .container .content h5, .page-template-template-landing .block-introduction .container .content h6, .page-template-template-landing .block-introduction .container .content p {
    font-size: 16px;
    line-height: 22px;
  }
}
.page-template-template-landing .block-content p {
  font-family: var(--font-elza);
  font-size: var(--font-size-16);
}
.page-template-template-landing .block-content h1, .page-template-template-landing .block-content h2, .page-template-template-landing .block-content h3, .page-template-template-landing .block-content h4, .page-template-template-landing .block-content h5, .page-template-template-landing .block-content h6 {
  margin-bottom: 10px;
}
.page-template-template-landing .block-content h1 {
  font-size: 50px;
  line-height: 56px;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-content h1 {
    font-size: 46px;
    line-height: 50px;
  }
}
.page-template-template-landing .block-content h2 {
  font-size: 34px;
  line-height: 36px;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-content h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.page-template-template-landing .block-content h3 {
  font-size: 24px;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-content h3 {
    font-size: 20px;
    line-height: 24px;
  }
}
.page-template-template-landing .block-content h4 {
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-content h4 {
    font-size: 16px;
    line-height: 20px;
  }
}
.page-template-template-landing .block-content h5 {
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-content h5 {
    font-size: 14px;
    line-height: 18px;
  }
}
.page-template-template-landing .block-content .content {
  font-size: 16px;
  line-height: 26px;
}
.page-template-template-landing .block-form {
  background-color: var(--color-light-grey);
}
.page-template-template-landing .block-form .container.squashed {
  max-width: 1023px;
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0;
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label .gfield_required .gfield_required_asterisk {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--focus-blue);
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input {
  background: transparent;
  border: none;
  box-shadow: 0px 1px 0px 0px rgba(51, 51, 51, 0.2);
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0 0 5px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--focus-grey);
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input:focus-visible,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input:focus-visible {
  box-shadow: 0px 1px 0px 0px rgb(45, 102, 255);
  outline: none;
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea {
  background: transparent;
  box-shadow: 0px 0px 0px 2px rgba(51, 51, 51, 0.2);
  -webkit-appearance: none;
  border: none;
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea:focus-visible,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea:focus-visible {
  box-shadow: 0px 0px 0px 2px rgb(45, 102, 255);
  outline: none;
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent input {
  box-shadow: none;
  border: 1px solid var(--focus-grey);
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label {
  padding-left: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_consent_label a {
  text-decoration: underline;
  color: var(--focus-blue);
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required,
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_asterisk {
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--focus-blue);
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_footer {
  justify-content: center;
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_footer input {
  background: var(--focus-grey);
  color: var(--color-white);
  border: 1px solid var(--focus-grey);
}
.page-template-template-landing .block-form .form-wrapper .gform_wrapper form .gform_footer input:hover {
  background: var(--focus-blue);
  cursor: pointer;
}
.page-template-template-landing .block-form .contact-form label {
  font-family: var(--font-elza-paragraph);
  font-weight: 400;
}
.page-template-template-landing .block-form .contact-form label:not(.privacy-policy) {
  font-size: 21px;
}
@media (min-width: 1024px) {
  .page-template-template-landing .block-form .contact-form label:not(.privacy-policy) {
    font-size: 28px;
  }
}
.page-template-template-landing .block-form .contact-form label.privacy-policy {
  font-size: 16px;
}
@media (min-width: 1024px) {
  .page-template-template-landing .block-form .contact-form label.privacy-policy {
    font-size: 22px;
  }
}
.page-template-template-landing .block-form .contact-form label.privacy-policy a {
  color: var(--color-black);
  text-decoration-color: var(--color-black);
}
.page-template-template-landing .block-form .contact-form label.privacy-policy a:hover {
  text-decoration: none;
}
.page-template-template-landing .block-form .contact-form .ginput_container_consent {
  margin-left: 0;
  display: flex;
  align-items: center;
}
.page-template-template-landing .block-form .contact-form .ginput_container_consent .gfield_consent_label {
  margin-left: 15px;
}
.page-template-template-landing .block-form .contact-form .ginput_container_consent input[type=checkbox] {
  border-color: var(--focus-blue);
}
.page-template-template-landing .block-form .contact-form .ginput_container_consent input[type=checkbox]:before {
  background-image: none;
  background-color: var(--focus-blue);
}
.page-template-template-landing .block-form .contact-form input[type=submit] {
  background-color: var(--focus-blue);
  font-family: var(--font-elza);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  max-width: unset;
  padding: 25px 74px;
}
.page-template-template-landing .block-form .contact-form input[type=submit] {
  border-color: var(--focus-blue);
  font-size: 28px;
}
.page-template-template-landing .block-form .contact-form input[type=text],
.page-template-template-landing .block-form .contact-form input[type=email],
.page-template-template-landing .block-form .contact-form input[type=tel],
.page-template-template-landing .block-form .contact-form select,
.page-template-template-landing .block-form .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 10px solid var(--focus-grey);
  font-size: 28px !important;
}
.page-template-template-landing .block-form .contact-form input[type=text]:focus-visible,
.page-template-template-landing .block-form .contact-form input[type=email]:focus-visible,
.page-template-template-landing .block-form .contact-form input[type=tel]:focus-visible,
.page-template-template-landing .block-form .contact-form select:focus-visible,
.page-template-template-landing .block-form .contact-form textarea:focus-visible {
  outline: 0;
}
.page-template-template-landing .block-form .contact-form input[type=text],
.page-template-template-landing .block-form .contact-form input[type=email],
.page-template-template-landing .block-form .contact-form input[type=tel],
.page-template-template-landing .block-form .contact-form select {
  padding: 1rem 0;
}
.page-template-template-landing .block-form .contact-form select {
  font-family: var(--font-elza);
  font-size: 28px;
}
.page-template-template-landing .block-form .contact-form select option {
  font-family: var(--font-elza);
  padding: 5px 15px;
}
.page-template-template-landing .block-form .form-heading h1, .page-template-template-landing .block-form .form-heading h2, .page-template-template-landing .block-form .form-heading h3, .page-template-template-landing .block-form .form-heading h4, .page-template-template-landing .block-form .form-heading h5, .page-template-template-landing .block-form .form-heading h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
}
@media (max-width: 1024px) {
  .page-template-template-landing .block-form .form-heading h1, .page-template-template-landing .block-form .form-heading h2, .page-template-template-landing .block-form .form-heading h3, .page-template-template-landing .block-form .form-heading h4, .page-template-template-landing .block-form .form-heading h5, .page-template-template-landing .block-form .form-heading h6 {
    margin: 30px 0;
  }
}
.page-template-template-landing .block-form .form-heading p {
  font-size: 21px;
  font-family: var(--font-elza-paragraph);
}
@media (min-width: 768px) {
  .page-template-template-landing .block-form .form-heading p {
    text-align: right;
    font-size: 24px;
  }
}
.page-template-template-landing .block-form .form-heading .phone-numbers p {
  color: var(--focus-blue);
  font-size: 22px;
  font-style: italic;
  font-family: var(--font-georgia-paragraph);
}
@media (min-width: 768px) {
  .page-template-template-landing .block-form .form-heading .phone-numbers p {
    text-align: right;
  }
}
.page-template-template-landing .block-form .col-md-6,
.page-template-template-landing .block-form .col-lg-6 {
  padding: 0;
}
.page-template-template-landing .validation_message {
  font-family: var(--font-elza);
  font-size: 28px;
}
.page-template-template-landing span.gfield_required.gfield_required_text {
  font-size: 0;
}
.page-template-template-landing .gfield_error span.gfield_required.gfield_required_text::before {
  color: #c02b0a;
}
.page-template-template-landing span.gfield_required.gfield_required_text::before {
  content: "*";
  color: var(--color-form-label-text);
  font-size: 28px;
}

.editor-styles-wrapper,
.article-content {
  max-width: 100%;
  padding-bottom: var(--padding-block);
  padding-left: 0;
  padding-right: 0;
  padding-top: var(--padding-block);
}

.article-content > [class^=wp-block-],
.is-root-container > *,
.article-content > * {
  line-height: var(--line-height-paragraph);
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
@media (max-width: 840px) {
  .article-content > [class^=wp-block-],
  .is-root-container > *,
  .article-content > * {
    padding-left: var(--padding-container-horizontal);
    padding-right: var(--padding-container-horizontal);
  }
  .article-content > [class^=wp-block-].alignfull,
  .is-root-container > *.alignfull,
  .article-content > *.alignfull {
    padding-left: var(--padding-container-horizontal);
    padding-right: var(--padding-container-horizontal);
    width: calc(100% - var(--padding-container-horizontal) * 2);
  }
}

.editor-styles-wrapper .alignleft > *,
.article-content .alignleft > * {
  float: left;
}
.editor-styles-wrapper .alignright > *,
.article-content .alignright > * {
  float: right;
}
.editor-styles-wrapper .alignleft > img,
.article-content .alignleft > img {
  margin-bottom: var(--margin-between-paragraphs);
  margin-right: var(--padding-container-horizontal);
  margin-top: var(--margin-between-paragraphs);
}
.editor-styles-wrapper .alignleft > img + figcaption,
.article-content .alignleft > img + figcaption {
  margin-top: 0;
}
.editor-styles-wrapper .alignright > img,
.article-content .alignright > img {
  margin-bottom: var(--margin-between-paragraphs);
  margin-left: var(--padding-container-horizontal);
  margin-top: var(--margin-between-paragraphs);
}
.editor-styles-wrapper .alignright > img + figcaption,
.article-content .alignright > img + figcaption {
  margin-top: 0;
}
.editor-styles-wrapper .alignwide,
.article-content .alignwide {
  max-width: 1200px;
  padding-left: var(--padding-container-horizontal);
  padding-right: var(--padding-container-horizontal);
  width: 100%;
}
@media (min-width: 1240px) {
  .editor-styles-wrapper .alignwide,
  .article-content .alignwide {
    padding-left: 0;
    padding-right: 0;
  }
}
.editor-styles-wrapper .alignfull,
.article-content .alignfull {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.editor-styles-wrapper .alignfull.wp-block-image img,
.article-content .alignfull.wp-block-image img {
  border-radius: 0;
}
@media (min-width: 840px) {
  .editor-styles-wrapper .alignfull,
  .article-content .alignfull {
    margin-bottom: var(--padding-block);
    margin-top: var(--padding-block);
    max-width: 100%;
    width: 100%;
  }
}

.editor-styles-wrapper figcaption,
.editor-styles-wrapper cite,
.editor-styles-wrapper small,
.article-content figcaption,
.article-content cite,
.article-content small {
  border: 0;
  color: var(--color-caption);
  font-size: var(--font-size-captions);
  font-style: normal;
  margin-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  max-width: 800px;
  padding-bottom: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 550px) {
  .editor-styles-wrapper figcaption,
  .editor-styles-wrapper cite,
  .editor-styles-wrapper small,
  .article-content figcaption,
  .article-content cite,
  .article-content small {
    margin-top: 2rem;
  }
}
.editor-styles-wrapper .wp-block-image figcaption,
.editor-styles-wrapper .wp-block-image .alignright > figcaption,
.editor-styles-wrapper .wp-block-image .aligncenter > figcaption,
.editor-styles-wrapper .wp-block-image.is-resized > figcaption,
.article-content .wp-block-image figcaption,
.article-content .wp-block-image .alignright > figcaption,
.article-content .wp-block-image .aligncenter > figcaption,
.article-content .wp-block-image.is-resized > figcaption {
  display: block;
  width: 100%;
}
.editor-styles-wrapper cite,
.article-content cite {
  margin-bottom: 0;
}

.editor-styles-wrapper img,
.article-content img {
  border-radius: 4px;
}

kbd {
  background-color: var(--color-kbd-background);
  border: 1px solid var(--color-kbd-border);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(22, 22, 22, 0.2), 0 0 0 2px var(--color-white) inset;
  color: var(--color-paragraph);
  display: inline-block;
  line-height: 1.4;
  padding: 0 0.5rem;
  text-shadow: 0 1px 0 var(--color-white);
  white-space: nowrap;
}

a {
  color: var(--color-link-text);
  text-decoration: underline;
  text-decoration-color: var(--color-link-text);
  text-underline-offset: 6px;
}
a:hover, a:focus {
  color: var(--color-link-text-hover);
  text-decoration-color: var(--color-link-text-hover);
}

p {
  color: var(--color-paragraph);
  line-height: var(--line-height-paragraph);
}

ul li,
ol li {
  font-family: var(--font-elza);
  font-size: var(--font-size-16);
}

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