@charset "UTF-8";
:root {
  --white: #FAF9FF;
  --black: #281B5A;
  --dark: #2B3755;
  --ocean: #677BB0;
  --violet: #7F61F8;
  --magenta: #F443AD;
  --lavender: #EAE5FF;
  --lemon: #F6FFC2;
  --seafoam: #C2FFE5;
  --cyan: #05b6dd;
  --powder-blue:#d3e2fa;
  --lavender-100: #F2EFFF;
  --lavender-050:#F8F6FF;
  --lemon-100: #FAFFD8;
  --pure-white: #fff;
  --navy: #264f8e;
  --success: #52DEA3;
  --error: #FF5B5B;
  --muted: #6772ad;
  --purple: rgba(91, 11, 179, 1);
  --blue:rgb(0, 131, 232);
  --green: rgb(12, 178, 142);
  --yellow: rgba(236, 226, 6, 1) ;
  --orange: rgb(255, 140, 57) ;
  --pink: rgba(255, 0, 156, 1) ;
  --rainbow-gradient:
      linear-gradient(292deg,
        rgba(91, 11, 179, 1) 0%,
        rgba(33, 132, 207, 1) 22%,
        rgba(0, 181, 218, 1) 33%,
        rgba(210, 233, 27, 1) 60%,
        rgba(236, 226, 6, 1) 64%,
        rgba(232, 206, 10, 1) 68%,
        rgba(255, 0, 156, 1) 96%);
  --brand-gradient: linear-gradient(292deg,
        rgba(19, 206, 200, 1) 0%,
        rgba(35, 113, 179, 1) 36%,
        rgba(22, 73, 196, 1) 54%,
        rgba(255, 0, 156, 1) 96%);
  --breakpoint-xs: 420px;
  --breakpoint-sm: 758px;
  --breakpoint-md: 1024px;
  --breakpoint-lg: 1280px;
  --breakpoint-xl: 1600px;
  --animation-rate: cubic-bezier(0.23, 1, 0.32, 1);
  --default-animation: all 300ms var(--animation-rate);
  --menu-height: 68px;
  --adjusted-vh: calc(100vh - var(--menu-height));
  --default-radius: 18px;
  --heading-font: "DM Sans", "Inter", "Poppins", Inter,Roboto, Arial, Helvetica, sans-serif;
  --body-font: "DM Sans", "Inter", "Poppins", Inter,Roboto, Arial, Helvetica, sans-serif;
  --accent-font: "Spline Sans Mono", monospace;
  --gap-units: 1rem;
  --gap: var(--gap-units);
  --btn-in-animation:all 200ms cubic-bezier(0.600, 0.040, 0.980, 0.335);
  --btn-out-animation: all 200ms cubic-bezier(0.190, 1.000, 0.220, 1.000) ;
}

.container {
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto;
  width: 100%;
  padding: 1rem;
  gap: 1rem;
  --gap: 1rem;
}

