@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
.container {
  width: calc(100% - 2 * var(--component-padding));
  margin-left: auto;
  margin-right: auto;
}

.grid, .flex {
  --gap: 0px;
  --gap-x: var(--gap);
  --gap-y: var(--gap);
  gap: var(--gap-y) var(--gap-x);
}
.grid > *, .flex > * {
  --sub-gap: 0px;
  --sub-gap-x: var(--sub-gap);
  --sub-gap-y: var(--sub-gap);
}

.grid {
  --grid-columns: 12;
  display: flex;
  flex-wrap: wrap;
}
.grid > * {
  flex-basis: 100%;
  max-width: 100%;
  min-width: 0;
}

/* #region (Safari < 14.1 fallback) */
@media not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .grid, .flex[class*=gap-] {
      gap: 0px;
      margin-bottom: calc(-1 * var(--gap-y));
      margin-left: calc(-1 * var(--gap-x));
    }
    .grid > *, .flex[class*=gap-] > * {
      margin-bottom: var(--sub-gap-y);
    }

    .grid {
      --offset: var(--gap-x);
      --gap-modifier: 0;
      --offset-modifier: 1;
    }
    .grid > * {
      margin-left: var(--offset);
    }

    .flex[class*=gap-] > * {
      margin-left: var(--sub-gap-x);
    }
  }
}
/* #endregion */

.gap-xxxs {
  --gap-x: var(--space-xxxs);
  --gap-y: var(--space-xxxs);
}
.gap-xxxs > * {
  --sub-gap-x: var(--space-xxxs);
  --sub-gap-y: var(--space-xxxs);
}

.gap-lg {
  --gap-x: var(--space-lg);
  --gap-y: var(--space-lg);
}
.gap-lg > * {
  --sub-gap-x: var(--space-lg);
  --sub-gap-y: var(--space-lg);
}

.col-6 {
  --span: 6;
}

 .col-6 {
  flex-basis: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
  max-width: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
}

@media (min-width: 32rem) {

  @media not all and (min-resolution: 0.001dpcm) {
  }
}
@media (min-width: 48rem) {

  @media not all and (min-resolution: 0.001dpcm) {
  }
}
@media (min-width: 64rem) {

  .col-9\@md {
    --span: 9;
  }

   .col-9\@md {
    flex-basis: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
    max-width: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
  }

  @media not all and (min-resolution: 0.001dpcm) {
  }
}
@media (min-width: 80rem) {

  @media not all and (min-resolution: 0.001dpcm) {
  }
}
@media (min-width: 90rem) {

  @media not all and (min-resolution: 0.001dpcm) {
  }
}
*, *::after, *::before {
  box-sizing: inherit;
}

* {
  font: inherit;
}

html, body, div, span, object,
h1, h2, h3, p,
a, img, s, strong, var,
b, i, ul, li, form, label, footer, header, section {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg, white);
}


footer, header, section {
  display: block;
}

 ul {
  list-style: none;
}

button, input {
  margin: 0;
}

