@charset "UTF-8";
/* MEBP 2025 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Mono&display=swap");
/* DESTYLE */
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
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.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * 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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

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

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

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

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

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

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* RESPONSIVE */
strong,
b {
  font-weight: 700;
  font-style: normal;
}

em,
i {
  font-weight: inherit;
  font-style: italic;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  font-style: normal;
}
@media (max-width: 1440px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  body {
    font-size: 15px;
  }
}

main#region_main input:not([type=submit]):not([type=reset]),
main#region_main textarea, main#region_main select {
  font-family: "PT Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

main#region_main h1 {
  font-size: 4em;
  font-weight: 200;
  line-height: 1;
  margin: 0 0 0.25em 0;
}
@media (max-width: 1440px) {
  main#region_main h1 {
    font-size: 3em;
  }
}
@media (max-width: 720px) {
  main#region_main h1 {
    font-size: 2.5em;
  }
}
main#region_main h2 {
  font-size: 3em;
  font-weight: 200;
  line-height: 1;
  margin: 0 0 0.5em 0;
  padding: 0 0 0.25em 0;
}
@media (max-width: 1440px) {
  main#region_main h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 720px) {
  main#region_main h2 {
    font-size: 2em;
  }
}
main#region_main h3 {
  font-size: 1.5em;
  line-height: 1;
  margin: 0 0 0.75em 0;
}
@media (max-width: 720px) {
  main#region_main h3 {
    font-size: 1.33em;
  }
}
main#region_main h4 {
  font-size: 1.25em;
  line-height: 1;
  margin: 0 0 0.75em 0;
  text-transform: uppercase;
}
main#region_main h5 {
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.75em 0;
}
main#region_main h6 {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 0 0;
}
main#region_main p {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}
main#region_main ul,
main#region_main ol {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}
main#region_main ul li,
main#region_main ol li {
  position: relative;
  padding: 0 0 0.75em 2em;
}
main#region_main ul li::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0.25em;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
}
main#region_main ol {
  counter-reset: ol-counter;
}
main#region_main ol li::before {
  content: counter(ol-counter);
  counter-increment: ol-counter;
  position: absolute;
  top: 0;
  left: 0.25em;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
}
main#region_main details summary {
  font-weight: 600;
  cursor: pointer;
  padding: 0.5em 0;
}
main#region_main details .content {
  padding: 0 20px;
}

main#region_main input[type=checkbox],
main#region_main input[type=radio], main#region_main table .form-element label, .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 960px) {
  main#region_main .table-wrapper {
    width: 100%;
    padding: 10px;
    overflow-x: auto;
    border-radius: 30px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
  }
  main#region_main .table-wrapper table {
    width: auto;
    min-width: 100%;
    margin-right: 10px;
  }
}
main#region_main table {
  width: 100%;
  margin-bottom: 1.5em;
  background-color: rgb(233, 233, 233);
  border-spacing: 0;
  border-collapse: separate;
  border: 2px solid rgb(205, 205, 205);
  border-radius: 20px;
  font-size: 0.875em;
}
main#region_main table thead tr th,
main#region_main table thead tr td {
  padding: 1.5em 0.5em;
  border-bottom: 2px solid rgb(205, 205, 205);
  vertical-align: middle;
}
main#region_main table tbody tr th,
main#region_main table tbody tr td {
  padding: 0.5em;
  vertical-align: middle;
}
main#region_main table tbody tr td a {
  background-color: rgb(78, 136, 199);
  color: white;
  text-shadow: 0 2px 4px rgb(48.1888412017, 98.0987124464, 152.3111587983);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  padding: 0 2em;
  border-radius: 1.5em;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
}
main#region_main table tbody tr td a:hover {
  background-color: rgb(60.4463519313, 123.0515021459, 191.0536480687);
}
@media (max-width: 720px) {
  main#region_main table tbody tr td a {
    display: flex;
    margin: 0 0 0.25em 0;
  }
}
main#region_main table tbody tr td a:hover {
  outline: 3px solid rgb(48, 98, 152);
}
main#region_main table tbody tr td a:focus {
  background-color: rgb(48, 98, 152);
  color: white;
  outline: 3px solid rgb(33, 71, 108);
  text-shadow: none;
}
main#region_main table tbody tr td a {
  font-size: 0.75em;
}
main#region_main table tfoot tr th,
main#region_main table tfoot tr td {
  padding: 1.5em 0.5em;
  border-top: 2px solid rgb(205, 205, 205);
  vertical-align: middle;
}

