@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap);
/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 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; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  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;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 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 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 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; /* 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.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-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; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * 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 control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * 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;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-smooth: always;
  margin: 0;
}

body {
  color: #091420;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans", "Ubuntu", "Droid Sans", "Helvetica Neue", sans-serif;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  font-size: 1.8rem;
}

p,
li {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #091420;
}

a {
  color: var(--primary);
  text-decoration: none;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}

/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Based on Reboot from Bootstrap 4.2.1
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */
/**
 * IE10+ doesn't honor `<meta name="viewport">` in some cases
 */
@-ms-viewport {
  width: device-width;
}
/**
 * general reset
 */
html, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/**
 * HTML5 display-role reset for older browsers
 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section,
main, summary {
  display: block;
}

/**
 * inherit box model for all elements
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * html root rules
 * 1. set border-box for inheritance
 * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 *    CSS property
 * 3. Prevent adjustments of font size after orientation changes in IE, on
 *    Windows Phone and iOS.
 * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * 5. Change the default tap highlight to be completely transparent in iOS.
 */
html {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/**
 * body rules
 * 1. reset line-height to 1
 * 2. set base font-family to sans-serif
 * 3. Set an explicit initial text-align value so that we can later use the
 *    `inherit` value on things like `<th>` elements.
 */
body {
  /* 1 */
  line-height: 1;
  /* 2 */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans", "Ubuntu", "Droid Sans", "Helvetica Neue", sans-serif;
  /* 3 */
  text-align: left;
}

/**
 * Lists
 */
/**
 * Quotes
 */
blockquote, q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
 * Table Headers
 * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 *    closest parent with a set `text-align`.
 */
th {
  /* 1 */
  text-align: inherit;
}

/**
 * Horizontal Lines
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}

/**
 * Preformatted Text
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Don't allow content to break outside
 * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 *    counteract.
 */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * 3. Add explicit cursor to indicate changed behavior.
 * 4. Prevent the text-decoration to be skipped.
 */
abbr[title] {
  /* 1 */
  border-bottom: none;
  /* 2 */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 3 */
  cursor: help;
  /* 4 */
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/**
 * Hide SVG overflow in IE
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * Details at https://github.com/twbs/bootstrap/issues/24093
 */
button {
  border-radius: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 * Credit: https://github.com/suitcss/base/
 */
/**
 * form element resets
 * 1. Remove the margin in Firefox and Safari
 * 2. inherit font rules
 */
input,
button,
select,
optgroup,
textarea {
  /* 1 */
  margin: 0;
  /* 2 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=reset],
[type=submit],
[type=button] {
  /* 2 */
  -webkit-appearance: button;
}

/**
 * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * bug where setting a custom line-height prevents text from being vertically
 * centered within the input.
 * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * and https://github.com/twbs/bootstrap/issues/11266
 */
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  overflow: auto;
  resize: vertical;
}

/**
 * Show the overflow in IE.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  text-transform: none;
}

/**
 * Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 */
select {
  word-wrap: normal;
}

/**
 * Remove inner border and padding from Firefox, but don't restore the outline
 * like Normalize.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * 1. Add the correct box sizing in IE 10-
 * 2. Remove the padding in IE 10-
 */
input[type=radio],
input[type=checkbox] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
 */
[tabindex="-1"]:focus {
  outline: 0 !important;
}

/**
 * Browsers set a default `min-width: min-content` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * So we reset that to ensure fieldsets behave more like a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
fieldset {
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Set display to block for all browsers
 */
legend {
  /* 1 */
  max-width: 100%;
  white-space: normal;
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * Correct element display for output
 */
output {
  display: inline-block;
}

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

[hidden] {
  display: none;
}

html {
  font-size: 62.5%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-smooth: always;
  margin-top: 0;
  height: -webkit-fill-available;
}

body {
  color: #091420;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans", "Ubuntu", "Droid Sans", "Helvetica Neue", sans-serif;
  background: #fff;
  width: 100%;
  margin: 0;
  min-height: -webkit-fill-available;
}

ul li,
ol li {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #091420;
}
ul li::marker,
ol li::marker {
  color: var(--primary);
  background: var(--primary);
}

code {
  font-size: 1.6rem !important;
  padding: 0.3rem;
  border-radius: 3px;
  color: #292929;
  background-color: lightgray;
}

ul.list {
  margin: 1rem 0;
  padding-left: 2rem;
  list-style: none;
}
ul.list li {
  position: relative;
  font-size: inherit;
  line-height: 1.9;
}
ul.list li:before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: -1.5rem;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50px;
  opacity: 1;
}

ul.no-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
ul.no-list li {
  line-height: 1;
}
ul.no-list li:before {
  display: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-right: 6vw;
  padding-left: 6vw;
}
@media (min-width: 1400px) {
  .container {
    padding-right: 2vw;
    padding-left: 2vw;
  }
}
@media (max-width: 991px) {
  .container {
    padding: 0 5vw;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 3vw;
  }
}

main section {
  padding-bottom: 7rem;
}
@media (min-width: 992px) {
  main section {
    padding-bottom: 14rem;
  }
}
main section:not(:first-of-type) {
  padding: 7rem 0;
}
@media (min-width: 992px) {
  main section:not(:first-of-type) {
    padding: 14rem 0;
  }
}
main section + .white {
  padding-top: 0;
}

@media (min-width: 768px) {
  .m-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .t-only {
    display: none;
  }
}
@media (min-width: 992px) {
  .t-only {
    display: none;
  }
}

.d-only {
  display: none;
}
@media (min-width: 992px) {
  .d-only {
    display: inline-block;
  }
}

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

iframe {
  max-width: 100%;
  max-height: 200px;
}
@media (min-width: 540px) {
  iframe {
    max-height: 280px;
  }
}
@media (min-width: 768px) {
  iframe {
    max-height: 360px;
  }
}
@media (min-width: 992px) {
  iframe {
    max-height: 400px;
  }
}

.caret-right {
  width: 0;
  height: 0;
  display: inline-block;
  border: 5px solid transparent;
  border-left-color: rgba(var(--primary), 0.5);
}

h1,
h2,
h3,
h4 {
  position: relative;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary);
}

h1 {
  margin: 0 0 2rem 0;
  font-weight: 800;
  font-size: 36px;
}
@media (min-width: 1024px) {
  h1 {
    font-size: calc(1.5957446809vw + 19.6595744681px);
  }
}
@media (min-width: 1400px) {
  h1 {
    font-size: 42px;
  }
}

h2 {
  color: var(--primary);
  margin: 0 0 2rem 0;
  font-size: 2.4rem;
}

h3 {
  margin: 0 0 1.5rem 0;
  font-weight: 300;
  font-size: 18px;
}
@media (min-width: 320px) {
  h3 {
    font-size: calc(0.2840909091vw + 17.0909090909px);
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  margin: 0 0 1.5rem 0;
  font-weight: 300;
  font-size: 10px;
}
@media (min-width: 320px) {
  h4 {
    font-size: calc(0.4464285714vw + 8.5714285714px);
  }
}
@media (min-width: 768px) {
  h4 {
    font-size: calc(2.34375vw - 6px);
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 18px;
  }
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.align-center {
  text-align: center;
  margin: 0 auto;
  display: block;
}

.white {
  color: #fff;
}

.responsive-embed {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.grecaptcha-badge {
  display: none;
}

.cta {
  width: 100%;
  padding: 2rem 0;
}
.cta.center {
  text-align: center;
}

/**
 * Default WordPress image alignment styles.
 */
.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

/**
 * Default WordPress gallery styles.
 */
.gallery {
  margin-bottom: 1.5em;
}

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

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/**
 * Default WordPress media styles.
 */
video,
object {
  max-width: 100%;
  height: auto;
}

pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
}

.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}

.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/**
 * Screen Reader Text
 *
 * Hide text from vision that is only useful for screen readers users.
 * https://make.wordpress.org/accessibility/handbook/markup/the-css-class-screen-reader-text/
 *
 */
.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 !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/**
 * Default WordPress typography styles.
 */
dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

.button, .ppw-post-password-container form .ppw-ppf-input-container .ppw-pwd-submit-btn {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 1.5rem 2rem 1.5rem 2rem;
  transition: all 0.3s cubic-bezier(0.24, 0.9, 0.46, 0.91);
  border-radius: 0.6rem;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 2rem 0;
  border: 1px solid transparent;
}
.button.primary, .ppw-post-password-container form .ppw-ppf-input-container .ppw-pwd-submit-btn {
  background-color: var(--primary);
  color: #fff;
}
.button.primary:hover, .ppw-post-password-container form .ppw-ppf-input-container .ppw-pwd-submit-btn:hover {
  background-color: var(--primary-dark);
}
.button.secondary, .ppw-post-password-container form .ppw-ppf-input-container .secondary.ppw-pwd-submit-btn {
  background-color: var(--secondary);
  color: #fff;
}
.button.secondary:hover, .ppw-post-password-container form .ppw-ppf-input-container .secondary.ppw-pwd-submit-btn:hover {
  background-color: var(--secondary-dark);
}

ul.ui-menu {
  position: relative;
  display: block;
  list-style: none;
  padding-left: 0;
  margin-top: 7rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
ul.ui-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -1px;
  width: calc(100% + 2px);
  height: 1rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
ul.ui-menu li {
  font-size: 1.4rem;
  display: block;
}
ul.ui-menu li a {
  display: block;
  padding: 1rem;
}
ul.ui-menu li a:hover {
  background: var(--primary) -light;
}

input:focus-visible {
  outline: 0;
}

.ui-helper-hidden-accessible {
  display: none;
}

.panel {
  position: relative;
  margin: 1.5rem 0;
  padding: 1.2rem 2rem 1.2rem 6rem;
}
.panel p {
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  line-height: 24px !important;
}
.panel:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 1.8rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.panel.panel-success {
  background: rgba(0, 127, 76, 0.1);
}
.panel.panel-success:before {
  background: url("../images/icon-success.svg");
  height: 2rem;
}
.panel.panel-warning {
  background: rgba(255, 136, 0, 0.1);
}
.panel.panel-warning:before {
  background: url("../images/icon-warning.svg");
}
.panel.panel-alert {
  background: rgba(236, 5, 0, 0.1);
}
.panel.panel-alert:before {
  background: url("../images/icon-alert.svg");
  height: 2rem;
}
.panel.panel-info {
  background: rgba(0, 63, 191, 0.1);
}
.panel.panel-info:before {
  background: url("../images/icon-info.svg");
  height: 2rem;
}

#tinymce {
  padding: 1rem !important;
}

.ppw-post-password-container {
  background-color: var(--primary-light);
  padding: 4rem;
  border-radius: 5px;
}
.ppw-post-password-container form {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans", "Ubuntu", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
}
.ppw-post-password-container form .ppw-ppf-input-container {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  text-align: center;
}
.ppw-post-password-container form .ppw-ppf-input-container .ppw-ppf-desc {
  text-align: center;
}
.ppw-post-password-container form .ppw-ppf-input-container .ppw-pwd-label {
  width: 100%;
}
.ppw-post-password-container form .ppw-ppf-input-container .ppw-pwd-label input {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 0;
  border-color: #0000;
  font-size: 2.4rem;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  line-height: 1;
  text-align: center;
  border-bottom: 1px solid var(--primary);
}
.ppw-post-password-container form .ppw-ppf-input-container .ppw-pwd-submit-btn {
  text-align: center;
}
.ppw-post-password-container .ppwp-wrong-pw-error {
  text-align: center;
  margin-top: 2rem;
}
.ppw-post-password-container .ppwp-wrong-pw-error.ppw-ppf-error-msg {
  font-weight: 600;
}

header .custom-logo-link {
  display: inline-block;
  max-height: 5.5rem;
}
header .custom-logo-link img {
  max-height: 7rem;
  max-width: 22rem;
  width: auto;
}
header #breadcrumbs {
  font-size: 1.4rem;
}
header #breadcrumbs span a {
  text-decoration: underline;
}