.btn, .form-control, .link, .reset {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input::-ms-clear {
  display: none;
}

img, svg {
  max-width: 100%;
}

:root {
  --space-unit: 1rem;
}

:root, * {
  --space-xxxxs: calc(0.125 * var(--space-unit));
  --space-xxxs: calc(0.25 * var(--space-unit));
  --space-xxs: calc(0.375 * var(--space-unit));
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: calc(1.25 * var(--space-unit));
  --space-lg: calc(2 * var(--space-unit));
  --space-xl: calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  --space-xxxl: calc(8.5 * var(--space-unit));
  --space-xxxxl: calc(13.75 * var(--space-unit));
  --component-padding: var(--space-md);
}

:root {
  --radius-sm: calc(var(--radius, 0.25em)/2);
  --radius-md: var(--radius, 0.25em);
  --radius-lg: calc(var(--radius, 0.25em)*2);
  --shadow-xs: 0 0.1px 0.3px rgba(0, 0, 0, 0.06),
                0 1px 2px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
                0 0.9px 1.5px rgba(0, 0, 0, 0.05),
                0 3.5px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
                0 3.1px 5.5px rgba(0, 0, 0, 0.08),
                0 14px 25px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 1.2px 1.9px -1px rgba(0, 0, 0, 0.014),
                0 3.3px 5.3px -1px rgba(0, 0, 0, 0.038),
                0 8.5px 12.7px -1px rgba(0, 0, 0, 0.085),
                0 30px 42px -1px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 1.5px 2.1px -6px rgba(0, 0, 0, 0.012),
                0 3.6px 5.2px -6px rgba(0, 0, 0, 0.035),
                0 7.3px 10.6px -6px rgba(0, 0, 0, 0.07),
                0 16.2px 21.9px -6px rgba(0, 0, 0, 0.117),
                0 46px 60px -6px rgba(0, 0, 0, 0.2);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

:root {
  --heading-line-height: 1.2;
  --body-line-height: 1.4;
}

body {
  font-size: var(--text-base-size, 1rem);
  font-family: var(--font-primary, sans-serif);
  color: var(--color-contrast-high, #323639);
  font-weight: var(--body-font-weight, normal);
}

h1, h2, h3 {
  color: var(--color-contrast-higher, #0d1317);
  line-height: var(--heading-line-height, 1.2);
  font-weight: var(--heading-font-weight, 700);
}

h1 {
  font-size: var(--text-xxl, 2rem);
}

h2 {
  font-size: var(--text-xl, 1.75rem);
}

h3 {
  font-size: var(--text-lg, 1.375rem);
}

a, .link {
  color: var(--color-primary, #4827ec);
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

s {
  text-decoration: line-through;
}

.text-component h1, .text-component h2, .text-component h3 {
  line-height: calc(var(--heading-line-height) * var(--line-height-multiplier, 1));
  margin-bottom: calc(var(--space-unit) * 0.3125 * var(--text-space-y-multiplier, 1));
}
.text-component h2, .text-component h3 {
  margin-top: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
}
.text-component p, .text-component ul li {
  line-height: calc(var(--body-line-height) * var(--line-height-multiplier, 1));
}
.text-component ul, .text-component p {
  margin-bottom: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
}
.text-component ul {
  list-style-position: inside;
}
.text-component ul ul {
  padding-left: 1em;
  margin-bottom: 0;
}
.text-component ul {
  list-style-type: disc;
}
.text-component img {
  display: block;
  margin: 0 auto;
}
.text-component > *:first-child {
  margin-top: 0;
}
.text-component > *:last-child {
  margin-bottom: 0;
}
:root {
  --icon-xxxs: 8px;
  --icon-xxs: 12px;
  --icon-xs: 16px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
  --icon-xxl: 96px;
  --icon-xxxl: 128px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

@keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: var(--btn-font-size, 1em);
  padding-top: var(--btn-padding-y, 0.5em);
  padding-bottom: var(--btn-padding-y, 0.5em);
  padding-left: var(--btn-padding-x, 0.75em);
  padding-right: var(--btn-padding-x, 0.75em);
  border-radius: var(--btn-radius, 0.25em);
}

.form-control {
  font-size: var(--form-control-font-size, 1em);
  padding-top: var(--form-control-padding-y, 0.5em);
  padding-bottom: var(--form-control-padding-y, 0.5em);
  padding-left: var(--form-control-padding-x, 0.75em);
  padding-right: var(--form-control-padding-x, 0.75em);
  border-radius: var(--form-control-radius, 0.25em);
}

:root {
  --z-index-header: 3;
  --z-index-popover: 5;
  --z-index-fixed-element: 10;
  --z-index-overlay: 15;
}

:root {
  --display: block;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

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

.justify-between {
  justify-content: space-between;
}

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

[class^=aspect-ratio], [class*=" aspect-ratio"] {
  --aspect-ratio: calc(16/9);
  position: relative;
  height: 0;
  padding-bottom: calc(100% / (var(--aspect-ratio)));
}
[class^=aspect-ratio] > *, [class*=" aspect-ratio"] > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
[class^=aspect-ratio] > *:not(iframe), [class*=" aspect-ratio"] > *:not(iframe) {
  -o-object-fit: cover;
     object-fit: cover;
}

.margin-bottom-sm {
  margin-bottom: var(--space-sm);
}

.margin-bottom-md {
  margin-bottom: var(--space-md);
}

.margin-bottom-lg {
  margin-bottom: var(--space-lg);
}

.margin-bottom-xl {
  margin-bottom: var(--space-xl);
}

.margin-bottom-xxxl {
  margin-bottom: var(--space-xxxl);
}

.margin-right-md {
  margin-right: var(--space-md);
}

.padding-y-sm {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.padding-y-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

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

[class^=color-], [class*=" color-"] {
  --color-o: 1;
}

.color-white {
  color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), var(--color-o, 1));
}

[class^=color-gradient], [class*=" color-gradient"] {
  color: transparent !important;
  -webkit-background-clip: text;
          background-clip: text;
}

.width-50\% {
  width: 50%;
}

:root {
  --max-width-xxxxs: 20rem;
  --max-width-xxxs: 26rem;
  --max-width-xxs: 32rem;
  --max-width-xs: 38rem;
  --max-width-sm: 48rem;
  --max-width-md: 64rem;
  --max-width-lg: 80rem;
  --max-width-xl: 90rem;
  --max-width-xxl: 100rem;
  --max-width-xxxl: 120rem;
  --max-width-xxxxl: 150rem;
}

.max-width-lg {
  max-width: var(--max-width-lg);
}

[class^=max-width-adaptive], [class*=" max-width-adaptive"] {
  max-width: 32rem;
}

:root {
  --inner-glow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
  --inner-glow-top: inset 0 1px 0.5px hsla(0, 0%, 100%, 0.075);
}

[class^=border-], [class*=" border-"] {
  --border-o: 1;
}

 [class^=bg-], [class*=" bg-"] {
  --bg-o: 1;
}

[class^=flip], [class*=" flip"],
[class^=-rotate], [class*=" -rotate"],
[class^=rotate], [class*=" rotate"],
[class^=-translate], [class*=" -translate"],
[class^=translate], [class*=" translate"],
[class^=-scale], [class*=" -scale"],
[class^=scale], [class*=" scale"],
[class^=-skew], [class*=" -skew"] [class^=skew],
[class*=" skew"] {
  --translate: 0;
  --rotate: 0;
  --skew: 0;
  --scale: 1;
  transform: translate3d(var(--translate-x, var(--translate)), var(--translate-y, var(--translate)), var(--translate-z, 0)) rotateX(var(--rotate-x, 0)) rotateY(var(--rotate-y, 0)) rotateZ(var(--rotate-z, var(--rotate))) skewX(var(--skew-x, var(--skew))) skewY(var(--skew-y, 0)) scaleX(var(--scale-x, var(--scale))) scaleY(var(--scale-y, var(--scale)));
}

.visible {
  visibility: visible;
}
@media (min-width: 48rem) {

  .margin-bottom-md\@sm {
    margin-bottom: var(--space-md);
  }
}
@media (min-width: 64rem) {
  .flex\@md {
    display: flex;
  }

  .margin-bottom-md\@md {
    margin-bottom: var(--space-md);
  }

  .margin-bottom-0\@md {
    margin-bottom: 0;
  }
}
:root {
  --color-primary-darker: hsl(250, 84%, 38%);
  --color-primary-darker-h: 250;
  --color-primary-darker-s: 84%;
  --color-primary-darker-l: 38%;
  --color-primary-dark: hsl(250, 84%, 46%);
  --color-primary-dark-h: 250;
  --color-primary-dark-s: 84%;
  --color-primary-dark-l: 46%;
  --color-primary: hsl(250, 84%, 54%);
  --color-primary-h: 250;
  --color-primary-s: 84%;
  --color-primary-l: 54%;
  --color-primary-light: hsl(250, 84%, 60%);
  --color-primary-light-h: 250;
  --color-primary-light-s: 84%;
  --color-primary-light-l: 60%;
  --color-primary-lighter: hsl(250, 84%, 67%);
  --color-primary-lighter-h: 250;
  --color-primary-lighter-s: 84%;
  --color-primary-lighter-l: 67%;
  --color-accent: hsl(216, 70%, 41%);
  --color-accent-h: 216;
  --color-accent-s: 70%;
  --color-accent-l: 41%;
  --color-black: hsl(204, 28%, 7%);
  --color-black-h: 204;
  --color-black-s: 28%;
  --color-black-l: 7%;
  --color-white: hsl(0, 0%, 100%);
  --color-white-h: 0;
  --color-white-s: 0%;
  --color-white-l: 100%;
  --color-warning-darker: hsl(46, 100%, 47%);
  --color-warning-darker-h: 46;
  --color-warning-darker-s: 100%;
  --color-warning-darker-l: 47%;
  --color-warning-dark: hsl(46, 100%, 50%);
  --color-warning-dark-h: 46;
  --color-warning-dark-s: 100%;
  --color-warning-dark-l: 50%;
  --color-warning: hsl(46, 100%, 61%);
  --color-warning-h: 46;
  --color-warning-s: 100%;
  --color-warning-l: 61%;
  --color-warning-light: hsl(46, 100%, 71%);
  --color-warning-light-h: 46;
  --color-warning-light-s: 100%;
  --color-warning-light-l: 71%;
  --color-warning-lighter: hsl(46, 100%, 80%);
  --color-warning-lighter-h: 46;
  --color-warning-lighter-s: 100%;
  --color-warning-lighter-l: 80%;
  --color-success-darker: hsl(122, 50%, 47%);
  --color-success-darker-h: 122;
  --color-success-darker-s: 50%;
  --color-success-darker-l: 47%;
  --color-success-dark: hsl(122, 50%, 52%);
  --color-success-dark-h: 122;
  --color-success-dark-s: 50%;
  --color-success-dark-l: 52%;
  --color-success: hsl(122, 50%, 60%);
  --color-success-h: 122;
  --color-success-s: 50%;
  --color-success-l: 60%;
  --color-success-light: hsl(122, 50%, 69%);
  --color-success-light-h: 122;
  --color-success-light-s: 50%;
  --color-success-light-l: 69%;
  --color-success-lighter: hsl(122, 50%, 76%);
  --color-success-lighter-h: 122;
  --color-success-lighter-s: 50%;
  --color-success-lighter-l: 76%;
  --color-error-darker: hsl(342, 89%, 38%);
  --color-error-darker-h: 342;
  --color-error-darker-s: 89%;
  --color-error-darker-l: 38%;
  --color-error-dark: hsl(342, 89%, 43%);
  --color-error-dark-h: 342;
  --color-error-dark-s: 89%;
  --color-error-dark-l: 43%;
  --color-error: hsl(342, 89%, 48%);
  --color-error-h: 342;
  --color-error-s: 89%;
  --color-error-l: 48%;
  --color-error-light: hsl(342, 89%, 56%);
  --color-error-light-h: 342;
  --color-error-light-s: 89%;
  --color-error-light-l: 56%;
  --color-error-lighter: hsl(342, 89%, 62%);
  --color-error-lighter-h: 342;
  --color-error-lighter-s: 89%;
  --color-error-lighter-l: 62%;
  --color-bg-darker: hsl(210, 4%, 89%);
  --color-bg-darker-h: 210;
  --color-bg-darker-s: 4%;
  --color-bg-darker-l: 89%;
  --color-bg-dark: hsl(180, 3%, 94%);
  --color-bg-dark-h: 180;
  --color-bg-dark-s: 3%;
  --color-bg-dark-l: 94%;
  --color-bg: hsl(0, 0%, 100%);
  --color-bg-h: 0;
  --color-bg-s: 0%;
  --color-bg-l: 100%;
  --color-bg-light: hsl(180, 3%, 100%);
  --color-bg-light-h: 180;
  --color-bg-light-s: 3%;
  --color-bg-light-l: 100%;
  --color-bg-lighter: hsl(210, 4%, 100%);
  --color-bg-lighter-h: 210;
  --color-bg-lighter-s: 4%;
  --color-bg-lighter-l: 100%;
  --color-contrast-lower: hsl(180, 1%, 84%);
  --color-contrast-lower-h: 180;
  --color-contrast-lower-s: 1%;
  --color-contrast-lower-l: 84%;
  --color-contrast-low: hsl(210, 2%, 64%);
  --color-contrast-low-h: 210;
  --color-contrast-low-s: 2%;
  --color-contrast-low-l: 64%;
  --color-contrast-medium: hsl(204, 2%, 46%);
  --color-contrast-medium-h: 204;
  --color-contrast-medium-s: 2%;
  --color-contrast-medium-l: 46%;
  --color-contrast-high: hsl(210, 7%, 21%);
  --color-contrast-high-h: 210;
  --color-contrast-high-s: 7%;
  --color-contrast-high-l: 21%;
  --color-contrast-higher: hsl(204, 28%, 7%);
  --color-contrast-higher-h: 204;
  --color-contrast-higher-s: 28%;
  --color-contrast-higher-l: 7%;
}

@media (min-width: 64rem) {
  :root {
    --space-unit: 1.25em;
  }
}
:root {
  --radius: 0.25em;
}

:root {
  --font-primary: "Montserrat", sans-serif;
  --text-base-size: 1em;
  --text-scale-ratio: 1.2;
  --body-line-height: 1.4;
  --heading-line-height: 1.2;
  --font-primary-capital-letter: 1;
  --text-unit: 1em;
}

:root, * {
  --text-xs: calc((var(--text-unit) / var(--text-scale-ratio)) / var(--text-scale-ratio));
  --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
  --text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
  --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
  --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
  --text-xxxxl: calc(var(--text-xxxl) * var(--text-scale-ratio));
}

@media (min-width: 64rem) {
  :root {
    --text-base-size: 1em;
    --text-scale-ratio: 1.25;
  }
}
body {
  font-family: var(--font-primary);
  --body-font-weight: 500;
}

h1 {
  font-weight: 600;
  font-size: var(--text-xl);
}
@media (min-width: 48rem) {
  h1 {
    font-size: var(--text-xxxxl);
  }
}

h2 {
  font-weight: 600;
}

h1, h2, h3 {
  font-family: var(--font-primary);
  --heading-font-weight: 400;
}

.link {
  text-decoration: none;
  cursor: pointer;
  color: var(--color-black);
  transition: 0.3s;
  font-weight: 600;
}
.link:hover {
  text-decoration: underline;
}

.text-component {
  --line-height-multiplier: 1;
  --text-space-y-multiplier: 1;
}

:root {
  --btn-font-size: 1em;
  --btn-padding-x: var(--space-sm);
  --btn-padding-y: var(--space-xxs);
  --btn-radius: 0;
}

.btn {
  background: var(--color-bg-dark);
  color: var(--color-contrast-higher);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s ease;
  will-change: transform;
}
.btn:focus {
  box-shadow: 0px 0px 0px 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
  outline: none;
}
.btn:active {
  transform: translateY(2px);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-xs);
}
.btn--accent:hover {
  background: var(--color-black);
  box-shadow: var(--shadow-sm);
}
.btn--accent:focus {
  box-shadow: 0px 0px 0px 2px hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2);
}

.btn--border {
  background: transparent;
  border: 1px solid var(--color-black);
  font-weight: 600;
  text-transform: uppercase;
}
.btn--border:hover {
  color: var(--color-white);
  background: var(--color-black);
  box-shadow: var(--shadow-sm);
}

:root {
  --form-control-font-size: 1em;
  --form-control-padding-x: var(--space-xs);
  --form-control-padding-y: var(--space-xxs);
  --form-control-radius: var(--radius-md);
}

.form-control {
  background: var(--color-bg-dark);
  line-height: 1.2;
  transition: all 0.2s ease;
}
.form-control::-moz-placeholder {
  opacity: 1;
  color: var(--color-contrast-low);
}
.form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--color-contrast-low);
}
.form-control::placeholder {
  opacity: 1;
  color: var(--color-contrast-low);
}
.form-control:focus {
  background: var(--color-bg);
  box-shadow: 0px 0px 0px 2px var(--color-primary), var(--shadow-sm);
  outline: none;
}

html {
  scroll-behavior: smooth;
}
/* -------------------------------- 

File#: _1_choice-tags
Title: Choice tags
Descr: Custom, "tag-looking" radio/checkbox buttons
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --choice-tag-icon-size: 16px;
}

.c-choice-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  box-shadow: 0 0 0 1px var(--color-contrast-lower);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: 0.2s;
  width: 100%;
  height: 100%;
}
.c-choice-tag:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  box-shadow: 0 0 0 1px hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.85));
}
.c-choice-tag:active, .c-choice-tag:focus-within, .c-choice-tag.choice-tag--checked {
  box-shadow: 0 0 0 2px var(--color-primary);
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50em;
}
.c-choice-tag:active, .c-choice-tag:focus-within {
  box-shadow: 0 0 0 2px var(--color-primary), 0 0 0 4px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}
.c-choice-tag:focus-within:not(.choice-tag--checked) {
  box-shadow: 0 0 0 1px var(--color-contrast-higher), 0 0 0 3px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50em;
}
.c-choice-tag.choice-tag--checked {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50em;
  box-shadow: none;
  border-color: var(--color-accent);
}

.c-choice-tag__icon {
  font-size: var(--choice-tag-icon-size);
}

.c-choice-tag__icon-group * {
  transform-origin: 8px 8px;
}

.c-choice-tag--checkbox .c-choice-tag__icon {
  color: var(--color-contrast-low);
}
.c-choice-tag--checkbox .c-choice-tag__icon-group {
  stroke-width: 2px;
}
.c-choice-tag--checkbox .c-choice-tag__icon-group * {
  stroke-dasharray: 16;
}
.c-choice-tag--checkbox .c-choice-tag__icon-group :nth-child(1),
.c-choice-tag--checkbox .c-choice-tag__icon-group :nth-child(2) {
  transition: transform 0.3s var(--ease-out-back), stroke-dashoffset 0.3s var(--ease-out-back);
}
.c-choice-tag--checkbox .c-choice-tag__icon-group :nth-child(1) {
  stroke-dashoffset: 24;
}
.c-choice-tag--checkbox .c-choice-tag__icon-group :nth-child(2) {
  stroke-dashoffset: 10;
}
.c-choice-tag--checkbox .c-choice-tag__icon-group :nth-child(3) {
  transition: stroke-dashoffset 0.3s;
  stroke-dashoffset: 0;
}
.c-choice-tag--checkbox input:checked + .c-choice-tag__icon {
  color: var(--color-primary);
}
.c-choice-tag--checkbox input:checked + .c-choice-tag__icon .c-choice-tag__icon-group :nth-child(1) {
  stroke-dashoffset: 23;
  transform: translateX(-2px) translateY(4px) rotate(45deg);
}
.c-choice-tag--checkbox input:checked + .c-choice-tag__icon .c-choice-tag__icon-group :nth-child(2) {
  stroke-dashoffset: 5;
  transform: translateX(-2px) translateY(4px) rotate(-45deg);
}
.c-choice-tag--checkbox input:checked + .c-choice-tag__icon .c-choice-tag__icon-group :nth-child(3) {
  transition: none;
  stroke-dashoffset: 16;
  opacity: 0;
}

.c-choice-tag--radio .choice-tag__icon {
  color: var(--color-contrast-low);
}
.c-choice-tag--radio .c-choice-tag__icon-group :nth-child(1) {
  fill: none;
  stroke-width: 1px;
}
.c-choice-tag--radio .c-choice-tag__icon-group :nth-child(2) {
  fill: var(--color-white);
  transform: scale(0);
  transition: transform 0.3s var(--ease-out-back);
}
.c-choice-tag--radio input:checked + .c-choice-tag__icon .c-choice-tag__icon-group :nth-child(1) {
  stroke: var(--color-primary);
  fill: var(--color-primary);
}
.c-choice-tag--radio input:checked + .c-choice-tag__icon .c-choice-tag__icon-group :nth-child(2) {
  transform: scale(1);
}

/* -------------------------------- 

File#: _1_choice-tags
Title: Choice tags
Descr: Custom, "tag-looking" radio/checkbox buttons
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --choice-tag-icon-size: 16px;
}

.choice-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 50em;
  box-shadow: 0 0 0 1px var(--color-contrast-lower);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: 0.2s;
}
.choice-tag:hover {
  box-shadow: 0 0 0 1px hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.85));
}
.choice-tag:active, .choice-tag:focus-within, .choice-tag.choice-tag--checked {
  box-shadow: 0 0 0 2px var(--color-primary);
}
.choice-tag:active, .choice-tag:focus-within {
  box-shadow: 0 0 0 2px var(--color-primary), 0 0 0 4px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}
.choice-tag:focus-within:not(.choice-tag--checked) {
  box-shadow: 0 0 0 1px var(--color-contrast-higher), 0 0 0 3px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
}
.choice-tag.choice-tag--checked {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.08);
}

.choice-tag__icon {
  font-size: var(--choice-tag-icon-size);
}

.choice-tag__icon-group * {
  transform-origin: 8px 8px;
}

.choice-tag--checkbox .choice-tag__icon {
  color: var(--color-contrast-low);
}
.choice-tag--checkbox .choice-tag__icon-group {
  stroke-width: 2px;
}
.choice-tag--checkbox .choice-tag__icon-group * {
  stroke-dasharray: 16;
}
.choice-tag--checkbox .choice-tag__icon-group :nth-child(1),
.choice-tag--checkbox .choice-tag__icon-group :nth-child(2) {
  transition: transform 0.3s var(--ease-out-back), stroke-dashoffset 0.3s var(--ease-out-back);
}
.choice-tag--checkbox .choice-tag__icon-group :nth-child(1) {
  stroke-dashoffset: 24;
}
.choice-tag--checkbox .choice-tag__icon-group :nth-child(2) {
  stroke-dashoffset: 10;
}
.choice-tag--checkbox .choice-tag__icon-group :nth-child(3) {
  transition: stroke-dashoffset 0.3s;
  stroke-dashoffset: 0;
}
.choice-tag--checkbox input:checked + .choice-tag__icon {
  color: var(--color-primary);
}
.choice-tag--checkbox input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(1) {
  stroke-dashoffset: 23;
  transform: translateX(-2px) translateY(4px) rotate(45deg);
}
.choice-tag--checkbox input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(2) {
  stroke-dashoffset: 5;
  transform: translateX(-2px) translateY(4px) rotate(-45deg);
}
.choice-tag--checkbox input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(3) {
  transition: none;
  stroke-dashoffset: 16;
  opacity: 0;
}

.choice-tag--radio .choice-tag__icon {
  color: var(--color-contrast-low);
}
.choice-tag--radio .choice-tag__icon-group :nth-child(1) {
  fill: none;
  stroke-width: 1px;
}
.choice-tag--radio .choice-tag__icon-group :nth-child(2) {
  fill: var(--color-white);
  transform: scale(0);
  transition: transform 0.3s var(--ease-out-back);
}
.choice-tag--radio input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(1) {
  stroke: var(--color-primary);
  fill: var(--color-primary);
}
.choice-tag--radio input:checked + .choice-tag__icon .choice-tag__icon-group :nth-child(2) {
  transform: scale(1);
}

.donation-section {
  border: 1px solid #c2c2c2;
  padding: var(--space-xs);
}
.donation-section__layout {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .donation-section {
    padding: var(--space-lg);
  }
}
.donation-section h2 {
  font-size: var(--text-lg);
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 48rem) {
  .donation-section h2 {
    font-size: var(--text-xl);
    text-align: left;
  }
}
.donation-section__main-text {
  text-align: center;
}
.donation-section .btn--donate {
  font-size: var(--text-lg);
}
.donation-section .btn--donate.btn--selected {
  border-radius: 2em;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}
.donation-section__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: var(--space-md);
  grid-row-gap: var(--space-sm);
}
.donation-section .div1 {
  grid-area: 3/1/4/4;
}
.donation-section .div2 {
  grid-area: 1/1/2/2;
}
.donation-section .div3 {
  grid-area: 1/2/2/3;
}
.donation-section .div4 {
  grid-area: 1/3/2/4;
}
.donation-section .div5 {
  grid-area: 2/1/3/2;
}
.donation-section .div6 {
  grid-area: 2/2/3/3;
}
.donation-section .div7 {
  grid-area: 2/3/3/4;
}

.logoHeader {
  width: 120px;
}
@media (min-width: 64rem) {
  .logoHeader {
    width: auto;
  }
}

.linksHeader {
  display: flex;
  font-size: 11px;
  width: 70%;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 64rem) {
  .linksHeader {
    font-size: 17px;
  }
}

.hero-ukraine {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #C2C2C2;
}
@media (min-width: 32rem) {
  .hero-ukraine {
    height: 350px;
  }
}
@media (min-width: 48rem) {
  .hero-ukraine {
    height: 600px;
  }
}

/* -------------------------------- 

File#: _1_list
Title: List
Descr: Custom list component
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --list-space-y: var(--space-sm);
  --list-offset: var(--space-xs);
  --list-line-height: var(--body-line-height);
}

.list, .text-component .list {
  padding-left: 0;
  list-style: none;
}
.list ul, .list ol, .text-component .list ul, .text-component .list ol {
  list-style: none;
  margin: 0;
  margin-top: calc(var(--list-space-y) / 2);
  padding-top: calc(var(--list-space-y) / 2);
  padding-left: var(--list-offset);
}
.list li, .text-component .list li {
  padding-bottom: calc(var(--list-space-y) / 2);
  margin-bottom: calc(var(--list-space-y) / 2);
  line-height: var(--list-line-height);
}
.list > li:last-child, .list ul > li:last-child, .list ol > li:last-child, .text-component .list > li:last-child, .text-component .list ul > li:last-child, .text-component .list ol > li:last-child {
  margin-bottom: 0;
}
.list:not(.list--border) > li:last-child, .list ul > li:last-child, .list ol > li:last-child, .text-component .list:not(.list--border) > li:last-child, .text-component .list ul > li:last-child, .text-component .list ol > li:last-child {
  padding-bottom: 0;
}

/* #region (ul + ol) */
.list--ul, .text-component .list--ul,
.list--ol, .text-component .list--ol {
  --list-offset: calc(var(--list-bullet-size) + var(--list-bullet-margin-right));
}
.list--ul ul, .list--ul ol, .text-component .list--ul ul, .text-component .list--ul ol,
.list--ol ul,
.list--ol ol, .text-component .list--ol ul, .text-component .list--ol ol {
  padding-left: 0;
}
.list--ul li, .text-component .list--ul li,
.list--ol li, .text-component .list--ol li {
  padding-left: var(--list-offset);
}
.list--ul li::before, .text-component .list--ul li::before,
.list--ol li::before, .text-component .list--ol li::before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--list-bullet-size);
  height: var(--list-bullet-size);
  vertical-align: middle;
  position: relative;
  top: -0.1em;
  left: calc(var(--list-bullet-margin-right) * -1);
  margin-left: calc(var(--list-bullet-size) * -1);
}