main#region_main {
  width: 100%;
}
main#region_main .row {
  display: flex;
  flex-direction: row;
}
main#region_main .row .form-element {
  flex-grow: 1;
}
main#region_main .row .form-element:not(:last-child) {
  padding-right: 0.5em;
}
@media (max-width: 720px) {
  main#region_main .row {
    flex-direction: column;
  }
  main#region_main .row .form-element:not(:last-child) {
    padding-right: 0;
  }
}
main#region_main .form-element {
  display: flex;
  flex-direction: column-reverse;
  padding: 0 0 1.5em 0;
}
main#region_main .form-element.conditional {
  width: 100%;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
main#region_main .form-element.conditional input[type=checkbox] ~ input {
  display: none;
  order: -1;
}
main#region_main .form-element.conditional input[type=checkbox]:checked ~ input {
  display: initial;
  flex-grow: 1;
  margin-bottom: 0.5em;
}
main#region_main .form-element.currency input::-webkit-outer-spin-button,
main#region_main .form-element.currency input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
main#region_main .form-element.currency input[type=number] {
  -moz-appearance: textfield;
}
main#region_main .form-element.currency::before {
  content: "$";
  margin-right: 0.5em;
}
main#region_main .form-element.currency .operator {
  margin: 0 0.5em;
}
main#region_main label {
  display: block;
  margin: 0 0 0.5em 0;
  font-size: 0.875em;
  font-weight: 600;
  line-height: 1;
}
main#region_main input:required + label::after,
main#region_main select:required + label::after,
main#region_main textarea:required + label::after,
main#region_main button:required + label::after {
  content: "*";
}
main#region_main input {
  display: flex;
  align-items: center;
  padding: 0 1em;
  background-color: white;
}
main#region_main input:not([type=submit]):not([type=reset]),
main#region_main textarea {
  height: 4em;
  border: 2px solid rgb(205, 205, 205);
  border-radius: 10px;
}
main#region_main input:not([type=submit]):not([type=reset]):hover,
main#region_main textarea:hover {
  border-color: rgb(78, 136, 199);
}
main#region_main input:not([type=submit]):not([type=reset]):focus,
main#region_main textarea:focus {
  outline: none;
  border-color: rgb(33, 71, 108);
}
main#region_main select {
  display: flex;
  align-items: center;
  height: 4em;
  padding: 0 1em;
  background-color: rgb(210, 225, 241);
  border: 2px solid rgb(171.1016949153, 199.0677966102, 228.8983050847);
  border-radius: 10px;
}
main#region_main select:hover {
  border-color: rgb(78, 136, 199);
}
main#region_main select:focus {
  outline: none;
  border-color: rgb(33, 71, 108);
}
main#region_main textarea {
  min-height: 8em;
  padding: 1em;
}
main#region_main button {
  background-color: rgb(78, 136, 199);
  color: white;
  text-shadow: 0 2px 4px rgb(48.1888412017, 98.0987124464, 152.3111587983);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  padding: 0 2em;
  border-radius: 1.5em;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
}
main#region_main button:hover {
  background-color: rgb(60.4463519313, 123.0515021459, 191.0536480687);
}
@media (max-width: 720px) {
  main#region_main button {
    display: flex;
    margin: 0 0 0.25em 0;
  }
}
main#region_main button:hover {
  outline: 3px solid rgb(48, 98, 152);
}
main#region_main button:focus {
  background-color: rgb(48, 98, 152);
  color: white;
  outline: 3px solid rgb(33, 71, 108);
  text-shadow: none;
}
main#region_main input[type=submit] {
  background-color: rgb(141, 198, 63);
  color: white;
  text-shadow: 0 2px 4px rgb(100.0301204819, 142.265060241, 42.234939759);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  padding: 0 2em;
  border-radius: 1.5em;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
}
main#region_main input[type=submit]:hover {
  background-color: rgb(127.6807228916, 181.5903614458, 53.9096385542);
}
@media (max-width: 720px) {
  main#region_main input[type=submit] {
    display: flex;
    margin: 0 0 0.25em 0;
  }
}
main#region_main input[type=submit]:hover {
  outline: 3px solid rgb(48, 98, 152);
}
main#region_main input[type=submit]:focus {
  background-color: rgb(48, 98, 152);
  color: white;
  outline: 3px solid rgb(33, 71, 108);
  text-shadow: none;
}
main#region_main input[type=reset] {
  background-color: rgb(255, 121, 88);
  color: white;
  text-shadow: 0 2px 4px rgb(255, 59.6167664671, 11.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  padding: 0 2em;
  border-radius: 1.5em;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
}
main#region_main input[type=reset]:hover {
  background-color: rgb(255, 100.5389221557, 62.5);
}
@media (max-width: 720px) {
  main#region_main input[type=reset] {
    display: flex;
    margin: 0 0 0.25em 0;
  }
}
main#region_main input[type=reset]:hover {
  outline: 3px solid rgb(48, 98, 152);
}
main#region_main input[type=reset]:focus {
  background-color: rgb(48, 98, 152);
  color: white;
  outline: 3px solid rgb(33, 71, 108);
  text-shadow: none;
}
main#region_main input[type=file] {
  padding: 0.6em 1em;
}
main#region_main input[type=checkbox] + label,
main#region_main input[type=radio] + label {
  position: relative;
  height: 4em;
  display: flex;
  align-items: center;
  padding: 0 2em 0 2.5em;
}
main#region_main input[type=checkbox] + label::before,
main#region_main input[type=radio] + label::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  height: 2em;
  width: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: white;
  border: 2px solid rgb(205, 205, 205);
}
main#region_main input[type=checkbox]:hover + label::before,
main#region_main input[type=radio]:hover + label::before {
  border-color: rgb(78, 136, 199);
}
main#region_main input[type=checkbox]:focus + label::before,
main#region_main input[type=radio]:focus + label::before {
  border-color: rgb(33, 71, 108);
}
main#region_main input[type=checkbox]:checked + label::before,
main#region_main input[type=radio]:checked + label::before {
  background-color: rgb(78, 136, 199);
  box-shadow: inset 0 0 0 2px white;
}
main#region_main input[type=checkbox]:checked:hover + label::before,
main#region_main input[type=radio]:checked:hover + label::before {
  border-color: rgb(78, 136, 199);
}
main#region_main input[type=checkbox]:checked:focus + label::before,
main#region_main input[type=radio]:checked:focus + label::before {
  border-color: rgb(33, 71, 108);
}
main#region_main input[type=checkbox]:checked + label::before {
  content: "✔";
  background-color: rgb(141, 198, 63);
}
main#region_main input[type=radio] + label::before {
  border-radius: 50%;
}
main#region_main fieldset {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  main#region_main fieldset {
    flex-direction: column;
    padding-bottom: 0.5em;
  }
  main#region_main fieldset .form-element {
    padding: 0;
  }
}
main#region_main fieldset legend {
  display: block;
  margin: 0 0 0.5em 0;
  color: rgb(205, 205, 205);
  font-size: 0.875em;
  font-weight: 600;
  line-height: 1;
}
main#region_main fieldset .row {
  width: 100%;
}
main#region_main fieldset.stacked {
  flex-direction: column;
  padding-bottom: 0.5em;
}
main#region_main fieldset.stacked .form-element {
  padding: 0;
}
main#region_main table .form-element {
  padding: 0;
  font-size: 0.875em;
}
main#region_main table .form-element.currency {
  flex-direction: row;
  align-items: center;
}