.wrapper {
  height: 100%;
  display: flex;
}

#side-nav {
  display: block;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  padding: 3.5rem 2rem 3rem 3rem;
  height: 100vh;
  z-index: 999;
  transition: 0.3s ease-out;
}
#side-nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-light);
  z-index: -1;
}
#side-nav.open-menu {
  left: 0;
}
#side-nav a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans", "Ubuntu", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
}
@media (max-width: 991px) {
  #side-nav {
    left: -100%;
    box-shadow: 1px 0px 7px 0px rgba(0, 0, 0, 0.1);
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  #side-nav {
    flex: 0 0 auto;
    width: 25%;
  }
}
#side-nav .tree {
  max-height: 70%;
  overflow-y: auto;
  margin-top: 5rem;
  /* Scrollbar Styling */
}
#side-nav .tree::-webkit-scrollbar {
  width: 3px;
}
#side-nav .tree::-webkit-scrollbar-track {
  background-color: var(--primary-light-mid);
  border-radius: 10px;
}
#side-nav .tree::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(var(--primary), 0.7);
}
#side-nav .tree ul {
  list-style: none;
}
#side-nav .tree ul li a {
  color: #000;
}
#side-nav .tree > ul {
  padding: 0;
  margin-top: 5rem;
}
#side-nav .tree > ul > li {
  margin-top: 3rem;
}
#side-nav .tree > ul > li > a {
  font-weight: bold;
  color: var(--secondary);
}
#side-nav .tree > ul > li > ul li.page_item:not(.page_item_has_children) {
  list-style: disc;
}
#side-nav .tree > ul > li > ul li.page_item_has_children {
  position: relative;
}
#side-nav .tree > ul > li > ul li.page_item_has_children:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 1.3rem;
  left: -1.9rem;
  transform: translateY(-50%);
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-weight: 600;
  height: 8px;
  line-height: 12px;
  text-rendering: auto;
  width: 8px;
  -webkit-font-smoothing: antialiased;
  transition: 0.2s ease-out;
  color: var(--primary);
}
#side-nav .tree > ul > li > ul li.page_item_has_children.current_page_item:before, #side-nav .tree > ul > li > ul li.page_item_has_children.current_page_parent:before {
  transform: rotate(90deg);
  transform-origin: center center;
  top: 1.3rem;
  left: -1.8rem;
}
#side-nav .tree > ul > li > ul .current_page_ancestor > a,
#side-nav .tree > ul > li > ul .current_page_item > a {
  color: var(--primary);
}
#side-nav .tree > ul > li > ul > li {
  margin-top: 1rem;
}
#side-nav .tree > ul > li > ul > li a {
  font-size: 1.4rem;
}
#side-nav .tree > ul > li > ul > li > ul > li {
  margin-top: 0.5rem;
}
#side-nav .current_page_item > a {
  color: var(--primary);
  font-weight: 700;
}
#side-nav .copyright {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  font-size: 1.2rem;
}