@media (min-width: 420px) {
  .container {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .container {
    padding: 3rem;
  }
}
.container .container {
  width: 100%;
  padding: 0;
}

.container.sm {
  max-width: 720px;
}

.container.md {
  max-width: 920px;
}

.container.lg {
  max-width: 1200px;
}

.container.xl {
  max-width: 1400px;
}

.gap-0 {
  gap: 0rem;
}

.gap-0 > .col {
  padding: 0;
  --gap: 0;
}

.gap-1 {
  gap: var(--gap-units);
  --gap: var(--gap-units);
}

.gap-2,
.content .container.gap-2 {
  gap: calc(var(--gap-units) * 2);
  --gap: calc(var(--gap-units) * 2);
}

.gap-3,
.content .container.gap-3 {
  gap: calc(var(--gap-units) * 3);
  --gap: calc(var(--gap-units) * 3);
}

.gap-4,
.content .container.gap-4 {
  gap: calc(var(--gap-units) * 4);
  --gap: calc(var(--gap-units) * 4);
}

@media (max-width: 419px) {
  .gap-2,
  .gap-3,
  .gap-4 {
    gap: var(--gap-units);
    --gap: var(--gap-units);
  }
  .xxs-hide {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .gap-2 {
    gap: var(--gap-units);
    --gap: var(--gap-units);
  }
  .gap-3,
  .gap-4 {
    gap: calc(var(--gap-units) * 2);
    --gap: calc(var(--gap-units) * 2);
  }
  .xs-hide {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .sm-hide {
    display: none !important;
  }
}
.col,
[class^=col-] {
  box-sizing: border-box;
  max-width: 100%;
  flex: 1 1 0%;
  width: 100%;
}

.col-auto {
  flex: none;
}

.container.col {
  margin: 0;
  padding: 0;
}

.no-wrap {
  flex-wrap: nowrap;
}

.container .col.v-100 {
  align-self: stretch;
}

.flex-column {
  flex-flow: column;
  display: flex;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

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

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

.justify-center {
  justify-content: center;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-grow {
  flex-grow: 1;
}

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

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

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

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

.col-1 {
  flex: 1 0 calc(8.3% - var(--gap));
  max-width: 8.3%;
}

.col-2 {
  flex: 1 0 calc(16.66% - var(--gap));
  max-width: 16.66%;
}

.col-3 {
  flex: 1 0 calc(25% - var(--gap));
  max-width: 25%;
}

.col-4 {
  flex: 1 0 calc(33.333% - var(--gap));
  max-width: 33.333%;
}

.col-5 {
  flex: 1 0 calc(41.66% - var(--gap));
  max-width: 41.66%;
}

.col-6 {
  flex: 1 0 calc(50% - var(--gap));
  max-width: 50%;
}

.col-7 {
  flex: 1 0 calc(58.33% - var(--gap));
  max-width: 58.33%;
}

.col-8 {
  flex: 1 0 calc(66.66% - var(--gap));
  max-width: 66.66%;
}

.col-9 {
  flex: 1 0 calc(75% - var(--gap));
  max-width: 75%;
}

.col-10 {
  flex: 1 0 calc(83.33% - var(--gap));
  max-width: 83.33%;
}

.col-11 {
  flex: 1 0 calc(91.66% - var(--gap));
  max-width: 91.66%;
}

.col-12 {
  flex: 1 0 100%;
}

.offset-1 {
  margin-left: calc(8.3% - var(--gap));
}

.offset-2 {
  margin-left: calc(16.66% - var(--gap));
}

.offset-3 {
  margin-left: calc(25% - var(--gap));
}

.offset-4 {
  margin-left: calc(33.333% - var(--gap));
}

.offset-5 {
  margin-left: calc(41.66% - var(--gap));
}

.offset-6 {
  margin-left: calc(50% - var(--gap));
}

.offset-7 {
  margin-left: calc(58.33% - var(--gap));
}

.offset-8 {
  margin-left: calc(66.66% - var(--gap));
}

.offset-9 {
  margin-left: calc(75% - var(--gap));
}

.offset-10 {
  margin-left: calc(83.33% - var(--gap));
}

.offset-11 {
  margin-left: calc(91.66% - var(--gap));
}

@media (max-width: 419px) {
  [class^=col-],
  .col {
    width: 100%;
    flex: 1 0 100%;
  }
  [class*=xxs-] {
    width: auto;
  }
  .xxs-3 {
    flex: 1 0 calc(25% - var(--gap));
    max-width: 25%;
  }
  .xxs-4 {
    flex: 1 0 calc(33.333% - var(--gap));
    max-width: 33.333%;
  }
  .xxs-6 {
    flex: 1 0 calc(50% - var(--gap));
    max-width: 50%;
  }
  .xxs-8 {
    flex: 1 0 calc(66.6% - var(--gap));
    max-width: 66.6%;
  }
  .xxs-9 {
    flex: 1 0 calc(75% - var(--gap));
    max-width: 75%;
  }
}
@media (min-width: 420px) {
  .col {
    width: auto;
  }
  .xs-1 {
    flex: 1 0 calc(8.3% - var(--gap));
    max-width: 8.3%;
  }
  .xs-2 {
    flex: 1 0 calc(16.66% - var(--gap));
    max-width: 16.66%;
  }
  .xs-3 {
    flex: 1 0 calc(25% - var(--gap));
    max-width: 25%;
  }
  .xs-4 {
    flex: 1 0 calc(33.333% - var(--gap));
    max-width: 33.333%;
  }
  .xs-5 {
    flex: 1 0 calc(41.66% - var(--gap));
    max-width: 41.66%;
  }
  .xs-6 {
    flex: 1 0 calc(50% - var(--gap));
    max-width: 50%;
  }
  .xs-7 {
    flex: 1 0 calc(58.33% - var(--gap));
    max-width: 58.33%;
  }
  .xs-8 {
    flex: 1 0 calc(66.66% - var(--gap));
    max-width: 66.66%;
  }
  .xs-9 {
    flex: 1 0 calc(75% - var(--gap));
    max-width: 75%;
  }
  .xs-10 {
    flex: 1 0 calc(83.33% - var(--gap));
    max-width: 83.33%;
  }
  .xs-11 {
    flex: 1 0 calc(91.66% - var(--gap));
    max-width: 91.66%;
  }
  .xs-12 {
    flex: 1 0 100%;
  }
}
@media (min-width: 768px) {
  .sm-1 {
    flex: 1 0 calc(8.3% - var(--gap));
    max-width: 8.3%;
  }
  .sm-2 {
    flex: 1 0 calc(16.66% - var(--gap));
    max-width: 16.66%;
  }
  .sm-3 {
    flex: 1 0 calc(25% - var(--gap));
    max-width: 25%;
  }
  .sm-4 {
    flex: 1 0 calc(33.333% - var(--gap));
    max-width: 33.333%;
  }
  .sm-5 {
    flex: 1 0 calc(41.66% - var(--gap));
    max-width: 41.66%;
  }
  .sm-6 {
    flex: 1 0 calc(50% - var(--gap));
    max-width: 50%;
  }
  .sm-7 {
    flex: 1 0 calc(58.33% - var(--gap));
    max-width: 58.33%;
  }
  .sm-8 {
    flex: 1 0 calc(66.66% - var(--gap));
    max-width: 66.66%;
  }
  .sm-9 {
    flex: 1 0 calc(75% - var(--gap));
    max-width: 75%;
  }
  .sm-10 {
    flex: 1 0 calc(83.33% - var(--gap));
    max-width: 83.33%;
  }
  .sm-11 {
    flex: 1 0 calc(91.66% - var(--gap));
    max-width: 91.66%;
  }
  .sm-12 {
    flex: 1 0 100%;
  }
}
@media (min-width: 1024px) {
  .md-1 {
    flex: 1 0 calc(8.3% - var(--gap));
    max-width: 8.3%;
  }
  .md-2 {
    flex: 1 0 calc(16.66% - var(--gap));
    max-width: 16.66%;
  }
  .md-3 {
    flex: 1 0 calc(25% - var(--gap));
    max-width: 25%;
  }
  .md-4 {
    flex: 1 0 calc(33.333% - var(--gap));
    max-width: 33.333%;
  }
  .md-5 {
    flex: 1 0 calc(41.66% - var(--gap));
    max-width: 41.66%;
  }
  .md-6 {
    flex: 1 0 calc(50% - var(--gap));
    max-width: 50%;
  }
  .md-7 {
    flex: 1 0 calc(58.33% - var(--gap));
    max-width: 58.33%;
  }
  .md-8 {
    flex: 1 0 calc(66.66% - var(--gap));
    max-width: 66.66%;
  }
  .md-9 {
    flex: 1 0 calc(75% - var(--gap));
    max-width: 75%;
  }
  .md-10 {
    flex: 1 0 calc(83.33% - var(--gap));
    max-width: 83.33%;
  }
  .md-11 {
    flex: 1 0 calc(91.66% - var(--gap));
    max-width: 91.66%;
  }
  .md-12 {
    flex: 1 0 100%;
  }
}
@media (min-width: 1280px) {
  .lg-1 {
    flex: 1 0 calc(8.3% - var(--gap));
    max-width: 8.3%;
  }
  .lg-2 {
    flex: 1 0 calc(16.66% - var(--gap));
    max-width: 16.66%;
  }
  .lg-3 {
    flex: 1 0 calc(25% - var(--gap));
    max-width: 25%;
  }
  .lg-4 {
    flex: 1 0 calc(33.333% - var(--gap));
    max-width: 33.333%;
  }
  .lg-5 {
    flex: 1 0 calc(41.66% - var(--gap));
    max-width: 41.66%;
  }
  .lg-6 {
    flex: 1 0 calc(50% - var(--gap));
    max-width: 50%;
  }
  .lg-7 {
    flex: 1 0 calc(58.33% - var(--gap));
    max-width: 58.33%;
  }
  .lg-8 {
    flex: 1 0 calc(66.66% - var(--gap));
    max-width: 66.66%;
  }
  .lg-9 {
    flex: 1 0 calc(75% - var(--gap));
    max-width: 75%;
  }
  .lg-10 {
    flex: 1 0 calc(83.33% - var(--gap));
    max-width: 83.33%;
  }
  .lg-11 {
    flex: 1 0 calc(91.66% - var(--gap));
    max-width: 91.66%;
  }
  .lg-12 {
    flex: 1 0 100%;
  }
}
@media (min-width: 1600px) {
  .xl-1 {
    flex: 1 0 calc(8.3% - var(--gap));
    max-width: 8.3%;
  }
  .xl-2 {
    flex: 1 0 calc(16.66% - var(--gap));
    max-width: 16.66%;
  }
  .xl-3 {
    flex: 1 0 calc(25% - var(--gap));
    max-width: 25%;
  }
  .xl-4 {
    flex: 1 0 calc(33.333% - var(--gap));
    max-width: 33.333%;
  }
  .xl-5 {
    flex: 1 0 calc(41.66% - var(--gap));
    max-width: 41.66%;
  }
  .xl-6 {
    flex: 1 0 calc(50% - var(--gap));
    max-width: 50%;
  }
  .xl-7 {
    flex: 1 0 calc(58.33% - var(--gap));
    max-width: 58.33%;
  }
  .xl-8 {
    flex: 1 0 calc(66.66% - var(--gap));
    max-width: 66.66%;
  }
  .xl-9 {
    flex: 1 0 calc(75% - var(--gap));
    max-width: 75%;
  }
  .xl-10 {
    flex: 1 0 calc(83.33% - var(--gap));
    max-width: 83.33%;
  }
  .xl-11 {
    flex: 1 0 calc(91.66% - var(--gap));
    max-width: 91.66%;
  }
  .xl-12 {
    flex: 1 0 100%;
  }
}
/*! Spectre.css v0.5.9 | MIT License | github.com/picturepan2/spectre */
/* Manually forked from Normalize.css */
/* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/** 1. Change the default font family in all browsers (opinionated). 2. Correct the line height in all browsers. 3. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS. */
/* Document ========================================================================== */
:root {
  --g050: #f7f8f9;
  --g075: #f1f1fc;
  --g100: #eef0f3;
  --g200: #dadee4;
  --g300: #bcc3ce;
  --g400: aaa;
  --g500: 899;
  --g600:#66758c;
  --g700: #505c6e;
  --g800:#455060;
  --g900: #303742;
  --color-primary: #5755d9;
  --color-primary-contrast: #fff;
  --color-primary-active: rgba(87, 85, 217,.2);
  --color-secondary: #e5e5f9;
  --color-secondary-contrast: #333;
  --color-secondary-active: #edacff;
  --color-background: #fff;
  --color-text: #2B3755;
  --color-success: #32b643;
  --color-success-contrast: #fff;
  --color-error: #e85600;
  --color-error-contrast: #fff;
  --color-warning:#ffb700;
  --color-warning-contrast: #fff;
  --color-borders: var(--g300);
  --color-inputs: var(--g100);
  --color-highlight: #ffe9b3;
}

html {
  font-family: sans-serif; /* 1 */
  -webkit-text-size-adjust: 100%; /* 3 */
  -ms-text-size-adjust: 100%; /* 3 */
}

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

/** Add the correct display in IE 9-. */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content ========================================================================== */
/** Add the correct display in IE 9-. 1. Add the correct display in IE. */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/** Add the correct margin in IE 8 (removed). */
/** 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-bottom: 1px solid var(--g300);
}

/** 1. Correct the inheritance and scaling of font size in all browsers. (removed) 2. Correct the odd `em` font sizing in all browsers. */
/* Text-level semantics ========================================================================== */
/** 1. Remove the gray background on active links in IE 10. 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/** Remove the outline on focused links when they are also active or hovered in all browsers (opinionated). */
a:active,
a:hover {
  outline-width: 0;
}

/** Modify default styling of address. */
address {
  font-style: normal;
}

/** 1. Remove the bottom border in Firefox 39-. 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. (removed) */
/** Prevent the duplicate application of `bolder` by the next rule in Safari 6. */
strong {
  font-weight: inherit;
}

/** Add the correct font weight in Chrome, Edge, and Safari. */
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 {
  font-family: "SF Mono", "Segoe UI Mono", "Roboto Mono", Menlo, Courier, monospace; /* 1 (changed) */
  font-size: 1em; /* 2 */
}

/** Add the correct background and color in IE 9-. (Removed) */
/** Add the correct font size in all browsers. */
small {
  font-size: 80%;
}

/* Embedded content ========================================================================== */
/** Add the correct display in IE 9-. */
audio,
video {
  display: inline-block;
}

/** Add the correct display in iOS 4-7. */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

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

/* Forms ========================================================================== */
/** 1. Change the font styles in all browsers (opinionated). 2. Remove the margin in Firefox and Safari. */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 (changed) */
  font-size: inherit; /* 1 (changed) */
  line-height: inherit; /* 1 (changed) */
  margin: 0; /* 2 */
}

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

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

/** 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,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/** Remove the inner border and padding in Firefox. */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/** Restore the focus styles unset by the previous rule (removed). */
/** Change the border, margin, and padding in all browsers (opinionated) (changed). */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/** 1. Add the correct display in IE 9-. 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

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

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

/** 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] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

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

/* Interactive ========================================================================== */
/* Add the correct display in IE 9-. 1. Add the correct display in Edge, IE, and Firefox. */
details,
menu {
  display: block;
}

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

/* Scripting ========================================================================== */
/** Add the correct display in IE 9-. */
canvas {
  display: inline-block;
}

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

/* Hidden ========================================================================== */
/** Add the correct display in IE 10-. */
[hidden] {
  display: none;
}

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

html {
  box-sizing: border-box;
  font-size: 20px;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--color-background);
  color: var(--color-text);
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 18px;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--color-primary);
  outline: none;
  text-decoration: none;
}

a:focus {
  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.2);
}

a:focus,
a:hover,
a:active,
a.active {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: inherit;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5em;
  margin-top: 0;
}

h1,
.h1 {
  font-size: 2.4rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.6rem;
}

h4,
.h4 {
  font-size: 1.2rem;
}

h5,
.h5 {
  font-size: 1rem;
}

h6,
.h6 {
  font-size: 0.8rem;
}

p {
  margin: 0 0 1.2rem;
}

a,
ins,
u {
  -webkit-text-decoration-skip: ink edges;
  text-decoration-skip: ink edges;
}

abbr[title] {
  border-bottom: 0.05rem dotted;
  cursor: help;
  text-decoration: none;
}

kbd {
  background: var(--color-text);
  border-radius: 0.1rem;
  color: var(--color-background);
  font-size: 0.7em;
  line-height: 1.25;
  padding: 0.1rem 0.2rem;
}

mark {
  background: var(--color-highlight);
  border-bottom: 0.05rem solid var(--color-warning);
  border-radius: 0.1rem;
  color: var(--color-text);
  padding: 0.05rem 0.1rem 0;
}

blockquote {
  border-left: 0.1rem solid var(--g200);
  margin-left: 0;
  padding: 0.4rem 0.8rem;
}

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

ul,
ol {
  margin: 0.8rem 0 0.8rem 0.8rem;
  padding: 0;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin: 0.8rem 0 0.8rem 0.8rem;
}

ul li,
ol li {
  margin-top: 0.4rem;
}

ul {
  list-style: disc inside;
}

ul ul {
  list-style-type: circle;
}

ol {
  list-style: decimal inside;
}

ol ol {
  list-style-type: lower-alpha;
}

dl dt {
  font-weight: bold;
}

dl dd {
  margin: 0.4rem 0 0.8rem 0;
}

.table {
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  width: 100%;
}

.table.table-striped tbody tr:nth-of-type(odd) {
  background: rgb(247, 248, 249);
}

.table tbody tr.active,
.table.table-striped tbody tr.active {
  background: var(--color-inputs);
}

.table.table-hover tbody tr:hover {
  background: var(--color-inputs);
}

.table.table-scroll {
  display: block;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  white-space: nowrap;
}

.table td,
.table th {
  border-bottom: 0.05rem solid var(--g200);
  padding: 0.6rem 0.4rem;
}

.table th {
  border-bottom-width: 0.1rem;
}

.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0.05rem solid var(--color-primary);
  border-radius: 0.1rem;
  color: var(--color-primary);
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  height: auto;
  line-height: 1.2em;
  outline: none;
  padding: 0.4rem 0.8rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border 0.2s, box-shadow 0.2s, color 0.2s;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

.btn:focus {
  box-shadow: 0 0 0 0.1rem rgba(75, 75, 85, 0.2);
}

.btn:focus,
.btn:hover {
  background: rgba(100, 100, 100, 0.1);
  border-color: var(--color-primary);
  text-decoration: none;
}

.btn:active,
.btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-primary-contrast);
  text-decoration: none;
}