.list--ul, .text-component .list--ul {
  --list-bullet-size: 7px;
  --list-bullet-margin-right: 12px;
}
.list--ul > li::before, .text-component .list--ul > li::before {
  content: "";
  border-radius: 50%;
  color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  background-color: currentColor;
}
.list--ul ul li::before, .text-component .list--ul ul li::before {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px currentColor;
}

.list--ol, .text-component .list--ol {
  --list-bullet-size: 26px;
  --list-bullet-margin-right: 6px;
  --list-bullet-font-size: 14px;
  counter-reset: list-items;
}
.list--ol > li, .text-component .list--ol > li {
  counter-increment: list-items;
}
.list--ol ol, .text-component .list--ol ol {
  counter-reset: list-items;
}
.list--ol > li::before, .text-component .list--ol > li::before {
  content: counter(list-items);
  font-size: var(--list-bullet-font-size, 14px);
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
  color: var(--color-contrast-higher);
  line-height: 1;
  border-radius: 50%;
}
.list--ol ol > li::before, .text-component .list--ol ol > li::before {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}

/* #endregion */
/* #region (border) */
.list--border li:not(:last-child), .text-component .list--border li:not(:last-child) {
  border-bottom: 1px solid var(--color-contrast-lower);
}
.list--border ul, .list--border ol, .text-component .list--border ul, .text-component .list--border ol {
  border-top: 1px solid var(--color-contrast-lower);
}