.children {
  display: none;
}
.current_page_item > .children {
  display: block;
}
.current_page_item > .children li {
  margin-top: 2.5rem;
}
.current_page_item > .children li a {
  color: #091420;
  font-size: 1.4rem;
}
.current_page_ancestor > .children {
  display: block;
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 998;
  border-bottom: 1px solid lightgrey;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .header-nav {
    display: none;
  }
}

.logged-in .wrapper .header-nav {
  top: 30px;
}
@media (max-width: 781px) {
  .logged-in .wrapper .header-nav {
    top: 46px;
  }
}
.logged-in #side-nav {
  padding-top: 67px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease-out;
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.burger__menu {
  position: relative;
  top: 0;
  left: 0;
  height: 2.4rem;
  display: inline-block;
  z-index: 9999;
  background-color: transparent;
  outline: 0;
  border: 0;
  cursor: pointer;
  z-index: 999;
  margin-left: auto;
  display: block;
}
@media (min-width: 992px) {
  .burger__menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .burger__menu.parent {
    top: 4rem;
    left: 2rem;
  }
}
.burger__menu.children {
  top: 0.1rem;
}
.burger__menu span {
  margin: 0 auto;
  position: relative;
  top: 0;
}

.burger__menu span:before,
.burger__menu span:after {
  position: absolute;
  content: "";
}