.btn:active.loading::after,
.btn.active.loading::after {
  border-bottom-color: var(--color-primary-contrast);
  border-left-color: var(--color-primary-contrast);
}

.btn[disabled],
.btn:disabled,
.btn.disabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.btn.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-primary-contrast);
}

.btn.btn-primary:focus,
.btn.btn-primary:hover,
.btn.btn-primary:active {
  box-shadow: inset 0 0 2000px 2000px var(--color-primary-active);
  background: var(--color-primary);
}

.btn.btn-primary.loading::after {
  border-bottom-color: var(--color-primary-contrast);
  border-left-color: var(--color-primary-contrast);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-secondary-contrast);
  border-color: var(--color-secondary);
}

.btn.btn-secondary:focus,
.btn.btn-secondary:hover,
.btn.btn-secondary:active {
  box-shadow: inset 0 0 2000px 2000px var(--color-secondary-active);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn.btn-success {
  background: var(--color-success);
  border-color: var(--color-success);
  color: var(--color-success-contrast);
}

.btn.btn-success:focus,
.btn.btn-success:hover,
.btn.btn-success.active {
  background: var(--color-success);
  box-shadow: inset 0 0 2000px 2000px rgba(12, 63, 35, 0.5);
}

.btn.btn-success.loading::after {
  border-bottom-color: var(--color-success-contrast);
  border-left-color: var(--color-success-contrast);
}

.btn.btn-error {
  background: var(--color-error);
  border-color: var(--color-error);
  color: var(--color-error-contrast);
}

.btn.btn-error:focus,
.btn.btn-error:hover,
.btn.btn-error.active {
  background: var(--color-error);
  box-shadow: inset 0 0 2000px 2000px rgba(63, 12, 12, 0.5);
}

.btn.btn-error.loading::after {
  border-bottom-color: var(--color-error-contrast);
  border-left-color: var(--color-error-contrast);
}

.btn.btn-link {
  background: transparent;
  border-color: transparent;
  color: var(--color-primary);
}

.btn.btn-link:focus,
.btn.btn-link:hover,
.btn.btn-link:active,
.btn.btn-link.active {
  box-shadow: inset 0 0 2000px 2000px var(--color-primary-active);
}

.btn.btn-sm {
  font-size: 0.7em;
  padding: 0.05rem 0.3rem;
}

.btn.btn-lg {
  font-size: 0.9em;
  padding: 0.35rem 0.6rem;
}

.btn.btn-block {
  display: block;
  width: 100%;
}

.btn.btn-action {
  padding-left: 0;
  padding-right: 0;
  width: 1.8rem;
}

.btn.btn-action.btn-sm {
  width: 1.4rem;
}

.btn.btn-action.btn-lg {
  width: 2rem;
}

.btn.btn-clear {
  background: transparent;
  border: 0;
  color: currentColor;
  height: 1rem;
  line-height: 0.8em;
  margin-left: 0.2rem;
  margin-right: -2px;
  opacity: 1;
  padding: 0.1rem;
  text-decoration: none;
  width: 1rem;
}

.btn.btn-clear:focus,
.btn.btn-clear:hover {
  background: rgba(247, 248, 249, 0.5);
  opacity: 0.95;
}

.btn.btn-clear::before {
  content: "✕";
}

.btn-group {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn-group .btn {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.btn-group .btn:first-child:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
  margin-left: -0.05rem;
}

.btn-group .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: -0.05rem;
}

.btn-group .btn:focus,
.btn-group .btn:hover,
.btn-group .btn:active,
.btn-group .btn.active {
  z-index: 1;
}

.btn-group.btn-group-block {
  display: -ms-flexbox;
  display: flex;
}

.btn-group.btn-group-block .btn {
  -ms-flex: 1 0 0;
  flex: 1 0 0;
}

.form-group:not(:last-child) {
  margin-bottom: 0.4rem;
}

fieldset {
  margin-bottom: 0.8rem;
}

legend {
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.form-label {
  display: block;
  line-height: 1.2em;
  padding: 0.3rem 0;
}

.form-label.label-sm {
  font-size: 0.7em;
  padding: 0.1rem 0;
}

.form-label.label-lg {
  font-size: 0.9em;
  padding: 0.4rem 0;
}

.form-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-background);
  background-image: none;
  border: 0.05rem solid var(--color-borders);
  border-radius: 0.1rem;
  color: var(--color-text);
  display: block;
  font-size: 0.8em;
  height: 1.8rem;
  line-height: 1.2em;
  max-width: 100%;
  outline: none;
  padding: 0.25rem 0.4rem;
  position: relative;
  transition: background 0.2s, border 0.2s, box-shadow 0.2s, color 0.2s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.1rem rgba(87, 85, 217, 0.2);
}