html {
  height: 100%;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  width: 100%;
  overflow-x: hidden;
  background-color: rgb(255, 252, 241);
  color: rgb(82, 82, 82);
}

a:hover {
  outline: 3px solid rgb(78, 136, 199);
  outline-offset: 0;
}
a:focus {
  outline: 3px solid rgb(33, 71, 108);
  outline-offset: 0;
}

nav#region_navigation {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  height: 160px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 950;
}
@media (max-width: 720px) {
  nav#region_navigation {
    height: 80px;
  }
}
nav#region_navigation::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to right, white 20%, rgb(141, 198, 63) 100%);
  opacity: 0.2;
  z-index: 1;
}
nav#region_navigation a.logo {
  position: absolute;
  top: 15px;
  left: 15px;
  display: block;
  width: 180px;
  height: 130px;
  background-image: url("../img/logo-desktop.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
@media (max-width: 960px) {
  nav#region_navigation a.logo {
    width: 106px;
    height: 50px;
    background-image: url("../img/logo-mobile.png");
  }
}
nav#region_navigation a.skip-link {
  position: fixed;
  top: 15px;
  right: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  font-size: 1.5em;
  font-weight: 600;
  transform: translateY(-80px);
  z-index: -1;
}
nav#region_navigation a.skip-link:focus {
  transform: translateY(0);
  z-index: 990;
}
nav#region_navigation a:hover,
nav#region_navigation button:hover {
  outline: none;
}
nav#region_navigation a:focus,
nav#region_navigation button:focus {
  background-color: rgb(48, 98, 152) !important;
  color: white;
  outline: none;
  box-shadow: inset 0 0 0 3px rgb(33, 71, 108);
}
nav#region_navigation input:focus {
  outline: none;
  box-shadow: inset 0 0 0 3px rgb(33, 71, 108);
}
nav#region_navigation #navigation_toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgb(141, 198, 63);
  border-radius: 25px;
  z-index: 3;
}
@media (max-width: 720px) {
  nav#region_navigation #navigation_toggle {
    display: flex;
  }
}
nav#region_navigation #navigation_toggle::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background-image: url("../icon/hamburger.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}
nav#region_navigation #navigation_mobile-wrapper {
  width: 100%;
}
@media (max-width: 720px) {
  nav#region_navigation #navigation_mobile-wrapper {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    transform: translateY(-100vh);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
}
@media (max-width: 720px) {
  nav#region_navigation #navigation_toggle.open ~ #navigation_mobile-wrapper,
  nav#region_navigation #navigation_mobile-wrapper:focus-within {
    transform: translateY(0);
    opacity: 1;
  }
}
nav#region_navigation ul#navigation_primary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 15px 10px 15px 210px;
}
@media (max-width: 960px) {
  nav#region_navigation ul#navigation_primary {
    padding: 15px 10px;
  }
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 160px;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    padding: 5px calc(50% + 5px) 5px 5px;
  }
}
nav#region_navigation ul#navigation_primary > li {
  padding: 0 5px;
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary > li {
    display: block;
    width: 100%;
  }
}
nav#region_navigation ul#navigation_primary > li > a, nav#region_navigation ul#navigation_primary > li > button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 1em;
  border-radius: 25px;
  cursor: pointer;
  line-height: 1;
  text-align: center;
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary > li > a, nav#region_navigation ul#navigation_primary > li > button {
    justify-content: flex-start;
    width: 100%;
    height: 44px;
    text-align: left;
  }
}
nav#region_navigation ul#navigation_primary > li > a:hover, nav#region_navigation ul#navigation_primary > li > button:hover {
  background-color: rgba(78, 136, 199, 0.1);
}
nav#region_navigation ul#navigation_primary > li > a[aria-expanded=true], nav#region_navigation ul#navigation_primary > li > button[aria-expanded=true] {
  background-color: rgb(78, 136, 199);
  color: white;
}
nav#region_navigation ul#navigation_primary > li > a.home {
  width: 50px;
  padding: 0;
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary > li > a.home {
    width: 100%;
    padding: 0 0.5em;
  }
}
nav#region_navigation ul#navigation_primary > li > a.home::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background-image: url("../icon/home.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary > li > a.home::after {
    content: "Home";
    margin-left: 0.25em;
  }
}
nav#region_navigation ul#navigation_primary > li .category {
  position: fixed;
  top: 160px;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 400px;
  background-color: rgb(78, 136, 199);
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
@media (max-width: 960px) {
  nav#region_navigation ul#navigation_primary > li .category {
    flex-wrap: wrap;
  }
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary > li .category {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    flex-wrap: nowrap;
    width: 50%;
    min-height: auto;
    overflow-y: auto;
  }
}
nav#region_navigation ul#navigation_primary > li .category[aria-hidden=false] {
  opacity: 1;
  z-index: 1;
}
nav#region_navigation ul#navigation_primary > li .category .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 25%;
  padding: 40px;
}
@media (max-width: 1440px) {
  nav#region_navigation ul#navigation_primary > li .category .description {
    flex-basis: 33.3%;
    padding: 20px;
  }
}
@media (max-width: 960px) {
  nav#region_navigation ul#navigation_primary > li .category .description {
    flex-basis: 50%;
  }
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary > li .category .description {
    display: none;
  }
}
nav#region_navigation ul#navigation_primary > li .category .description p {
  width: 100%;
  font-size: 0.875em;
  line-height: 1.5;
}
nav#region_navigation ul#navigation_primary > li .category .description p.title {
  margin-bottom: 0.5em;
  font-size: 1.5em;
}
nav#region_navigation ul#navigation_primary > li .category ul.links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 25%;
  padding: 40px;
  background-color: rgb(66.3772532189, 128.1858369099, 195.3227467811);
}
@media (max-width: 1440px) {
  nav#region_navigation ul#navigation_primary > li .category ul.links {
    flex-basis: 33.3%;
    padding: 20px;
  }
}
@media (max-width: 960px) {
  nav#region_navigation ul#navigation_primary > li .category ul.links {
    flex-basis: 50%;
  }
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary > li .category ul.links {
    flex-basis: 100%;
    justify-content: flex-start;
    padding: 5px;
  }
}
nav#region_navigation ul#navigation_primary > li .category ul.links li {
  display: block;
  width: 100%;
  padding: 2px 0;
  margin: 0;
}
nav#region_navigation ul#navigation_primary > li .category ul.links li a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0.5em 1em;
  border-radius: 25px;
  font-size: 1.1em;
  line-height: 0.9;
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary > li .category ul.links li a {
    font-size: 1em;
    min-height: 44px;
  }
}
nav#region_navigation ul#navigation_primary > li .category ul.links li a:hover {
  background-color: rgb(78, 136, 199);
}
nav#region_navigation ul#navigation_primary > li .category ul.links li a[aria-expanded=true] {
  background-color: rgb(78, 136, 199);
  color: white;
}
nav#region_navigation ul#navigation_primary > li .category .image {
  flex-basis: 50%;
  background-position: left center;
  background-size: cover;
  opacity: 0.5;
}
@media (max-width: 1440px) {
  nav#region_navigation ul#navigation_primary > li .category .image {
    flex-basis: 33.3%;
  }
}
@media (max-width: 960px) {
  nav#region_navigation ul#navigation_primary > li .category .image {
    flex-basis: 100%;
    min-height: 33vh;
  }
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_primary > li .category .image {
    display: none;
  }
}
nav#region_navigation ul#navigation_secondary {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 80px;
  padding: 15px 10px;
  z-index: 2;
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_secondary {
    position: absolute;
    top: auto;
    bottom: 0;
    flex-direction: column;
    width: 100%;
    height: 160px;
    padding: 5px;
    background-color: rgb(199.3734939759, 227.186746988, 161.313253012);
  }
}
nav#region_navigation ul#navigation_secondary li {
  padding: 0 5px;
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_secondary li {
    display: block;
    width: 100%;
    padding: 5px;
  }
}
nav#region_navigation ul#navigation_secondary li a,
nav#region_navigation ul#navigation_secondary li button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 1em;
  background-color: rgb(141, 198, 63);
  color: white;
  border-radius: 25px;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
