:root {
  --global-margin: 0.5rem;
  --global-padding: 0.5rem;
  --global-border-radius: 0.125rem;
  --global-border-radius: 0rem;
  --global-alpha-bg: rgba(0, 0, 0, 0.1);
  --heading-ratio: 1.19;
  --bg-color: #ffffff;
  --bg-secondary-color: #fcf8ff;
  --bg-dark: #27212c;
  --color-primary: #5c3977;
  --color-secondary: #611f93;
  --color-text: #0d0811;
  --color-accent: #f3eef7;
  --color-lightGrey: #f0e1ff;
  --color-grey: #747681;
  --color-darkGrey: #27212c;
  --color-error: #d43939;
  --color-success: #28bd14;
  --grid-maxWidth: 1200px;
  --grid-gutter: 2rem;
  --font-size: 1rem;
  --font-color: #222222;
  --font-family: "IBM Plex Sans", "Segoe UI", "Roboto", "Helvetica Neue",
    sans-serif;
  --font-family-header: "IBM Plex Sans", "Segoe UI", "Roboto", "Helvetica Neue",
    sans-serif;
  --font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
}
html {
  font-size: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  line-height: 1.5;
  font-size: var(--font-size);
  color: var(--font-color);
  font-family: "Segoe UI", "Helvetica Neue", sans-serif; /*fallback*/
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
}
body.dark {
  --global-alpha-bg: rgba(25, 25, 25, 0.1);
  --bg-color: #000;
  --bg-secondary-color: #131316;
  --font-color: #f5f5f5;
  --color-grey: #ccc;
  --color-darkGrey: #777;
  --bg-dark: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif; /*fallback*/
  font-family: var(--font-family-header);
  font-weight: 600;
  margin: 0 0 calc(1.5 * var(--global-margin)) 0;
}
h1 {
  font-size: calc(
    1rem * var(--heading-ratio) * var(--heading-ratio) * var(--heading-ratio) *
      var(--heading-ratio)
  );
}
h2 {
  font-size: calc(
    1rem * var(--heading-ratio) * var(--heading-ratio) * var(--heading-ratio)
  );
}
h3 {
  font-size: calc(1rem * var(--heading-ratio) * var(--heading-ratio));
}
h4 {
  font-size: calc(1rem * var(--heading-ratio));
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: calc(1rem / var(--heading-ratio));
}
p {
  margin: 0 0 calc(1.5 * var(--global-margin)) 0;
}
P:last-child {
  margin: 0;
}
ol,
ul {
  margin: var(--global-margin);
  padding-left: calc(2 * var(--global-margin));
}
b,
strong {
  font-weight: 700;
}
a,
b,
del,
em,
i,
ins,
q,
span,
strong,
u {
  font-size: 1em;
  transition: all 0.5s ease-in-out;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover:not(.button) {
  opacity: 0.75;
}
button {
  font-family: inherit;
}
p {
  margin-top: 0;
}
blockquote {
  background-color: var(--bg-secondary-color);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--color-lightGrey);
}
dl dt {
  font-weight: bold;
}
hr {
  border: none;
  background-color: var(--color-lightGrey);
  height: 1px;
  margin: 1rem 0;
}
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}
table.striped tr:nth-of-type(2n) {
  background-color: var(--bg-secondary-color);
}
td,
th {
  vertical-align: middle;
  padding: 1.2rem 0.4rem;
}
thead {
  border-bottom: 2px solid var(--color-lightGrey);
}
tfoot {
  border-top: 2px solid var(--color-lightGrey);
}
code,
kbd,
pre,
samp,
tt {
  font-family: var(--font-family-mono);
}
code,
kbd {
  padding: 0 0.4rem;
  font-size: 90%;
  white-space: pre-wrap;
  border-radius: 4px;
  padding: 0.2em 0.4em;
  background-color: var(--bg-secondary-color);
  color: var(--color-error);
}
pre {
  background-color: var(--bg-secondary-color);
  font-size: 1em;
  padding: 1rem;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
}
fieldset {
  border: 1px solid var(--color-lightGrey);
}
iframe {
  border: 0;
}
.container {
  max-width: var(--grid-maxWidth);
  margin: 0 auto;
  width: 96%;
  /* padding: 0 calc(var(--grid-gutter) / 2); */
}
.container-fluid {
  max-width: 100%;
  /* padding: 0 calc(var(--grid-gutter) / 2); */
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  /* margin-left: calc(var(--grid-gutter) / -2); */
  /* margin-right: calc(var(--grid-gutter) / -2); */
  gap: var(--grid-gutter);
}
.gutter-small,
.row-small,
.row .row {
  gap: var(--grid-gutter) !important;
}
.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.row.wrap {
  flex-wrap: wrap;
}
.row.no-wrap {
  flex-wrap: nowrap;
}
.col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.col,
[class*=" col-"],
[class^="col-"] {
  /* margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2); */
  margin: 0;
}
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 1)) - var(--grid-gutter));
}
.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 2)) - var(--grid-gutter));
}
.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 3)) - var(--grid-gutter));
}
.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 4)) - var(--grid-gutter));
}
.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 5)) - var(--grid-gutter));
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 6)) - var(--grid-gutter));
}
.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 7)) - var(--grid-gutter));
}
.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 8)) - var(--grid-gutter));
}
.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 9)) - var(--grid-gutter));
}
.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 10)) - var(--grid-gutter));
}
.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 11)) - var(--grid-gutter));
}
.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
  flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
  max-width: calc((100% / (12 / 12)) - var(--grid-gutter));
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .container {
    width: 100%;
  }

  .col,
  [class*="col-"],
  [class^="col-"] {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .row {
    gap: calc(var(--grid-gutter) * 1.5);
  }
  .col-1-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 1)) - var(--grid-gutter));
  }

  .col-2-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 2)) - var(--grid-gutter));
  }

  .col-3-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 3)) - var(--grid-gutter));
  }

  .col-4-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 4)) - var(--grid-gutter));
  }

  .col-5-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 5)) - var(--grid-gutter));
  }

  .col-6-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 6)) - var(--grid-gutter));
  }

  .col-7-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 7)) - var(--grid-gutter));
  }

  .col-8-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 8)) - var(--grid-gutter));
  }

  .col-9-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 9)) - var(--grid-gutter));
  }

  .col-10-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 10)) - var(--grid-gutter));
  }

  .col-11-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 11)) - var(--grid-gutter));
  }

  .col-12-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 12)) - var(--grid-gutter));
  }
}
@media screen and (min-width: 1200px) {
  .col-1-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 1)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 1)) - var(--grid-gutter));
  }

  .col-2-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 2)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 2)) - var(--grid-gutter));
  }

  .col-3-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 3)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 3)) - var(--grid-gutter));
  }

  .col-4-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 4)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 4)) - var(--grid-gutter));
  }

  .col-5-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 5)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 5)) - var(--grid-gutter));
  }

  .col-6-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 6)) - var(--grid-gutter));
  }

  .col-7-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 7)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 7)) - var(--grid-gutter));
  }

  .col-8-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 8)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 8)) - var(--grid-gutter));
  }

  .col-9-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 9)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 9)) - var(--grid-gutter));
  }

  .col-10-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 10)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 10)) - var(--grid-gutter));
  }

  .col-11-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 11)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 11)) - var(--grid-gutter));
  }

  .col-12-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
    flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter));
    max-width: calc((100% / (12 / 12)) - var(--grid-gutter));
  }
}
fieldset {
  padding: 0.5rem 2rem;
}
legend {
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.1rem;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
select,
textarea,
textarea[type="text"] {
  font-family: inherit;
  padding: 0.75rem 1rem;
  border-radius: var(--global-border-radius);
  border: 1px solid var(--color-lightGrey);
  font-size: 1em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
  width: 100%;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]):not(:disabled):hover,