.form-input:-ms-input-placeholder {
  color: var(--color-borders);
}

.form-input::-ms-input-placeholder {
  color: var(--color-borders);
}

.form-input::placeholder {
  color: var(--color-borders);
}

.form-input.input-sm {
  font-size: 0.7em;
  height: 1.4rem;
  padding: 0.05rem 0.3rem;
}

.form-input.input-lg {
  font-size: 0.9em;
  height: 2rem;
  padding: 0.35rem 0.6rem;
}

.form-input.input-inline {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}

.form-input[type=file] {
  height: auto;
}

textarea.form-input,
textarea.form-input.input-lg,
textarea.form-input.input-sm {
  height: auto;
}

.form-input-hint {
  color: var(--color-borders);
  font-size: 0.7em;
  margin-top: 0.2rem;
}

.has-success .form-input-hint,
.is-success + .form-input-hint {
  color: var(--color-success);
}

.has-error .form-input-hint,
.is-error + .form-input-hint {
  color: var(--color-error);
}

.has-icon-left,
.has-icon-right {
  position: relative;
}

.has-icon-left .form-icon,
.has-icon-right .form-icon {
  height: 0.8rem;
  margin: 0 0.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  z-index: 2;
}

.has-icon-left .form-icon {
  left: 0.05rem;
}

.has-icon-left .form-input {
  padding-left: 1.3rem;
}

.has-icon-right .form-icon {
  right: 0.05rem;
}

.has-icon-right .form-input {
  padding-right: 1.3rem;
}

.input-group {
  display: -ms-flexbox;
  display: flex;
}

.input-group .input-group-addon {
  background: var(--g050);
  border: 0.05rem solid var(--color-borders);
  border-radius: 0.1rem;
  line-height: 1.2em;
  padding: 0.25rem 0.4rem;
  white-space: nowrap;
}

.input-group .input-group-addon.addon-sm {
  font-size: 0.7em;
  padding: 0.05rem 0.3rem;
}

.input-group .input-group-addon.addon-lg {
  font-size: 0.9em;
  padding: 0.35rem 0.6rem;
}

.input-group .form-input {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
}

.input-group .input-group-btn {
  z-index: 1;
}

.input-group .form-input:first-child:not(:last-child),
.input-group .input-group-addon:first-child:not(:last-child),
.input-group .input-group-btn:first-child:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group .form-input:not(:first-child):not(:last-child),
.input-group .input-group-addon:not(:first-child):not(:last-child),
.input-group .input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
  margin-left: -0.05rem;
}

.input-group .form-input:last-child:not(:first-child),
.input-group .input-group-addon:last-child:not(:first-child),
.input-group .input-group-btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: -0.05rem;
}

.input-group .form-input:focus,
.input-group .input-group-addon:focus,
.input-group .input-group-btn:focus {
  z-index: 2;
}

.input-group.input-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.has-success .form-input,
.form-input.is-success {
  border-color: var(--color-success);
}

.has-success .form-input:focus,
.form-input.is-success:focus {
  box-shadow: 0 0 0 0.1rem rgba(50, 182, 67, 0.2);
}

.has-error .form-input,
.form-input.is-error {
  border-color: var(--color-error);
}

.has-error .form-input:focus,
.form-input.is-error:focus {
  box-shadow: 0 0 0 0.1rem rgba(232, 86, 0, 0.2);
}

.form-input:not(:-ms-input-placeholder):invalid {
  border-color: var(--color-error);
}

.form-input:not(:placeholder-shown):invalid {
  border-color: var(--color-error);
}

.form-input:not(:-ms-input-placeholder):invalid:focus {
  box-shadow: 0 0 0 0.1rem rgba(232, 86, 0, 0.2);
}

.form-input:not(:placeholder-shown):invalid:focus {
  box-shadow: 0 0 0 0.1rem rgba(232, 86, 0, 0.2);
}