nav#region_navigation ul#navigation_secondary li a:hover,
nav#region_navigation ul#navigation_secondary li button:hover {
  background-color: rgb(127.6807228916, 181.5903614458, 53.9096385542);
}
nav#region_navigation ul#navigation_secondary li a.sign-in {
  padding-left: 0.5em;
}
nav#region_navigation ul#navigation_secondary li a.sign-in::before {
  content: "";
  display: block;
  width: 1.75em;
  height: 100%;
  background-image: url("../icon/sign-in.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}
nav#region_navigation ul#navigation_secondary li form#navigation_search {
  position: relative;
  display: flex;
  align-items: center;
}
nav#region_navigation ul#navigation_secondary li form#navigation_search::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  display: block;
  width: 1.75em;
  height: 100%;
  background-image: url("../icon/search.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
}
nav#region_navigation ul#navigation_secondary li form#navigation_search input[type=search] {
  position: relative;
  height: 50px;
  padding: 0 1em 0 3em;
  background-color: white;
  border-radius: 25px 0 0 25px;
  line-height: 50px;
  z-index: 1;
}
@media (max-width: 720px) {
  nav#region_navigation ul#navigation_secondary li form#navigation_search input[type=search] {
    flex-grow: 1;
  }
}
nav#region_navigation ul#navigation_secondary li form#navigation_search button[type=submit] {
  border-radius: 0 25px 25px 0;
}