.burger__menu span,
.burger__menu span:before,
.burger__menu span:after {
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  display: block;
}

.burger__menu span:before {
  margin-top: -7px;
}

.burger__menu span:after {
  margin-top: 7px;
}

.burger span {
  transition-duration: 0s;
  transition-delay: 0.2s;
}

.burger span:before {
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}

.burger span:after {
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}

.burger__menu.open span {
  background-color: rgba(0, 0, 0, 0);
  transition-delay: 0.2s;
}
.burger__menu.open span:before {
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
.burger__menu.open span:after {
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

@media (max-width: 767px) {
  #right-nav {
    display: none;
  }
}
@media (min-width: 768px) {
  #right-nav {
    width: 20%;
    padding: 5.5rem 1rem 2rem 0;
  }
}
@media (min-width: 1200px) {
  #right-nav {
    padding: 3.5rem 5rem 5rem 5rem;
  }
}
#right-nav div.search-wrapper {
  position: relative;
}
#right-nav div.search-wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  width: 2rem;
  height: 2rem;
  background: url("../images/magnify-icon-2.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
#right-nav div.search-wrapper input {
  background: #fff;
  border-radius: 10px;
  border-color: transparent;
  font-size: 1.4rem;
  padding: 1.5rem 2rem 1.5rem 5rem;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.3);
  max-width: 100%;
}
#right-nav #on-this-page {
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding-top: 5rem;
}
@media (max-width: 767px) {
  #right-nav #on-this-page {
    display: none;
  }
}
#right-nav #on-this-page h4 {
  font-weight: 600;
}
#right-nav #on-this-page .on-this-page__list {
  list-style: none;
  padding-left: 0;
}
#right-nav #on-this-page .on-this-page__list li {
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans", "Ubuntu", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
  transition: 0.3s ease-out;
}
#right-nav #on-this-page .on-this-page__list li:hover {
  color: var(--secondary);
}
#right-nav #on-this-page .on-this-page__list li + li {
  margin-top: 1rem;
}
#right-nav #on-this-page .on-this-page__list li.active {
  font-weight: 700;
}