.form-input:not(:-ms-input-placeholder):invalid + .form-input-hint {
  color: var(--color-error);
}

.form-input:not(:placeholder-shown):invalid + .form-input-hint {
  color: var(--color-error);
}

.form-input:disabled,
.form-input.disabled {
  background-color: var(--color-inputs);
  cursor: not-allowed;
  opacity: 0.5;
}

.form-input[readonly] {
  background-color: var(--g050);
}

input:disabled + .form-icon,
input.disabled + .form-icon {
  background: var(--color-inputs);
  cursor: not-allowed;
  opacity: 0.5;
}

.label {
  background: var(--color-inputs);
  border-radius: 0.1rem;
  color: var(--g800);
  display: inline-block;
  line-height: 1.25;
  padding: 0.1rem 0.2rem;
}

.label.label-rounded {
  border-radius: 5rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.label.label-primary {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
}

.label.label-secondary {
  background: var(--g075);
  color: var(--color-primary);
}

.label.label-success {
  background: var(--color-success);
  color: var(--color-success-contrast);
}

.label.label-warning {
  background: var(--color-warning);
  color: var(--color-warnging-contrast);
}

.label.label-error {
  background: var(--color-error);
  color: var(--color-error-contrast);
}

code {
  background: var(--g200);
  border-radius: 0.1rem;
  color: var(--color-error);
  font-size: 85%;
  line-height: 1.25;
  padding: 0.1rem 0.2rem;
}

.code {
  border-radius: 0.1rem;
  color: var(--color-text);
  position: relative;
}

.code::before {
  color: var(--color-borders);
  content: attr(data-lang);
  font-size: 0.7em;
  position: absolute;
  right: 0.4rem;
  top: 0.1rem;
}

.code code {
  background: var(--g050);
  color: inherit;
  display: block;
  line-height: 1.5;
  overflow-x: auto;
  padding: 1rem;
  width: 100%;
}

.img-responsive, img {
  display: block;
  height: auto;
  max-width: 100%;
}

.img-fit-cover {
  object-fit: cover;
}

.img-fit-contain {
  object-fit: contain;
}

.video-responsive {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.video-responsive::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

video.video-responsive {
  height: auto;
  max-width: 100%;
}

video.video-responsive::before {
  content: none;
}

.video-responsive-4-3::before {
  padding-bottom: 75%;
}

.video-responsive-1-1::before {
  padding-bottom: 100%;
}

.figure {
  margin: 0 0 0.4rem 0;
}

.figure .figure-caption {
  color: var(--g600);
  margin-top: 0.4rem;
}

.hero {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.hero.hero-sm {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.hero.hero-lg {
  padding-bottom: 8rem;
  padding-top: 8rem;
}

.hero .hero-body {
  padding: 0.4rem;
}

.navbar {
  align-items: stretch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.navbar .navbar-section {
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 0;
  flex: 1 0 0;
  -ms-flex-align: center;
}

.navbar .navbar-section:not(:first-child):last-child {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.navbar .navbar-center {
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-align: center;
}

.navbar .navbar-brand {
  font-size: 0.9em;
  text-decoration: none;
}

a.navbar-brand img {
  max-width: 220px;
  max-height: 60px;
}

.card {
  background: var(--color-background);
  border: 0.05rem solid var(--g200);
  border-radius: 0.1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card .card-header,
.card .card-body,
.card .card-footer {
  padding: 0.8rem;
  padding-bottom: 0;
}

.card .card-header:last-child,
.card .card-body:last-child,
.card .card-footer:last-child {
  padding-bottom: 0.8rem;
}

.card .card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.card .card-image {
  padding-top: 0.8rem;
}

.card .card-image:first-child {
  padding-top: 0;
}

.card .card-image:first-child img {
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
}

.card .card-image:last-child img {
  border-bottom-left-radius: 0.1rem;
  border-bottom-right-radius: 0.1rem;
}

.chip {
  align-items: center;
  background: var(--color-inputs);
  border-radius: 5rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  font-size: 90%;
  height: 1.2rem;
  line-height: 0.8em;
  margin: 0.1rem;
  max-width: 320px;
  overflow: hidden;
  padding: 0.2rem 0.4rem;
  text-decoration: none;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.chip.active {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
}

.chip .btn-clear {
  border-radius: 50%;
  transform: scale(0.75);
}

.menu {
  background: var(--color-background);
  border-radius: 0.1rem;
  box-shadow: 0 0.05rem 0.2rem rgba(48, 55, 66, 0.3);
  list-style: none;
  margin: 0;
  min-width: 180px;
  padding: 0.4rem;
  transform: translateY(0.2rem);
  z-index: 300;
}

.menu.menu-nav {
  background: transparent;
  box-shadow: none;
}

.menu .menu-item {
  margin-top: 0;
  padding: 0 0.4rem;
  position: relative;
  text-decoration: none;
}

.menu .menu-item > a {
  border-radius: 0.1rem;
  color: inherit;
  display: block;
  margin: 0 -0.4rem;
  padding: 0.2rem 0.4rem;
  text-decoration: none;
}

.menu .menu-item > a:focus,
.menu .menu-item > a:hover {
  background: var(--g075);
  color: var(--color-primary);
}

.menu .menu-item > a:active,
.menu .menu-item > a.active {
  background: var(--g075);
  color: var(--color-primary);
}

.menu .menu-item .form-checkbox,
.menu .menu-item .form-radio,
.menu .menu-item .form-switch {
  margin: 0.1rem 0;
}

.menu .menu-item + .menu-item {
  margin-top: 0.2rem;
}

.modal {
  align-items: center;
  bottom: 0;
  display: none;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0.4rem;
  position: fixed;
  right: 0;
  top: 0;
}

.modal:target,
.modal.active {
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  z-index: 400;
}

.modal:target .modal-overlay,
.modal.active .modal-overlay {
  background: rgba(247, 248, 249, 0.75);
  bottom: 0;
  cursor: default;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.modal:target .modal-container,
.modal.active .modal-container {
  animation: slide-down 0.2s ease 1;
  z-index: 1;
}

.modal.modal-sm .modal-container {
  max-width: 320px;
  padding: 0 0.4rem;
}

.modal.modal-lg .modal-container {
  box-shadow: none;
  max-width: 960px;
}

.modal-container {
  background: var(--color-background);
  border-radius: 0.1rem;
  box-shadow: 0 0.2rem 0.5rem rgba(48, 55, 66, 0.3);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 95vh;
  max-width: 640px;
  padding: 0 0.8rem;
  width: 100%;
}

.modal-container.modal-fullheight {
  max-height: 100vh;
}

.modal-container .modal-header {
  color: var(--color-text);
  padding: 0.8rem;
}

.modal-container .modal-body {
  overflow-y: auto;
  padding: 0.8rem;
  position: relative;
}

.modal-container .modal-footer {
  padding: 0.8rem;
  text-align: right;
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  margin: 0.2rem 0;
}

.nav .nav-item a {
  color: var(--g600);
  padding: 0.2rem 0.4rem;
  text-decoration: none;
}

.nav .nav-item a:focus,
.nav .nav-item a:hover {
  color: var(--color-primary);
}

.nav .nav-item.active > a {
  color: var(--g600);
  font-weight: bold;
}

.nav .nav-item.active > a:focus,
.nav .nav-item.active > a:hover {
  color: var(--color-primary);
}

.nav .nav {
  margin-bottom: 0.4rem;
  margin-left: 0.8rem;
}

.pagination {
  display: flex;
  list-style: none;
  margin: 0.2rem 0;
  padding: 0.2rem 0;
}

.pagination .page-item {
  margin: 0.2rem 0.05rem;
}

.pagination .page-item span {
  display: inline-block;
  padding: 0.2rem 0.2rem;
}

.pagination .page-item a {
  border-radius: 0.1rem;
  display: inline-block;
  padding: 0.2rem 0.4rem;
  text-decoration: none;
}

.pagination .page-item a:focus,
.pagination .page-item a:hover {
  color: var(--color-primary);
}

.pagination .page-item.disabled a {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.pagination .page-item.active a {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
}

.pagination .page-item.page-prev,
.pagination .page-item.page-next {
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

.pagination .page-item.page-next {
  text-align: right;
}

.pagination .page-item .page-item-title {
  margin: 0;
}

.pagination .page-item .page-item-subtitle {
  margin: 0;
  opacity: 0.5;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-1.6rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-primary {
  color: var(--color-primary) !important;
}

a.text-primary:focus,
a.text-primary:hover {
  text-decoration: underline;
}

a.text-primary:visited {
  opacity: 0.8;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

a.text-secondary:focus,
a.text-secondary:hover,
a.text-gray:focus,
a.text-gray:hover {
  box-shadow: inset 0 0 1000px 1000px rgba(0, 0, 0, 0.5);
}

.text-gray {
  color: var(--color-borders) !important;
}

.text-light {
  color: var(--g050) !important;
}

a.text-light:focus,
a.text-light:hover {
  color: var(--g200);
}

a.text-light:visited {
  color: var(--g050);
}

.text-dark {
  color: var(--color-text) !important;
}

a.text-dark:focus,
a.text-dark:hover {
  color: var(--g900);
}

.text-success {
  color: var(--color-success) !important;
}

.text-warning {
  color: var(--color-warning) !important;
}

.text-error {
  color: var(--color-error) !important;
}

.bg-primary {
  background: var(--color-primary) !important;
  color: var(--color-primary-contrast);
}

.bg-secondary {
  background: var(--g075) !important;
}

.bg-dark {
  background: var(--g900) !important;
  color: var(--g050);
}

.bg-gray {
  background: var(--g050) !important;
}

.bg-success {
  background: var(--color-success) !important;
  color: var(--color-success-contrast);
}

.bg-warning {
  background: var(--color-warning) !important;
  color: var(--color-warning-contrast);
}

.bg-error {
  background: var(--color-error) !important;
  color: var(--color-error-contrast);
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.d-none,
.d-hide {
  display: none !important;
}

.d-visible {
  visibility: visible;
}

.d-invisible {
  visibility: hidden;
}

.text-hide {
  background: transparent;
  border: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}

.text-assistive {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.divider,
.divider-vert {
  display: block;
  position: relative;
}

.divider[data-content]::after,
.divider-vert[data-content]::after {
  background: var(--color-background);
  color: var(--color-borders);
  content: attr(data-content);
  display: inline-block;
  font-size: 0.7em;
  padding: 0 0.4rem;
  transform: translateY(-0.65rem);
}

.divider {
  border-top: 0.05rem solid var(--g075);
  height: 0.05rem;
  margin: 0.4rem 0;
}

.divider[data-content] {
  margin: 0.8rem 0;
}

.divider-vert {
  display: block;
  padding: 0.8rem;
}

.divider-vert::before {
  border-left: 0.05rem solid var(--g200);
  bottom: 0.4rem;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 0.4rem;
  transform: translateX(-50%);
}

.divider-vert[data-content]::after {
  left: 50%;
  padding: 0.2rem 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.p-relative {
  position: relative !important;
}

.p-absolute {
  position: absolute !important;
}

.p-fixed {
  position: fixed !important;
}

.p-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.p-centered {
  display: block;
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.m-0 {
  margin: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.m-1 {
  margin: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-1 {
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
}

.m-2 {
  margin: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mx-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-2 {
  margin-bottom: 1rem !important;
  margin-top: 1rem !important;
}

.m-3 {
  margin: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mx-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-3 {
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.p-1 {
  padding: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.px-1 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-1 {
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.px-2 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-2 {
  padding-bottom: 1rem !important;
  padding-top: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-3 {
  padding-bottom: 1.5rem !important;
  padding-top: 1.5rem !important;
}

.s-rounded {
  border-radius: 0.25rem;
}

.s-circle {
  border-radius: 50%;
}

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

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

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

.text-justify {
  text-align: justify;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.text-large {
  font-size: 1.2em;
}

.text-small {
  font-size: 0.9em;
}

.text-tiny {
  font-size: 0.8em;
}

.text-muted {
  opacity: 0.8;
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-clip {
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.text-break {
  hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
}

/*===============typogrpahy==============*/
@font-face {
  font-family: "Bassy";
  src: local("Arial");
  src: url("../Bassy.woff");
  font-display: swap;
}
h1,
.h1,
.display-heading {
  font-weight: 650;
  font-family: var(--heading-font);
  /* font-size: 1.5rem; */
}

h2,
.h2 {
  font-weight: 500;
  font-family: var(--body-font);
  /* font-size: 1rem; */
}

h3,
.h3 {
  font-weight: 600;
  font-family: var(--body-font);
  /* font-size: .875rem; */
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  /* font-size: .75rem; */
  font-weight: 600;
}

.display-heading-1 {
  font-size: 48px;
}

.display-heading-2 {
  font-size: 40px;
}

.display-heading-3 {
  font-size: 36px;
}

.accent-heading {
  font-family: var(--accent-font);
}

.heading {
  font-size: 3rem;
}

/*===============layout=============*/
html,
body {
  min-height: 100vh;
  font-family: var(--body-font);
  font-weight: 325;
  letter-spacing: 0.02em;
  font-size: 18px;
  scroll-behavior: smooth;
}

html,
body,
body > * {
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
}

main {
  padding-top: var(--menu-height);
}

main,
.full-height {
  min-height: calc(100vh - var(--menu-height));
}

main > section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

main.home > section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

figure {
  margin: 0;
  padding: 0;
}

.flex-grow {
  flex-grow: 1;
}

/*===============nav==============*/
header#main-header {
  border-bottom: solid 3px var(--color-dark);
  z-index: 10;
  background: var(--pure-white);
}

#main-menu-button {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  pointer-events: all;
  border-radius: 6px;
  transition: all 0.25s ease-in-out 0s;
}
#main-menu-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 30px;
  opacity: 1;
  right: 4px;
  border-radius: 6px;
  transition: all 0.25s ease-in-out 0s;
  transform: rotate(0deg);
  pointer-events: none;
  mix-blend-mode: darken;
}
#main-menu-button span:nth-child(1) {
  margin-top: -9px;
  background: var(--magenta);
}
#main-menu-button span:nth-child(2) {
  margin-top: 0px;
  margin-right: 0px;
  background: var(--violet);
}
#main-menu-button span:nth-child(3) {
  margin-top: 9px;
  background: var(--cyan);
}
#main-menu-button.opened span:nth-child(1) {
  transform: rotate(135deg);
  margin-top: 0;
}
#main-menu-button.opened span:nth-child(2) {
  opacity: 0;
  right: -0.5rem;
}
#main-menu-button.opened span:nth-child(3) {
  transform: rotate(-135deg);
  margin-top: 0;
}
#main-menu-button:hover, #main-menu-button:active, #main-menu-button:focus-visible {
  box-shadow: none;
  background: var(--lemon);
}

#main-menu {
  transition: all 0.25s ease-in-out 0s;
  flex-direction: column;
  position: absolute;
  right: -300px;
  top: 60px;
  background: var(--color-background);
  padding: 2rem 1rem;
  gap: 2rem;
  width: 240px;
  height: 100vh;
  justify-content: flex-start;
  box-shadow: -7px 7px 10px 0 var(--lavender);
}

#main-menu-button.opened + #main-menu {
  right: 0px;
}

@media (min-width: 768px) {
  #main-menu-button {
    width: 0px;
    opacity: 0;
    overflow: hidden;
    width: 0px;
    pointer-events: none;
    position: absolute;
    z-index: -1;
  }
  #main-menu {
    overflow: visible;
    position: static;
    flex-direction: row;
    gap: 0.5rem;
    min-width: none;
    justify-content: flex-end;
    height: auto;
    box-shadow: none;
    padding: 0;
  }
}
#logo-link .logo-name {
  font-size: 30px;
  line-height: 0.8;
  font-family: "Bassy", Bassy, "DM Sans", "Inter", "Poppins", Inter, Roboto, Arial, Helvetica, sans-serif;
  margin: 9px 0 -10px;
  text-shadow: 2px 1px 1px var(--seafoam);
}
#logo-link .logo-name span.subtitle {
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--accent-font);
  position: relative;
  top: -4px;
  font-weight: 500;
}

nav .btn.btn-link {
  color: var(--font-color);
  font-family: var(--accent-font);
  font-weight: 500;
  position: relative;
}

nav .btn.btn-link:hover {
  box-shadow: none;
  color: var(--color-primary);
}

nav .btn.btn-link:after {
  border-bottom: dotted 4px var(--color-borders);
  position: absolute;
  content: "";
  height: 4px;
  width: 0;
  left: 50%;
  transition: all 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  display: block;
  bottom: -2px;
}

nav .btn.btn-link:hover:after {
  width: calc(100% - 1em);
  left: 0.5em;
}

.meta-section.footer {
  background: white;
  z-index: 0;
}

/*=============== elements  ==============*/
.btn {
  font-weight: 500;
  font-family: var(--accent-font);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn.btn-primary {
  border-radius: 2px;
  box-shadow: 2px 2px 0px 2px var(--purple);
  color: var(--color-primary-contrast);
  background: var(--color-primary);
  border: none;
  padding: 0.5rem 1rem;
}

.btn.btn-primary:focus,
.btn.btn-primary:hover,
.btn.btn-primary:active {
  box-shadow: inset 3px 3px 0px 1px rgba(0, 0, 0, 0.2), 2px 2px 0px 2px var(--color-secondary);
  transform: translate(2px, 2px);
}

.btn.btn-secondary {
  border-radius: 2px;
  box-shadow: 2px 2px 0px 2px var(--color-primary);
  color: var(--color-primary);
  border: none;
  padding: 0.5rem 1rem;
}

.btn.btn-secondary:focus,
.btn.btn-secondary:hover,
.btn.btn-secondary:active {
  box-shadow: inset 3px 3px 0px 1px rgba(0, 0, 0, 0.2), 2px 2px 0px 2px var(--color-secondary);
  transform: translate(2px, 2px);
}

.label {
  border-radius: var(--default-radius);
  padding: 0.1rem 0.4rem;
  transition: var(--default-animation);
  border: 1px solid;
  background: none;
  position: relative;
  overflow: hidden;
}

a.label.solid {
  color: var(--white);
  border-color: transparent;
  padding: 0.5rem 1.25rem;
  font-family: var(--accent-font);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
}

a.label:hover {
  text-decoration: none;
}

.label::before {
  content: "▮▮";
  font-size: 300px;
  width: 200%;
  height: 0%;
  position: absolute;
  text-indent: -70px;
  letter-spacing: -150px;
  top: 0;
  left: 0;
  z-index: 1;
  line-height: 0;
  opacity: 0;
}

a.label:hover::before {
  opacity: 0.12;
  height: 100%;
}

a.label.solid::before {
  content: none;
}

a.label.solid:hover {
  box-shadow: inset 0 0 1000px 0 rgba(0, 0, 0, 0.2);
}

.gallery-col {
  min-height: 330px;
}

.gallery-item {
  transition: var(--default-animation) 200ms;
  border-radius: var(--default-radius);
  border: rgba(234, 229, 255, 0.431372549) solid 0.1em;
  overflow: hidden;
}
.gallery-item:hover {
  transform: scale(1.05);
  transition: var(--default-animation);
  position: absolute;
  z-index: 1;
}
.gallery-item a {
  text-decoration: none;
}
.gallery-item h3 {
  font-family: var(--body-font);
  font-weight: 450;
  color: var(--dark);
  line-height: 1.27;
}
.gallery-item:hover h3 {
  color: var(--color-primary);
}
.gallery-item .card-image .img-responsive {
  aspect-ratio: 1.5;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.gallery-item .card-body {
  min-height: 106px;
  padding: 0;
}
.gallery-item .card-body > * {
  padding: 0.8rem;
}
.gallery-item:hover .tag-list {
  height: auto;
  opacity: 1;
  transition: var(--default-animation) 250ms;
}

.tag-list {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  gap: 0.3rem;
  flex-flow: row wrap;
  height: 0;
  opacity: 0;
  transition: var(--default-animation);
}
.tag-list a {
  max-width: 31vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*===============utilities==============*/
v-100, h-100 {
  height: 100%;
}

.bg-ocean {
  background: var(--ocean);
}

.text-ocean {
  color: var(--ocean);
  fill: var(--ocean);
}

.bg-violet {
  background: var(--violet);
}

.text-violet {
  color: var(--violet);
  fill: var(--violet);
}

.bg-magenta {
  background: var(--magenta);
}

.text-magenta {
  color: var(--magenta);
  fill: var(--magenta);
}

.bg-lavender {
  background: var(--lavender);
}

.text-lavender {
  color: var(--lavender);
  fill: var(--lavender);
}

.bg-lemon {
  background: var(--lemon);
}

.text-lemon {
  color: var(--lemon);
  fill: var(--lemon);
}

.bg-seafoam {
  background: var(--seafoam);
}

.text-seafoam {
  color: var(--seafoam);
  fill: var(--seafoam);
}

.bg-cyan {
  background: var(--cyan);
}

.text-cyan {
  color: var(--cyan);
  fill: var(--cyan);
}

.bg-powder-blue {
  background: var(--powder-blue);
}

.text-powder-blue {
  color: var(--powder-blue);
  fill: var(--powder-blue);
}

.bg-lavender-100 {
  background: var(--lavender-100);
}

.text-lavender-100 {
  color: var(--lavender-100);
  fill: var(--lavender-100);
}

.bg-lemon-100 {
  background: var(--lemon-100);
}

.text-lemon-100 {
  color: var(--lemon-100);
  fill: var(--lemon-100);
}

.bg-pure-white {
  background: var(--pure-white);
}

.text-pure-white {
  color: var(--pure-white);
  fill: var(--pure-white);
}

.bg-navy {
  background: var(--navy);
}

.text-navy {
  color: var(--navy);
  fill: var(--navy);
}

.bg-success {
  background: var(--success);
}

.text-success {
  color: var(--success);
  fill: var(--success);
}

.bg-error {
  background: var(--error);
}

.text-error {
  color: var(--error);
  fill: var(--error);
}

.bg-muted {
  background: var(--muted);
}

.text-muted {
  color: var(--muted);
  fill: var(--muted);
}

.bg-purple {
  background: var(--purple);
}

.text-purple {
  color: var(--purple);
  fill: var(--purple);
}

.bg-blue {
  background: var(--blue);
}

.text-blue {
  color: var(--blue);
  fill: var(--blue);
}

.bg-green {
  background: var(--green);
}

.text-green {
  color: var(--green);
  fill: var(--green);
}

.bg-yellow {
  background: var(--yellow);
}

.text-yellow {
  color: var(--yellow);
  fill: var(--yellow);
}

.bg-orange {
  background: var(--orange);
}

.text-orange {
  color: var(--orange);
  fill: var(--orange);
}

.bg-pink {
  background: var(--pink);
}

.text-pink {
  color: var(--pink);
  fill: var(--pink);
}

.bg-white {
  background: var(--white);
}

.text-white {
  color: var(--white);
  fill: var(--white);
}

/* home */
.home {
  background: linear-gradient(to bottom, var(--lavender), var(--powder-blue), var(--seafoam), var(--lemon-100), #ffe7c0, #ffdcdc);
  z-index: 0;
  overflow: visible;
}

.home:before {
  content: "";
  position: fixed;
  height: 150vw;
  width: 150vw;
  z-index: -1;
  background: radial-gradient(var(--lemon) 25%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0));
  transform: translate(-50vw, -4vw);
}

.bio-title {
  font-family: "Bassy", "DM Sans", "Inter", "Poppins", Inter, Roboto, Arial, Helvetica, sans-serif;
  font-size: 80px;
  line-height: 1.5;
  z-index: -1;
  display: inline-block;
  position: relative;
  top: 38px;
  left: -8px;
  overflow: visible;
  text-shadow: 3px 3px 2px var(--seafoam);
  color: var(--color-text);
  white-space: nowrap;
}

.bio-title + .subtitle {
  font-family: var(--accent-font);
  text-shadow: 3px 3px 2px var(--seafoam);
  white-space: nowrap;
}

.bio-photo {
  max-width: 250px;
  box-shadow: 70px 28px 0 4px rgba(249, 255, 0, 0.18), -70px 28px 0 4px rgba(0, 232, 255, 0.18), 0px -70px 0 4px rgba(255, 0, 0, 0.18);
}

.social-links {
  gap: 0.5rem;
}

.social-links a {
  width: 36px;
  padding: 8px;
  border-radius: var(--default-radius);
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
  transition: var(--default-animation);
}

.social-links a:hover,
.social-links a:active {
  background: var(--white);
  color: var(--color-primary);
  text-decoration: none;
}

/* about */
#about img {
  max-height: 400px;
}

@media (max-width: 767px) {
  section#about {
    padding-top: 0;
    padding-bottom: 0;
  }
  #about img {
    display: none;
  }
}
#person h2 {
  color: var(--magenta);
}

#about h2 {
  color: var(--violet);
}

#contact-section h2 {
  color: var(--ocean);
}

#person img,
#about img {
  border-radius: var(--default-radius);
}

/* work section*/
.home #work {
  background: var(--lavender-050);
}

#work h2 {
  color: var(--cyan);
}

/* contact */
#contact-section .card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--default-radius);
}
#contact-section .form-label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.76;
}
#contact-section .form-input {
  background: var(--pure-white);
  border-color: var(--lavender);
  min-height: 44px;
}

#message {
  min-height: 120px;
}

#my-form-status {
  color: var(--color-text) !important;
}