footer#region_footer {
  display: flex;
  width: 100%;
  min-height: 80px;
  padding: 15px;
  background-color: rgb(78, 136, 199);
  color: white;
}
@media (max-width: 720px) {
  footer#region_footer {
    padding: 20px 10px;
  }
}
footer#region_footer a.to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  font-size: 1.5em;
  font-weight: 600;
  transform: translateY(80px);
  z-index: -1;
}
footer#region_footer a.to-top:focus {
  background-color: rgb(48, 98, 152) !important;
  color: white;
  outline: none;
  box-shadow: inset 0 0 0 3px rgb(33, 71, 108);
  transform: translateY(0);
  z-index: 990;
}
footer#region_footer .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.875em;
}
@media (max-width: 720px) {
  footer#region_footer .content {
    flex-direction: column;
  }
}
@media (max-width: 720px) {
  footer#region_footer .content p {
    padding: 10px 0;
  }
}
footer#region_footer .content a {
  border-radius: 5px;
}
footer#region_footer .content a:hover {
  outline: 3px solid rgb(48, 98, 152);
}
footer#region_footer .content a:focus {
  outline: 3px solid rgb(33, 71, 108);
  outline-offset: 2px;
}

main#region_main {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 160px);
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  margin: 0;
  padding: 160px 0 0 0;
}
@media (max-width: 720px) {
  main#region_main {
    min-height: calc(100vh - 80px);
    padding-top: 80px;
  }
}
main#region_main > section {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 960px) {
  main#region_main > section {
    padding: 0 20px;
  }
}
@media (max-width: 720px) {
  main#region_main > section {
    padding: 0 10px;
  }
}
main#region_main > section > header {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  max-width: 1440px;
  padding: 40px 240px;
  background-color: rgb(210, 225, 241);
  color: rgb(78, 136, 199);
  border-radius: 0 0 40px 40px;
  box-shadow: inset 0 -5px 10px rgb(190.5508474576, 212.0338983051, 234.9491525424), 0 0 5px white;
}
@media (max-width: 1440px) {
  main#region_main > section > header {
    padding: 40px 10%;
  }
}
@media (max-width: 960px) {
  main#region_main > section > header {
    padding: 20px 40px;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 720px) {
  main#region_main > section > header {
    padding: 10px;
    border-radius: 0 0 10px 10px;
  }
}
main#region_main > section > header .breadcrumb {
  padding-bottom: 1em;
  color: rgb(151.6525423729, 186.1016949153, 222.8474576271);
  border-bottom: 3px solid rgb(190.5508474576, 212.0338983051, 234.9491525424);
  font-weight: 700;
}
@media (max-width: 720px) {
  main#region_main > section > header .breadcrumb {
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}
main#region_main > section > header .breadcrumb a {
  color: rgb(78, 136, 199);
}
main#region_main > section > article {
  width: 100%;
  max-width: 1440px;
  flex-grow: 1;
  padding: 40px 240px;
  margin: 40px 0;
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1440px) {
  main#region_main > section > article {
    padding: 40px 10%;
  }
}
@media (max-width: 960px) {
  main#region_main > section > article {
    margin: 20px 0;
    padding: 20px 40px;
    border-radius: 20px;
  }
}
@media (max-width: 720px) {
  main#region_main > section > article {
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
  }
}
main#region_main > section > article a {
  text-decoration: underline;
}
main#region_main > section > article img {
  max-width: 100%;
  height: auto;
  aspect-ratio: maintain;
}
main#region_main > section > article ul li::before {
  background-color: rgb(78, 136, 199);
}
main#region_main > section > article ol li::before {
  color: rgb(78, 136, 199);
}
main#region_main > section > article h2 {
  border-bottom: 3px solid rgb(233, 233, 233);
}
main#region_main > section > article h3 {
  color: rgb(141, 198, 63);
}
main#region_main > section > article h4 {
  color: rgb(78, 136, 199);
}
main#region_main > section > article h5, main#region_main > section > article h6 {
  color: rgb(209.5, 209.5, 209.5);
}
main#region_main > section > article hr {
  display: block;
  width: 100%;
  height: 3px;
  margin: 2em 0;
  background-color: rgb(233, 233, 233);
  border: none;
}
main#region_main > section > article details summary:focus {
  outline: 3px solid rgb(33, 71, 108);
}
main#region_main > section > article details summary::marker {
  color: rgb(78, 136, 199);
}
main#region_main > section > footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  padding: 40px 240px;
  background-color: rgb(255, 241.0714285714, 190);
  border-radius: 40px 40px 0 0;
  box-shadow: inset 0 5px 10px rgb(255, 235.6071428571, 164.5), 0 -5px 5px white;
}
@media (max-width: 1440px) {
  main#region_main > section > footer {
    padding: 40px 10%;
  }
}
@media (max-width: 960px) {
  main#region_main > section > footer {
    padding: 20px 40px;
    border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 720px) {
  main#region_main > section > footer {
    padding: 10px;
    border-radius: 10px 10px 0 0;
  }
}