#content {
  display: flex;
  flex-flow: column wrap;
  padding: 5.5rem 2rem 3rem 2rem;
}
@media (min-width: 992px) {
  #content {
    margin-left: 25%;
    width: 70%;
    padding: 3.5rem 2rem 3rem 5rem;
    min-height: 70vh;
  }
}
#content header {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
}
#content header.header-article {
  width: 100%;
}
#content header.header-article h1 {
  display: block;
  width: 100%;
  margin-top: 5rem;
}
#content header .header-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#content header .header-wrapper h1 {
  margin-bottom: 0;
  margin-top: 5rem;
  color: #000;
  font-size: 24px;
}
@media (min-width: 768px) {
  #content header .header-wrapper h1 {
    font-size: calc(2.34375vw + 6px);
  }
}
@media (min-width: 1024px) {
  #content header .header-wrapper h1 {
    font-size: 30px;
  }
}
#content header .post-info {
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.6);
}
#content article {
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
#content article span.ancestor {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 2rem;
}
#content article h2 {
  color: #292929;
  font-weight: 700;
  font-size: 20px;
  margin: 2rem 0 1rem;
}
@media (min-width: 320px) {
  #content article h2 {
    font-size: calc(0.5681818182vw + 18.1818181818px);
  }
}
@media (min-width: 1024px) {
  #content article h2 {
    font-size: 24px;
  }
}
#content article h2.title-article {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0;
}
#content article p,
#content article li,
#content article a:not(.button),
#content article td {
  font-size: 1.6rem;
  line-height: 30px;
  font-weight: 400;
  color: #292929;
}
#content article a:not(.button) {
  text-decoration: underline;
}
#content article .list-articles li {
  color: var(--secondary);
}
#content article .list-articles li::marker {
  color: var(--secondary);
}
#content article .list-articles li + li {
  margin-top: 2rem;
}
#content article .list-articles li a {
  color: var(--secondary);
  font-size: 1.8rem;
  font-weight: 700;
}
#content article .list-articles li a:hover {
  text-decoration: underline;
}