/* #endregion */
/* #region (icons) */
.list--icons, .text-component .list--icons {
  --list-bullet-size: 24px;
  --list-bullet-margin-right: 8px;
  --list-offset: calc(var(--list-bullet-size) + var(--list-bullet-margin-right));
}
.list--icons ul, .list--icons ol, .text-component .list--icons ul, .text-component .list--icons ol {
  padding-left: var(--list-offset);
}

.list__icon {
  position: relative;
  width: var(--list-bullet-size);
  height: var(--list-bullet-size);
  margin-right: var(--list-bullet-margin-right);
}
.list__icon:not(.top-0) {
  top: calc((1em * var(--list-line-height) - var(--list-bullet-size)) / 2);
}

/* #endregion */
.main-footer {
  background: var(--color-accent);
  min-height: 200px;
  color: #fff;
  padding: var(--space-lg) 0;
}
.main-footer a {
  color: #fff;
  text-decoration: none;
}
.main-footer a.footer--email {
  text-decoration: underline;
}
.main-footer h3 {
  color: #fff;
  margin-bottom: var(--space-sm);
}
@media screen and (max-width: 1023px) {
  .main-footer h3 {
    font-size: var(--space-md);
  }
}
.main-footer input.form-control {
  border-radius: 0;
  background: #fff;
  color: var(--color-black);
}
.main-footer .btn--footer {
  background: #8FABD7;
  color: #fff;
  font-weight: bolder;
}
.main-footer .btn--footer:hover {
  background: var(--color-black);
}
.main-footer .social-network a {
  margin-right: var(--space-md);
}
.main-footer .social-network a svg {
  fill: var(--color-white);
  transition: all 500ms ease;
}
.main-footer .social-network a:hover svg {
  fill: var(--color-black);
}

.sub-footer {
  background: #030303;
}
.sub-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .sub-footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.needs-help__main-text {
  font-size: var(--text-lg);
}
@media (min-width: 48rem) {
  .needs-help__main-text {
    font-size: var(--text-xxl);
  }
}
.needs-help__secondary-text {
  font-size: var(--text-md);
  border-left: 1px solid var(--color-black);
  padding-left: var(--space-md);
}
@media (min-width: 48rem) {
  .needs-help__secondary-text {
    font-size: var(--text-lg);
  }
}