main#region_main > section.hero {
  min-height: 75vh;
  flex-direction: row;
  align-items: center;
  padding: 40px 10%;
  background-position: center top;
  background-size: cover;
}
@media (max-width: 1440px) {
  main#region_main > section.hero {
    padding: 40px;
  }
}
@media (max-width: 960px) {
  main#region_main > section.hero {
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
  }
}
@media (max-width: 720px) {
  main#region_main > section.hero {
    min-height: 85vh;
    padding: 10px;
    background-position: right 20% bottom;
  }
}
main#region_main > section.hero .content {
  position: relative;
  width: 50%;
  padding: 60px;
  border-radius: 30px;
  color: white;
  background-color: rgba(33, 71, 108, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-shadow: 0 2px 4px rgb(33, 71, 108);
  text-align: center;
}
@media (max-width: 960px) {
  main#region_main > section.hero .content {
    width: 100%;
    padding: 20px;
  }
}
main#region_main > section.hero .content p:last-child {
  margin-bottom: 0 !important;
}
main#region_main > section.hero .content a {
  box-shadow: 0 0 8px rgb(33, 71, 108);
  background-color: rgb(78, 136, 199);
  color: white;
  text-shadow: 0 2px 4px rgb(48.1888412017, 98.0987124464, 152.3111587983);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  padding: 0 2em;
  border-radius: 1.5em;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
}
main#region_main > section.hero .content a:hover {
  background-color: rgb(60.4463519313, 123.0515021459, 191.0536480687);
}
@media (max-width: 720px) {
  main#region_main > section.hero .content a {
    display: flex;
    margin: 0 0 0.25em 0;
  }
}
main#region_main > section.hero .content a:hover {
  outline: 3px solid rgb(48, 98, 152);
}
main#region_main > section.hero .content a:focus {
  background-color: rgb(48, 98, 152);
  color: white;
  outline: 3px solid rgb(33, 71, 108);
  text-shadow: none;
}