/* tags page */
#tags .archive-list {
  gap: 0.5rem;
  --gap: .5rem;
}

.archive-title-link:hover {
  text-decoration: none;
}

.archive-title-link:after {
  content: "";
  background: var(--color-primary);
  width: 100%;
  height: 0.1em;
  display: block;
}

/* single work */
body.work main section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  min-height: 16rem;
  position: relative;
}
body.work main section:nth-child(even) {
  background-color: var(--lavender-050);
  border-top: solid 1px #e7f0f0;
  border-bottom: solid 1px #e7f0f0;
}
body.work main section #work-header-left img {
  border-radius: 36px;
}
body.work main section .subtitle {
  font-weight: 500;
  line-height: 1.3;
}
body.work main section strong.org,
body.work main section dl dt,
body.work main section .h5 {
  font-weight: 500;
}
body.work main section .impact li {
  text-indent: -1rem;
}
@media (min-width: 768px) {
  body.work main section .work-header-bottom dl {
    display: grid;
    grid-template-columns: 58% 42%;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 1rem;
    width: 100%;
  }
  body.work main section .work-header-bottom dd {
    grid-row-start: 2;
  }
}
body.work main section h1.text-pink {
  margin: -0.75rem 0 1.25rem;
}
body.work main section p:empty {
  display: none;
}
body.work main section a:not(.btn) {
  color: var(--color-primary);
  font-weight: 0;
}
body.work main section a:not(.btn):hover {
  color: var(--color-primary);
}

