@charset "UTF-8";
@layer reset {
  :root {
    interpolate-size: allow-keywords;
  }
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    color-scheme: light dark;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    hanging-punctuation: first allow-end last;
  }
  html.translated-rtl {
    direction: rtl;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-wrap: balance;
  }
  p {
    text-wrap: pretty;
  }
  @media (prefers-reduced-motion: no-preference) {
    html {
      interpolate-size: allow-keywords;
    }
  }
  fieldset {
    border: none;
  }
  legend {
    display: block;
  }
  img {
    display: block;
  }
  :where(address,
  article,
  aside,
  body,
  dialog,
  div,
  dl,
  fieldset,
  figure,
  footer,
  form,
  header,
  hgroup,
  html,
  iframe,
  legend,
  li,
  main,
  menu,
  nav,
  ol,
  section,
  ul) {
    display: flex;
    flex-direction: column;
  }
  iframe {
    border: none;
  }
}
/*
 * @mixin: fonts
 * @description: Basic font helper mixins
 */
@font-face {
  font-family: "Figtree";
  src: url("fonts/Figtree-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 600 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("fonts/BarlowSemiCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("fonts/BarlowSemiCondensed-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("fonts/BarlowSemiCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Material Icons";
  src: url("fonts/MaterialSymbolsOutlined-variable.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
/*
 * Reference for material icon names to pass to this mixin:
 * https://fonts.google.com/icons
 */
.deleted {
  opacity: 0.5;
  text-decoration: line-through;
}

.has-tooltip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.has-tooltip::before {
  display: inline-block;
  content: "info";
  color: light-dark(rgb(58.0040519481, 39.3170909091, 87.8429090909), #ffffff);
  font-family: "Material Icons";
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 400 !important;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}
.has-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: light-dark(rgb(244.0877532468, 243.6948181818, 244.7151818182), rgb(36.7550649351, 28.8963636364, 49.3036363636));
  color: light-dark(rgb(58.0040519481, 39.3170909091, 87.8429090909), #ffffff);
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  width: 16rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  border-width: 1px;
  border-style: solid;
  border-color: light-dark(rgba(58.0040519481, 39.3170909091, 87.8429090909, 0.5), rgba(255, 255, 255, 0.5));
}
.has-tooltip:hover::after {
  opacity: 1;
}

.truncated-string {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

td .truncated-string {
  max-width: 10rem;
}

.disabled {
  cursor: default !important;
  opacity: 0.5;
}

.center {
  margin-left: 20px;
}

.expired {
  text-decoration: line-through;
}

@layer base {
  * {
    font-family: "Figtree", sans-serif;
    font-weight: 400;
  }
}
html {
  font-size: 8px;
}
@media (min-width: 900px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}

iframe html {
  font-size: 10px !important;
}

body {
  font-size: 1.4rem;
  color: light-dark(rgb(58.0040519481, 39.3170909091, 87.8429090909), #ffffff);
  background-color: light-dark(rgb(244.0877532468, 243.6948181818, 244.7151818182), rgb(36.7550649351, 28.8963636364, 49.3036363636));
}

a {
  color: light-dark(rgb(39.5851631429, 150.304858, 119.104702), #29d39a);
  text-decoration: none;
}

h1 {
  line-height: 1em;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
h1 a {
  font-weight: inherit;
  color: inherit;
}
h1 {
  font-size: 4.8rem;
}

h2 {
  line-height: 1em;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
h2 a {
  font-weight: inherit;
  color: inherit;
}
h2 {
  font-size: 2.8rem;
}

h3 {
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
h3 a {
  font-weight: inherit;
  color: inherit;
}
h3 {
  font-size: 2rem;
}

h4 {
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
h4 a {
  font-weight: inherit;
  color: inherit;
}
h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.2rem;
  line-height: 2.4rem;
}

b,
strong {
  font-weight: 600;
}

span {
  font-weight: inherit;
}

table {
  border: none;
  border-spacing: 0;
  border-collapse: collapse;
}
table * {
  font-variant-numeric: tabular-nums;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
}
table thead,
table tbody,
table tfoot {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: light-dark(rgba(58.0040519481, 39.3170909091, 87.8429090909, 0.2), rgba(255, 255, 255, 0.2));
}
table td,
table th {
  height: 3.2rem;
  padding: 0.4rem 0.8rem;
}
table th {
  font-weight: 700;
  text-align: left;
  line-height: 1.6rem;
  white-space: nowrap;
  vertical-align: bottom;
  padding-bottom: 0.8rem;
}
table td {
  vertical-align: middle;
}
table tbody tr:hover {
  background-color: light-dark(rgba(36.7550649351, 28.8963636364, 49.3036363636, 0.1), rgba(255, 255, 255, 0.1));
}

abbr {
  text-decoration: none;
  border-bottom: none;
}

button,
input[type=button],
input[type=submit],
input[type=reset],
select {
  cursor: pointer;
}

input:not([type=button]):not([type=submit]):not([type=reset]),
select,
textarea {
  color: light-dark(rgb(58.0040519481, 39.3170909091, 87.8429090909), #ffffff);
  background-color: light-dark(rgba(36.7550649351, 28.8963636364, 49.3036363636, 0.1), rgba(255, 255, 255, 0.1));
  border-radius: 0.4rem;
  padding: 0.4rem 0.8rem;
  font-size: 1.5rem;
  border: none;
}
@media (prefers-color-scheme: light) {
  input:not([type=button]):not([type=submit]):not([type=reset]),
  select,
  textarea {
    box-shadow: inset 0 1px 1px 0 light-dark(rgba(36.7550649351, 28.8963636364, 49.3036363636, 0.1), rgba(255, 255, 255, 0.1));
  }
}
@media (prefers-color-scheme: dark) {
  input:not([type=button]):not([type=submit]):not([type=reset]),
  select,
  textarea {
    box-shadow: inset 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  }
}
input:not([type=button]):not([type=submit]):not([type=reset]):focus,
select:focus,
textarea:focus {
  outline: none;
  background-color: light-dark(rgba(36.7550649351, 28.8963636364, 49.3036363636, 0.2), rgba(255, 255, 255, 0.2));
}
input:not([type=button]):not([type=submit]):not([type=reset]):disabled,
select:disabled,
textarea:disabled {
  opacity: 0.5;
  cursor: default;
}
.error input:not([type=button]):not([type=submit]):not([type=reset]),
.error select,
.error textarea {
  background-color: light-dark(rgba(196.859488012, 48.963479021, 66.8480594406, 0.17), rgba(253.5192307692, 107.6634615385, 120.25, 0.17));
}

select[multiple] {
  height: auto !important;
}
select[multiple] option {
  padding: 0.2rem;
}
select:not([multiple]) {
  appearance: none;
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.8rem !important;
}
@media (prefers-color-scheme: light) {
  select:not([multiple]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23gb(58.0040519481, 39.3170909091, 87.8429090909)' d='M3,6l5,5,5-5H3Z'/%3E%3C/svg%3E");
  }
}
@media (prefers-color-scheme: dark) {
  select:not([multiple]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M3,6l5,5,5-5H3Z'/%3E%3C/svg%3E");
  }
}
.error select:not([multiple]) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ight-dark(rgb(180.9255631429, 46.966358, 65.102002), #fd3849)' d='M3,6l5,5,5-5H3Z'/%3E%3C/svg%3E");
}
select:not([multiple]) option {
  color: light-dark(rgb(58.0040519481, 39.3170909091, 87.8429090909), #ffffff);
  background-color: light-dark(rgb(244.0877532468, 243.6948181818, 244.7151818182), rgb(36.7550649351, 28.8963636364, 49.3036363636));
}

input[type=checkbox] {
  appearance: none;
  margin-right: 0.8rem;
  color: light-dark(rgb(58.0040519481, 39.3170909091, 87.8429090909), #ffffff);
  background-color: light-dark(rgba(36.7550649351, 28.8963636364, 49.3036363636, 0.1), rgba(255, 255, 255, 0.1));
  border-radius: 0.4rem;
  padding: 0.4rem 0.8rem;
  font-size: 1.5rem;
  border: none;
}
@media (prefers-color-scheme: light) {
  input[type=checkbox] {
    box-shadow: inset 0 1px 1px 0 light-dark(rgba(36.7550649351, 28.8963636364, 49.3036363636, 0.1), rgba(255, 255, 255, 0.1));
  }
}
@media (prefers-color-scheme: dark) {
  input[type=checkbox] {
    box-shadow: inset 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  }
}
input[type=checkbox]:focus {
  outline: none;
  background-color: light-dark(rgba(36.7550649351, 28.8963636364, 49.3036363636, 0.2), rgba(255, 255, 255, 0.2));
}
input[type=checkbox]:disabled {
  opacity: 0.5;
  cursor: default;
}
.error input[type=checkbox] {
  background-color: light-dark(rgba(196.859488012, 48.963479021, 66.8480594406, 0.17), rgba(253.5192307692, 107.6634615385, 120.25, 0.17));
}
input[type=checkbox] {
  width: 2.4rem;
  height: 2.4rem;
  padding: 0 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  place-content: center;
}
input[type=checkbox]:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.2rem;
}
input[type=checkbox]:checked::before {
  background-color: #00aeff;
}

textarea {
  height: 28rem;
}

button,
input[type=button],
input[type=submit],
input[type=reset] {
  appearance: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: light-dark(#ffffff, rgb(58.0040519481, 39.3170909091, 87.8429090909));
  background-color: light-dark(rgb(90.449851613, 67.1362550727, 127.6764009273), rgba(255, 255, 255, 0.8));
  cursor: pointer;
  border-radius: 0.4rem;
  letter-spacing: 0.05em;
  padding: 0 0.75em;
  text-transform: uppercase;
  font-weight: 600;
  height: 3.2rem;
  min-width: 3.2rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-family: "Figtree", sans-serif;
}
button *,
input[type=button] *,
input[type=submit] *,
input[type=reset] * {
  font-family: "Figtree", sans-serif;
}
button,
input[type=button],
input[type=submit],
input[type=reset] {
  padding-bottom: 0;
}

.accordion details {
  border: 1px solid light-dark(rgba(58.0040519481, 39.3170909091, 87.8429090909, 0.5), rgba(255, 255, 255, 0.5));
  border-radius: 0.4rem;
}
.accordion details + details {
  margin-top: 0.8rem;
}
.accordion details summary {
  display: flex;
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  list-style: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.accordion details summary::after {
  content: "chevron_right";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  flex-shrink: 0;
  margin-left: 1.2rem;
  transition: transform 0.2s ease;
}
.accordion details summary::-webkit-details-marker {
  display: none;
}
.accordion details[open] > summary::after {
  transform: rotate(90deg);
}
.accordion details ul {
  padding: 1.2rem 1.6rem 1.6rem;
  border-top: 1px solid light-dark(rgba(58.0040519481, 39.3170909091, 87.8429090909, 0.5), rgba(255, 255, 255, 0.5));
  margin-bottom: 0;
}

.contact-button {
  appearance: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(58.0040519481, 39.3170909091, 87.8429090909);
  background-color: #29d39a;
  cursor: pointer;
  border-radius: 0.4rem;
  letter-spacing: 0.05em;
  padding: 0 0.75em;
  text-transform: uppercase;
  font-weight: 600;
  height: 3.2rem;
  min-width: 3.2rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-family: "Figtree", sans-serif;
}
.contact-button * {
  font-family: "Figtree", sans-serif;
}
.contact-button {
  padding-bottom: 0;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}
.contact-button::before {
  display: inline-block;
  content: "phone";
  color: rgb(58.0040519481, 39.3170909091, 87.8429090909);
  font-family: "Material Icons";
  font-style: normal;
  font-size: 2.4rem;
  font-weight: 400 !important;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}
.contact-button--mail::before {
  display: inline-block;
  content: "mail";
  color: rgb(58.0040519481, 39.3170909091, 87.8429090909);
  font-family: "Material Icons";
  font-style: normal;
  font-size: 2.4rem;
  font-weight: 400 !important;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}
.contact-button__container {
  padding: 2rem 0;
  gap: 1.2rem;
}
@media (min-width: 400px) {
  .contact-button__container {
    padding: 3.2rem 0;
    flex-direction: row;
    justify-content: space-around;
  }
}

.error-page__content {
  height: 100%;
}
.error-page__content:after {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 45%;
  width: 32rem;
  height: 32rem;
  margin: -16rem 0 0 -16rem;
  background-image: url("images/error_bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: light-dark(rgb(244.0877532468, 243.6948181818, 244.7151818182), rgb(36.7550649351, 28.8963636364, 49.3036363636));
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 14.4rem;
}
.error-page__content--404:after {
  content: "404";
}
.error-page__content--422:after {
  content: "422";
}
.error-page__content--500:after {
  content: "500";
}
.error-page__content p {
  font-size: 2rem;
}

body {
  height: 100vh;
  overflow: hidden;
}

.layout-container {
  flex-direction: row;
  height: 100vh;
}

.main-area {
  flex: 1;
  height: 100vh;
  min-width: 88rem;
  position: relative;
}
.main-container {
  flex-grow: 1;
  justify-content: space-between;
  overflow-y: auto;
  scroll-padding-top: 13rem;
  scroll-behavior: smooth;
  padding-top: 13rem;
}
.main-content {
  position: relative;
  flex: 1;
  padding: 2rem 0;
  gap: 2.4rem;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  min-height: 13rem;
  background-color: light-dark(rgb(79.253038961, 49.7378181818, 126.3821818182), rgb(58.0040519481, 39.3170909091, 87.8429090909));
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: light-dark(rgba(58.0040519481, 39.3170909091, 87.8429090909, 0.5), rgba(255, 255, 255, 0.5));
  padding: 0 3.2rem;
  justify-content: center;
}
@media (min-width: 600px) {
  .main-header {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.brand-logo {
  width: 17.6rem;
  height: 6.4rem;
  width: 21.648rem;
  height: 7.872rem;
  margin-left: -1.5304347826rem;
}

.main-nav {
  flex-direction: row;
  gap: 1.6rem;
}
.main-nav li {
  text-align: center;
}
.main-nav a {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
}

.main-footer {
  padding: 1.2rem 3.2rem;
  background-color: light-dark(rgba(36.7550649351, 28.8963636364, 49.3036363636, 0.1), rgba(0, 0, 0, 0.3));
}
.main-footer p {
  margin: 0;
  color: light-dark(rgba(58.0040519481, 39.3170909091, 87.8429090909, 0.75), rgba(255, 255, 255, 0.75));
}

.tabs {
  flex-direction: row;
  gap: 0.4rem;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: bottom;
  padding: 0 1.6rem;
}
.tabs li {
  background-color: light-dark(rgba(36.7550649351, 28.8963636364, 49.3036363636, 0.1), rgba(255, 255, 255, 0.1));
  border-radius: 0.4rem 0.4rem 0 0;
  padding: 0.4rem 0.8rem;
}
.tabs li.active {
  background-color: light-dark(rgb(90.449851613, 67.1362550727, 127.6764009273), rgba(255, 255, 255, 0.8));
}
.tabs li.active a {
  color: light-dark(#ffffff, rgb(58.0040519481, 39.3170909091, 87.8429090909));
}
.tabs a {
  color: light-dark(rgb(58.0040519481, 39.3170909091, 87.8429090909), #ffffff);
}

ul.inline-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 1.2rem;
}
ul.inline-list li {
  padding-bottom: 0 !important;
}
ul.inline-list li::before {
  content: none !important;
}
ul.inline-list li + li::before {
  content: "·" !important;
  margin-right: 1.2rem;
}

.index-section {
  padding: 3.2rem 3.2rem;
  font-size: 2rem;
}
.index-section:nth-child(even) {
  background-color: light-dark(rgba(89.8775324675, 54.9481818182, 145.6518181818, 0.1), rgba(89.8775324675, 54.9481818182, 145.6518181818, 0.3));
}
.index-section__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 98rem;
}
.index-section ul {
  margin-bottom: 1.2rem;
  line-height: 2.4rem;
}
.index-section ul li {
  flex-direction: row;
  padding-bottom: 0.8rem;
}
.index-section ul li::before {
  content: "•";
  margin-right: 0.8rem;
}

.list-argument__main-point {
  display: block;
  font-weight: 600;
}

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