main#region_main > section.leaders .content {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
}
main#region_main > section.leaders .content .leader {
  display: flex;
  align-items: center;
  flex-basis: calc(50% - 40px);
  min-height: 33vh;
  margin: 20px;
  border-radius: 30px;
  background-size: cover;
  background-position: center top;
}
@media (max-width: 1440px) {
  main#region_main > section.leaders .content .leader {
    flex-basis: calc(50% - 20px);
    margin: 10px;
  }
}
@media (max-width: 720px) {
  main#region_main > section.leaders .content .leader {
    flex-basis: 100%;
    margin: 0 0 10px 0;
  }
}
main#region_main > section.leaders .content .leader .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  margin: 0 0 0 40%;
  background-color: rgba(141, 198, 63, 0.66);
  color: white;
  border-radius: 0 30px 30px 0;
  font-size: 0.875em;
  text-align: center;
  text-shadow: 0 0 5px rgb(100.0301204819, 142.265060241, 42.234939759);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
main#region_main > section.leaders .content .leader .description p:last-child {
  margin-bottom: 0 !important;
}
main#region_main > section.leaders .content .leader .description a {
  box-shadow: 0 0 8px rgb(100.0301204819, 142.265060241, 42.234939759);
  background-color: white;
  color: rgb(82, 82, 82);
  text-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  padding: 0 2em;
  border-radius: 1.5em;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
}
main#region_main > section.leaders .content .leader .description a:hover {
  background-color: rgb(210, 225, 241);
}
@media (max-width: 720px) {
  main#region_main > section.leaders .content .leader .description a {
    display: flex;
    margin: 0 0 0.25em 0;
  }
}
main#region_main > section.leaders .content .leader .description a:hover {
  outline: 3px solid rgb(48, 98, 152);
}
main#region_main > section.leaders .content .leader .description a:focus {
  background-color: rgb(48, 98, 152);
  color: white;
  outline: 3px solid rgb(33, 71, 108);
  text-shadow: none;
}/*# sourceMappingURL=style.css.map */