footer .footer-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0 4rem;
  font-size: 1.2rem;
}
footer .footer-wrapper .copyright {
  color: var(--primary);
}
footer .footer-wrapper .made-by {
  display: flex;
}
footer .footer-wrapper .made-by p {
  font-size: 1.2rem;
}
footer .footer-wrapper .made-by a {
  margin-left: 1rem;
  width: 1.5rem;
}
footer .footer-wrapper .made-by a svg {
  max-width: 1.5rem;
  display: inline-block;
  height: 2rem;
}
footer .footer-wrapper .made-by a svg .a {
  transition: 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
footer .footer-wrapper .made-by a:hover svg .a {
  fill: var(--primary);
}
footer.footer-docs {
  padding: 4rem 2rem;
  background-color: rgba(var(--secondary), 0.1);
}
@media (min-width: 992px) {
  footer.footer-docs {
    padding: 4rem 5rem;
    margin-left: 25%;
  }
}
footer.footer-docs h2,
footer.footer-docs h3 {
  color: #000;
}
footer.footer-docs h2 {
  font-size: 2rem;
  font-weight: 700;
}

.home header {
  padding: 1.5rem 0;
}
@media (max-width: 991px) {
  .home header .custom-logo-link {
    text-align: center;
  }
}
.home main header {
  padding: 0;
  padding-bottom: 6rem;
}
.home main header .bg-header {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 12rem 0;
}
.home main header .bg-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  z-index: 0;
}
.home main header .content-header {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 4rem;
  background: rgba(255, 255, 255, 0.7);
  max-width: 60rem;
  z-index: 1;
}
.home main h1,
.home main h2 {
  text-align: center;
  color: var(--primary);
}
@media (min-width: 768px) {
  .home main .categories-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
  }
}
.home main .categories-wrapper .category-link {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  height: 23rem;
  overflow: hidden;
  transition: 0.3s ease-out;
  width: 100%;
}
.home main .categories-wrapper .category-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background: var(--gradient);
  transition: 0.3s ease-out;
}
.home main .categories-wrapper .category-link img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}
.home main .categories-wrapper .category-link h3 {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  font-weight: 700;
  color: #fff;
}
.home main .categories-wrapper .category-link:hover:before {
  transform: translateY(-25%);
}
.home #search {
  background: var(--primary-light);
  padding: 10rem 2rem;
  margin-top: 10rem;
}
.home #search h2 {
  font-weight: 700;
}
.home #search div.search-wrapper {
  position: relative;
  text-align: center;
  display: block;
  margin: 0 auto;
  max-width: 40rem;
}
.home #search div.search-wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  width: 2rem;
  height: 2rem;
  background: url("../images/magnify-icon-2.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.home #search div.search-wrapper input {
  background: #fff;
  border-radius: 10px;
  border-color: transparent;
  font-size: 1.4rem;
  padding: 1.5rem 2rem 1.5rem 5rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .home #search div.search-wrapper input {
    min-width: 40rem;
  }
}
.home ul.ui-menu {
  position: relative;
  display: block;
  list-style: none;
  padding-left: 0;
  margin-top: 7rem;
  border: 1px solid transparent;
  border-radius: 10px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.home ul.ui-menu:before {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.ui-menu {
  background-color: white;
}

.ui-menu-item {
  padding-bottom: 5px;
}

.error404 header {
  padding-top: 3.5rem;
  margin-bottom: 4rem;
}
.error404 main#page404 article .entry-content {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary), 0.1);
  height: calc(100vh - 193px);
}
@media (max-width: 767px) {
  .error404 main#page404 article .entry-content {
    padding-right: 2rem;
    padding-left: 2rem;
    text-align: center;
  }
  .error404 main#page404 article .entry-content h2 {
    margin-top: 1.5rem;
  }
}
.error404 main#page404 div.search-wrapper {
  position: relative;
  text-align: center;
  display: block;
  margin: 0 auto;
  max-width: 40rem;
  margin-top: 4rem;
}
.error404 main#page404 div.search-wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  width: 2rem;
  height: 2rem;
  background: url("../images/magnify-icon-2.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.error404 main#page404 div.search-wrapper input {
  background: #fff;
  border-radius: 10px;
  border-color: transparent;
  font-size: 1.4rem;
  padding: 1.5rem 2rem 1.5rem 5rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .error404 main#page404 div.search-wrapper input {
    min-width: 40rem;
  }
}
.error404 ul.ui-menu {
  position: relative;
  display: block;
  list-style: none;
  padding-left: 0;
  margin-top: 7rem;
  border: 1px solid transparent;
  border-radius: 10px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.error404 ul.ui-menu:before {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.mdl {
  margin: 3rem 0;
  padding: 6rem 0 0;
}
.mdl:last-child {
  padding: 6rem 0;
}

.mdl.mdl-img img {
  display: block;
  max-width: 680px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.mdl.mdl-img small {
  display: block;
  margin-top: 1rem;
  color: #686F7C;
  text-align: center;
}

.mdl.mdl-img-txt {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
}
@media (min-width: 992px) {
  .mdl.mdl-img-txt .img-wrapper {
    width: calc(40% - 2rem);
  }
}
@media (min-width: 992px) {
  .mdl.mdl-img-txt .txt {
    width: calc(40% - 2rem);
  }
}
@media (max-width: 991px) {
  .mdl.mdl-img-txt.align-left .img-wrapper {
    margin-bottom: 2rem;
  }
}
.mdl.mdl-img-txt.align-right .img-wrapper {
  order: 2;
}

.mdl.mdl-quote,
.blockquote {
  position: relative;
  margin-left: 1rem;
  padding-left: 3.2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.mdl.mdl-quote:before,
.blockquote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  height: 100%;
  background: rgba(104, 111, 124, 0.7);
}
.mdl.mdl-quote p,
.blockquote p {
  color: rgba(104, 111, 124, 0.7);
}

.accordeon .accordeon__item {
  position: relative;
  border-bottom: 2px solid var(--primary);
}
.accordeon .accordeon__item .content {
  padding: 0;
}
.accordeon .accordeon__item + .accordeon__item {
  margin-top: 2rem;
}
.accordeon .accordeon__item .accordeon__item--title {
  position: relative;
  cursor: pointer;
  padding: 2rem 5rem 2rem 2rem;
}
.accordeon .accordeon__item .accordeon__item--title h4 {
  margin-bottom: 0;
  font-weight: 700;
}
.accordeon .accordeon__item .accordeon__item--title .date {
  display: inline-block;
  margin-right: 2rem;
  font-size: 12px;
}
@media (min-width: 320px) {
  .accordeon .accordeon__item .accordeon__item--title .date {
    font-size: calc(0.8928571429vw + 9.1428571429px);
  }
}
@media (min-width: 768px) {
  .accordeon .accordeon__item .accordeon__item--title .date {
    font-size: calc(1.5625vw + 4px);
  }
}
@media (min-width: 1024px) {
  .accordeon .accordeon__item .accordeon__item--title .date {
    font-size: 20px;
  }
}
.accordeon .accordeon__item .accordeon__item--title h3 {
  display: inline-block;
  color: var(--primary);
  margin: 0;
  font-size: 14px;
}
@media (min-width: 320px) {
  .accordeon .accordeon__item .accordeon__item--title h3 {
    font-size: calc(1.3392857143vw + 9.7142857143px);
  }
}
@media (min-width: 768px) {
  .accordeon .accordeon__item .accordeon__item--title h3 {
    font-size: calc(1.5625vw + 8px);
  }
}
@media (min-width: 1024px) {
  .accordeon .accordeon__item .accordeon__item--title h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .accordeon .accordeon__item .accordeon__item--title h3 {
    display: block;
  }
}
.accordeon .accordeon__item .accordeon__item--title .expand {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
  display: block;
  height: 1.6rem;
  width: 1.6rem;
  right: 2rem;
}
.accordeon .accordeon__item .accordeon__item--title .expand.rotate .line.line2 {
  top: 7px;
  left: 0px;
  transform: rotate(0deg);
  transform-origin: center;
}
.accordeon .accordeon__item .accordeon__item--title .expand .line {
  background: var(--primary);
  width: 1.6rem;
  height: 0.2rem;
  display: block;
  left: 0px;
  top: 7px;
  position: absolute;
}
.accordeon .accordeon__item .accordeon__item--title .expand .line.line2 {
  transform: rotate(-90deg);
  transform-origin: top center;
  position: absolute;
  top: 8px;
  left: -1px;
}
.accordeon .accordeon__item .accordeon__item--content {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
  overflow: hidden;
  padding: 0 4rem;
}
.accordeon .accordeon__item .accordeon__item--content .button, .accordeon .accordeon__item .accordeon__item--content .ppw-post-password-container form .ppw-ppf-input-container .ppw-pwd-submit-btn, .ppw-post-password-container form .ppw-ppf-input-container .accordeon .accordeon__item .accordeon__item--content .ppw-pwd-submit-btn {
  margin-left: auto;
  margin-bottom: 0;
}
.accordeon .accordeon__item .accordeon__item--content.expanded {
  opacity: 1;
  max-height: 300vh;
}

.mdl.mdl-evidence {
  background: var(--primary) -light;
  padding: 3rem;
}

.table:not(#wpcontent) {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
}
.table:not(#wpcontent) tr {
  border: 1px solid #ddd;
  padding: 5px;
}
.table:not(#wpcontent) tr:nth-child(2n) {
  background: rgba(var(--primary), 0.05);
}
.table:not(#wpcontent) th,
.table:not(#wpcontent) td {
  padding: 15px 10px;
  text-align: center;
  border-right: 1px solid #ccc;
}
.table:not(#wpcontent) th {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--primary-light);
  color: var(--primary);
}
.table:not(#wpcontent) td {
  font-size: 1.6rem;
  text-align: left;
  line-height: 22px;
}

.mdl.mdl-file ul {
  list-style: none;
  padding: 0;
}
.mdl.mdl-file ul li {
  border: 1px solid var(--secondary);
  border-radius: 5px;
  padding: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.mdl.mdl-file ul li + li {
  margin-top: 2rem;
}
.mdl.mdl-file ul li > div:first-of-type {
  flex: 1;
  margin-right: 2rem;
}
.mdl.mdl-file ul li > div:first-of-type h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.mdl.mdl-file ul li > div:nth-of-type(2) {
  text-align: center;
}
.mdl.mdl-file ul li a {
  text-align: center;
  text-decoration: none;
}
.mdl.mdl-file ul li a svg {
  width: 3rem;
  text-align: center;
  margin: 0 auto;
}
.mdl.mdl-file ul li a small {
  display: block;
  text-decoration: none;
}

.mdl.mdl-tiles .tiles-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 6rem;
}
.mdl.mdl-tiles .tiles-list li {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.mdl.mdl-tiles .tiles-list li .content {
  padding-left: 2rem;
  text-align: left;
  font-weight: 700;
}
@media (max-width: 767px) {
  .mdl.mdl-tiles .tiles-list li .content {
    text-align: center;
  }
}
.mdl.mdl-tiles .tiles-list li a:not(.popup-lightbox) {
  position: relative;
  min-height: 20rem;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding: 3.5rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease-out;
}
.mdl.mdl-tiles .tiles-list li a:not(.popup-lightbox):hover {
  transform: translateY(-5px);
  box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.3);
}
.mdl.mdl-tiles .tiles-list li a:not(.popup-lightbox) h3 {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
.mdl.mdl-tiles .tiles-list li a:not(.popup-lightbox):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-light-high);
}
.mdl.mdl-tiles .tiles-list li a:not(.popup-lightbox).item-tile-link {
  text-decoration: none !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.mdl.mdl-tiles .tiles-list.document {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.mdl.mdl-tiles .tiles-list.document li {
  width: 100%;
  min-height: 160px;
}
@media (min-width: 768px) {
  .mdl.mdl-tiles .tiles-list.document li {
    width: calc(50% - 2rem);
  }
}
.mdl.mdl-tiles .tiles-list a.popup-lightbox {
  position: relative;
  transition: 0.3s;
}
.mdl.mdl-tiles .tiles-list a.popup-lightbox:hover {
  opacity: 0.8;
}
.mdl.mdl-tiles .tiles-list a.popup-lightbox:before {
  content: "";
  content: "";
  position: absolute;
  left: -20px;
  width: 5rem;
  height: 5rem;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  border-radius: 50px;
  background: var(--primary-light-high);
}
.mdl.mdl-tiles .tiles-list a.popup-lightbox:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 13px;
  border-color: transparent transparent transparent #ffffff;
}

.mdl.mdl-title-tiles {
  background: var(--primary-light);
  margin: 9rem 0;
}
@media (min-width: 768px) {
  .mdl.mdl-title-tiles .module-title-tiles {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .mdl.mdl-title-tiles .module-title-tiles > div {
    width: calc(50% - 2rem);
  }
  .mdl.mdl-title-tiles .module-title-tiles > div p {
    max-width: 50rem;
  }
}
.mdl.mdl-title-tiles .module-title-tiles .title-tiles-list {
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .mdl.mdl-title-tiles .module-title-tiles .title-tiles-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.mdl.mdl-title-tiles .module-title-tiles .title-tiles-list li {
  background: var(--primary);
  border-radius: 10px;
}
.mdl.mdl-title-tiles .module-title-tiles .title-tiles-list li a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  padding: 1.5rem;
}
.mdl.mdl-title-tiles .module-title-tiles .title-tiles-list li a h3 {
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
}