.content-section li {
  text-indent: -1.5rem;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.content-section li p {
  display: inline;
}
.content-section h2 {
  color: var(--color-primary);
}
.content-section h3 {
  margin-top: 2rem;
  font-weight: 300;
}
.content-section strong, .content-section b {
  font-weight: 600;
}
.content-section .container h2,
.content-section .container h3 {
  width: 100%;
}
.content-section .container hr {
  max-width: 100%;
  width: 100%;
  border: none;
  border-bottom: var(--lavender) 5px dotted;
}
.content-section .container hr.break {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.content-section figure {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0;
  border-radius: 4%;
}
.content-section figure .figure-img {
  margin: 0;
  border-radius: 4% 4% 0 0;
}
.content-section figure figcaption {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.25rem 0.5rem;
}
.content-section .image-modal-link {
  border-radius: 4%;
  overflow: hidden;
  display: block;
}
.content-section .image-modal-link:hover {
  text-decoration: none;
  opacity: 1;
}

.content div[class*=bg-] {
  border-radius: 16px;
}

.spinner {
  background: radial-gradient(white 20%, rgba(255, 255, 255, 0.7) 100%);
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  opacity: 1;
  pointer-events: none;
}
.spinner:before {
  position: absolute;
  opacity: 1;
  z-index: -1;
  background: radial-gradient(white 59.9%, transparent 60%), conic-gradient(hsl(0, 100%, 80%), hsl(30, 100%, 80%), hsl(60, 100%, 80%), hsl(90, 100%, 80%), hsl(120, 100%, 80%), hsl(150, 100%, 80%), hsl(180, 100%, 80%), hsl(210, 100%, 80%), hsl(240, 100%, 80%), hsl(270, 100%, 80%), hsl(300, 100%, 80%), hsl(330, 100%, 80%), hsl(0, 100%, 80%));
  animation: r 2s linear infinite;
  content: "";
  margin: -6em;
  width: 12em;
  height: 12em;
  top: 50%;
  left: 50%;
  border-radius: 50%;
}

@keyframes r {
  to {
    transform: rotate(1turn);
  }
}
hr.content-divider {
  margin: 2rem 1rem 3rem;
}

.bg-accent hr.content-divider {
  border-color: var(--white);
}

.modal-container a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
}
.modal-container .close.btn.btn-link {
  line-height: 1;
  padding: 0 6px;
  position: relative;
  right: -12px;
}
.modal-container .close.btn.btn-link span {
  font-size: 36px;
}

.grid.container {
  gap: 0;
  position: relative;
}
.grid.container .grid-sizer {
  opacity: 0;
  height: 0;
  margin: 0 !important;
}
.grid.container .grid-item {
  padding: 10px;
}

@media print {
  #main-header {
    display: none;
  }
  html, body, main {
    font-size: 14px;
  }
  main {
    height: 100%;
    margin-top: 0;
    padding-top: 0;
  }
  body.work main section,
  body.work main section:nth-child(2n) {
    padding-top: 0;
    background: none;
  }
  body.work main section .container {
    gap: 1rem;
  }
  .grid.container {
    opacity: 1 !important;
  }
  .spinner {
    display: none !important;
  }
}

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