select:hover,
textarea:hover,
textarea[type="text"]:hover {
  border-color: var(--color-grey);
}
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]):focus,
select:focus,
textarea:focus,
textarea[type="text"]:focus {
  outline: none;
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 1px var(--color-primary);
  box-shadow: 0 0 1px var(--color-primary);
}
input.error:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
textarea.error {
  border-color: var(--color-error);
}
input.success:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
textarea.success {
  border-color: var(--color-success);
}
select {
  -webkit-appearance: none;
  background: #f3f3f6 no-repeat 100%;
  background-size: 1ex;
  background-origin: content-box;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
}
[type="checkbox"],
[type="radio"] {
  width: 1.6rem;
  height: 1.6rem;
}
/* BUTTONS */
.button,
[type="button"],
[type="reset"],
[type="submit"],
button {
  background: var(--color-lightGrey);
  border-radius: var(--global-border-radius);
  border: 1px solid transparent;
  color: var(--color-primary);
  cursor: pointer;
  display: inline-block;
  font-size: var(--font-size);
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
}
button + button,
.button + .button {
  margin-left: 1rem;
}
.grouped {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grouped > *:not(:last-child) {
  margin-right: 16px;
}
.grouped.gapless > * {
  margin: 0 0 0 -1px !important;
  border-radius: 0 !important;
}
.grouped.gapless > *:first-child {
  margin: 0 !important;
  border-radius: 4px 0 0 4px !important;
}
.grouped.gapless > *:last-child {
  border-radius: 0 4px 4px 0 !important;
}
.button + .button {
  margin-left: 1rem;
}
.button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover,
button:hover {
  opacity: 0.8;
}
.button:active,
[type="button"]:active,
[type="reset"]:active,
[type="submit"]:active,
button:active {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}
input:disabled,
button:disabled,
input:disabled:hover,
button:disabled:hover {
  opacity: 0.4;
  cursor: not-allowed;
}
.button.primary,
.button.secondary,
.button.dark,
.button.error,
.button.success,
[type="submit"] {
  color: #fff;
  z-index: 1; /* hightlight from other button's border when grouped */
  background-color: #000;
  background-color: var(--color-primary);
}
.button.secondary {
  background-color: var(--bg-secondary-color);
  color: var(--color-primary);
}
.button.dark {
  background-color: var(--color-darkGrey);
}
.button.error {
  background-color: var(--color-error);
}
.button.success {
  background-color: var(--color-success);
}
.button.outline {
  background-color: transparent;
  border-color: var(--color-lightGrey);
}
.button.outline.primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.button.outline.secondary {
  border-color: var(--color-grey);
  color: var(--color-grey);
}
.button.outline.dark {
  border-color: var(--color-darkGrey);
  color: var(--color-darkGrey);
}
.button.clear {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
}
.button.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.button.icon > img {
  margin-left: 2px;
}
.button.icon-only {
  padding: 1rem;
}
::-webkit-input-placeholder {
  color: #bdbfc4;
}
::-moz-placeholder {
  color: #bdbfc4;
}
:-ms-input-placeholder {
  color: #bdbfc4;
}
::-ms-input-placeholder {
  color: #bdbfc4;
}
::placeholder {
  color: #bdbfc4;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav img {
  max-height: auto;
}
.nav > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-center,
.nav-left,
.nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.nav-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.nav-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.nav-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* @media screen and (max-width: 480px) {
  .nav,
  .nav > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .nav-center,
  .nav-left,
  .nav-right {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
} */
#navButton {
  width: 0;
  height: 0;
  overflow: hidden;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .nav-menu {
    background: var(--bg-color);
    box-shadow: 0 -1rem 2rem var(--global-alpha-bg);
    position: fixed;
    right: 0;
    top: 0;
    width: 280px;
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    flex-direction: column;
    padding-top: calc(var(--grid-gutter) * 2);
    transform: translateX(100%);
    transition: all 0.25s ease-in-out;
  }
  label[for="navButton"] {
    --size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--size);
    height: var(--size);
    z-index: 99999999;
  }
  .backdrop[for="navButton"] {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    display: none;
  }
  #navButton:checked ~ .backdrop[for="navButton"] {
    display: block;
  }
  .nav-menu.active,
  #navButton:checked ~ .nav-menu {
    transform: translateX(0);
  }
  .nav-button {
    width: var(--size);
    height: 2px;
    background: var(--font-color);
    border-radius: 100rem;
    transition: all 0.2s ease-out;
  }
  .nav-button:before,
  .nav-button:after {
    content: "";
    position: absolute;
    border-radius: inherit;
    background: inherit;
    width: inherit;
    height: inherit;
    transform-origin: center;
    transition: all 0.2s ease-out;
  }
  .nav-button:before {
    margin-top: -10px;
  }
  .nav-button:after {
    margin-top: 10px;
  }
  .nav-button.active,
  #navButton:checked ~ label .nav-button {
    background: transparent;
    height: 1px;
  }
  #navButton:checked ~ label .nav-button:before {
    background: var(--font-color);
    transform: rotate(-45deg);
    margin: 0;
  }
  #navButton:checked ~ label .nav-button:after {
    background: var(--font-color);
    transform: rotate(45deg);
    margin: 0;
  }
}
.nav a,
.nav .brand {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--font-color);
}
.nav [aria-current="page"]:not(.button),
.nav .active:not(.button) {
  color: #000; /* fallback */
  color: var(--color-primary);
}
.nav .brand {
  font-size: 1.75em;
  padding: 0;
}
.nav .brand img {
  padding-right: 0rem;
}
.nav .button {
  margin: auto 1rem;
}
.card {
  padding: 1.5rem;
  border-radius: var(--global-border-radius);
  background: var(--bg-color);
  -webkit-box-shadow: 0 0 2rem var(--global-alpha-bg);
  box-shadow: 0 0 2rem var(--global-alpha-bg);
}
.card p:last-child {
  margin: 0;
}
.card header > * {
  margin-top: 0;
  margin-bottom: 1rem;
}
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabs a {
  text-decoration: none;
}
.tabs > .dropdown > summary,
.tabs > a {
  padding: 1rem 2rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  color: var(--color-darkGrey);
  border-bottom: 2px solid var(--color-lightGrey);
  text-align: center;
}
.tabs > a[aria-current="page"],
.tabs > a.active,
.tabs > a:hover {
  opacity: 1;
  border-bottom: 2px solid var(--color-darkGrey);
}
.tabs > a[aria-current="page"],
.tabs > a.active {
  border-color: var(--color-primary);
}
.tabs.is-full a {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.tag {
  display: inline-block;
  border: 1px solid var(--color-lightGrey);
  text-transform: uppercase;
  color: var(--color-grey);
  padding: 0.5rem;
  line-height: 1;
  letter-spacing: 0.5px;
}
.tag.is-small {
  padding: 0.4rem;
  font-size: 0.75em;
}
.tag.is-large {
  padding: 0.7rem;
  font-size: 1.125em;
}
.tag + .tag {
  margin-left: 1rem;
}
details.dropdown {
  position: relative;
  display: inline-block;
}
details.dropdown > :last-child {
  position: absolute;
  left: 0;
  white-space: nowrap;
}
/* Colors */
.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-light {
  background-color: var(--color-lightGrey) !important;
}
.bg-light {
  background-color: var(--bg-secondary-color) !important;
}
.bg-dark {
  background-color: var(--color-darkGrey) !important;
}
.bg-grey {
  background-color: var(--color-grey) !important;
}
.bg-error {
  background-color: var(--color-error) !important;
}
.bg-success {
  background-color: var(--color-success) !important;
}
.bd-primary {
  border: 1px solid var(--color-primary) !important;
}
.bd-light {
  border: 1px solid var(--color-lightGrey) !important;
}
.bd-dark {
  border: 1px solid var(--color-darkGrey) !important;
}
.bd-grey {
  border: 1px solid var(--color-grey) !important;
}
.bd-error {
  border: 1px solid var(--color-error) !important;
}
.bd-success {
  border: 1px solid var(--color-success) !important;
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-light {
  color: var(--color-lightGrey) !important;
}
.text-dark {
  color: var(--color-darkGrey) !important;
}
.text-grey {
  color: var(--color-grey) !important;
}
.text-error {
  color: var(--color-error) !important;
}
.text-success {
  color: var(--color-success) !important;
}
.text-white {
  color: #fff !important;
}
/* Position & alignment */
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.is-full-screen {
  width: 100%;
  min-height: 100vh;
}
.is-full-width {
  width: 100% !important;
}
.is-vertical-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.is-vertical-stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.is-horizontal-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.is-horizontal-evenly {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.is-horizontal-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.is-horizontal-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}
.is-horizontal-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
.is-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.is-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.is-fixed {
  position: fixed;
  width: 100%;
}
.is-paddingless {
  padding: 0 !important;
}
.is-marginless {
  margin: 0 !important;
}
.is-pointer {
  cursor: pointer !important;
}
.is-rounded {
  border-radius: 100%;
}
.clearfix {
  content: "";
  display: table;
  clear: both;
}
.is-hidden {
  display: none !important;
}
@media screen and (max-width: 599px) {
  .hide-xs {
    display: none !important;
  }
  .container,
  .container-fluid,
  .container-fluid-xs {
    max-width: 100%;
    padding: 0 calc(var(--grid-gutter) / 2);
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .hide-sm {
    display: none !important;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .hide-md {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
  .hide-lg {
    display: none !important;
  }
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-lightGrey) var(--bg-primary);
  }
  *::-webkit-scrollbar {
    width: 8px;
    background: var(--global-alpha-bg);
  }
  *::-webkit-scrollbar-track {
    background: var(--bg-primary);
  }
  *::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--global-border-radius);
  }
}
@media print {
  .hide-pr {
    display: none !important;
  }
}
