
  

  
  @property --red {
  syntax: "<color>";
  inherits: true;
  initial-value: #ff1414;
}
@property --green {
  syntax: "<color>";
  inherits: true;
  initial-value: #84ff38;
}
@property --yellow {
  syntax: "<color>";
  inherits: true;
  initial-value: #fffb14;
}
@property --gray-100 {
  syntax: "<color>";
  inherits: true;
  initial-value: #f2f2f2;
}
@property --gray-200 {
  syntax: "<color>";
  inherits: true;
  initial-value: #f0f0f0;
}
@property --gray-300 {
  syntax: "<color>";
  inherits: true;
  initial-value: #e6e6e6;
}
@property --gray-400 {
  syntax: "<color>";
  inherits: true;
  initial-value: #d6d6d6;
}
@property --gray-500 {
  syntax: "<color>";
  inherits: true;
  initial-value: #cccccc;
}
@property --gray-600 {
  syntax: "<color>";
  inherits: true;
  initial-value: #c4c4c4;
}
@property --gray-700 {
  syntax: "<color>";
  inherits: true;
  initial-value: #b0b0b0;
}
@property --text-color {
  syntax: "<color>";
  inherits: true;
  initial-value: #000000;
}
@property --surface-dark {
  syntax: "<color>";
  inherits: true;
  initial-value: #000000;
}
@property --surface-light {
  syntax: "<color>";
  inherits: true;
  initial-value: #ffffff;
}

  :host, :root {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #f2f2f2;
  --gray-200: #f0f0f0;
  --gray-300: #e6e6e6;
  --gray-400: #d6d6d6;
  --gray-500: #cccccc;
  --gray-600: #c4c4c4;
  --gray-700: #b0b0b0;
  --text-color: #000000;
  --surface-dark: #000000;
  --surface-light: #ffffff;
}
  @media (prefers-color-scheme: dark) {
      :host, :root {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #1c1c1c;
  --gray-200: #242424;
  --gray-300: #2c2c2c;
  --gray-400: #383838;
  --gray-500: #4d4d4d;
  --gray-600: #666666;
  --gray-700: #8c8c8c;
  --text-color: #ffffff;
  --surface-dark: #ffffff;
  --surface-light: #121212;
}
    }
  @media (prefers-color-scheme: light) {
      :host, :root {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #f2f2f2;
  --gray-200: #f0f0f0;
  --gray-300: #e6e6e6;
  --gray-400: #d6d6d6;
  --gray-500: #cccccc;
  --gray-600: #c4c4c4;
  --gray-700: #b0b0b0;
  --text-color: #000000;
  --surface-dark: #000000;
  --surface-light: #ffffff;
}
    }
  [data-nc-theme~="Dark"] {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #1c1c1c;
  --gray-200: #242424;
  --gray-300: #2c2c2c;
  --gray-400: #383838;
  --gray-500: #4d4d4d;
  --gray-600: #666666;
  --gray-700: #8c8c8c;
  --text-color: #ffffff;
  --surface-dark: #ffffff;
  --surface-light: #121212;
}
[data-nc-theme~="Light"] {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #f2f2f2;
  --gray-200: #f0f0f0;
  --gray-300: #e6e6e6;
  --gray-400: #d6d6d6;
  --gray-500: #cccccc;
  --gray-600: #c4c4c4;
  --gray-700: #b0b0b0;
  --text-color: #000000;
  --surface-dark: #000000;
  --surface-light: #ffffff;
}
[data-nc-theme~="Danish"] {
  --red: #ff1414;
  --green: #ffffff;
  --yellow: #ffffff;
  --gray-100: #6b000d;
  --gray-200: #990013;
  --gray-300: #4a0009;
  --gray-400: #78000f;
  --gray-500: #b80018;
  --gray-600: #ffb3ba;
  --gray-700: #ffffff;
  --text-color: #ffffff;
  --surface-dark: #ffffff;
  --surface-light: #380007;
}
[data-nc-theme~="Default"] {
  --red: #ff1414;
  --green: #84ff38;
  --yellow: #fffb14;
  --gray-100: #f2f2f2;
  --gray-200: #f0f0f0;
  --gray-300: #e6e6e6;
  --gray-400: #d6d6d6;
  --gray-500: #cccccc;
  --gray-600: #c4c4c4;
  --gray-700: #b0b0b0;
  --text-color: #000000;
  --surface-dark: #000000;
  --surface-light: #ffffff;
}
    


@layer base {
  
  body, :host {
    /* Color */
    
    /* Fonts */
    --font-sans: 'Inter Tight',sans-serif;
--font-Instrument Serif: 'Instrument Serif',serif;
--font-Fira Mono: 'Fira Mono',monospace;

    /* Font size */
    
    /* Font weight */
    
    /* Shadows */
    
    /* Border radius */
    
    /* Spacing */
    
    /* Z-index */
    
  }
  @keyframes animation-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes animation-fade-in {
    from {
      opacity:0;
    }
    to {
      opacity:1;
    }
  }
  @keyframes animation-fade-out {
    from {
      opacity:1;
    }
    to {
      opacity:0;
    }
  }
}


    .fAOYNf {
      color:var(--text-color);
      width:100%;
      height:auto;
      display:flex;
      font-size:inherit;
      background:var(--gray-300);
      min-height:100vh;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:160px;
      padding-left:128px;
      padding-right:128px;
      flex-direction:column;
      justify-content:flex-start;
    }

    @media (max-width: 1024px) {

    .fAOYNf {
      padding-left:32px;
      padding-right:32px;
    }
    }

    @media (max-width: 640px) {

    .fAOYNf {
      padding-top:166px;
      padding-left:0px;
      padding-right:0px;
      padding-bottom:48px;
    }
    }

    .bmkjmY {
      color:inherit;
      width:fit-content;
      display:flex;
      font-size:inherit;
      background:var(--gray-400);
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:column;
      padding-bottom:8px;
      justify-content:center;
      border-top-left-radius:32px;
      border-top-right-radius:32px;
    }

    .ffKSzd {
      color:inherit;
      width:100%;
      height:100%;
      display:flex;
      font-size:inherit;
      max-width:960px;
      font-family:inherit;
      font-weight:inherit;
      animation-name:animation-submitIn;
      flex-direction:column;
      animation-delay:0ms;
      animation-duration:2s;
      animation-direction:normal;
      animation-fill-mode:forwards;
      animation-play-state:running;
      animation-iteration-count:1;
      animation-timing-function:cubic-bezier(0.42, 0, 0.58, 1);
    }

    @keyframes animation-submitIn {
        0% {
          opacity: 0;
        }

        0% {
          translate: 96px 0px 0;
        }

        100% {
          translate: 0px 0 0;
        }
    }

    .cwVkaC {
      color:inherit;
      width:100%;
      height:auto;
      display:flex;
      row-gap:8px;
      font-size:inherit;
      column-gap:8px;
      font-family:inherit;
      font-weight:inherit;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:column;
      padding-bottom:8px;
    }

    .dDnVpF {
      color:inherit;
      width:100%;
      display:flex;
      position:relative;
      font-size:inherit;
      background:var(--gray-200);
      overflow-x:hidden;
      overflow-y:hidden;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:128px;
      padding-left:32px;
      border-radius:24px;
      padding-right:32px;
      flex-direction:column;
      padding-bottom:128px;
      justify-content:flex-start;
    }

    @media (max-width: 640px) {

    .dDnVpF {
      padding-top:32px;
      padding-left:20px;
      padding-right:20px;
      padding-bottom:32px;
    }
    }

    .fwZsGW {
      color:inherit;
      display:flex;
      font-size:24px;
      font-family:"Inter Tight";
      font-weight:300;
      padding-top:16px;
      user-select:none;
      padding-left:40px;
      padding-right:40px;
      flex-direction:column;
      padding-bottom:16px;
      border-top-left-radius:24px;
      border-top-right-radius:24px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
    }

    .cEOSyc {
      color:inherit;
      display:flex;
      font-size:inherit;
      align-items:flex-end;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    .fkvjtv {
      color:inherit;
      display:block;
      position:relative;
      font-size:20px;
      max-width:640px;
      margin-top:16px;
      font-weight:inherit;
      line-height:1.6;
      flex-direction:row;
    }

    .LxmHf {
      color:var(--red);
      display:block;
      font-size:14px;
      font-family:"Inter Tight";
      font-weight:inherit;
      padding-left:24px;
      padding-right:24px;
      flex-direction:row;
    }

    .dZzoCf {
      color:inherit;
      width:100%;
      display:flex;
      row-gap:12px;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .OSUoF {
      color:var(--gray-700);
      display:block;
      font-size:16px;
      font-family:"Inter Tight";
      font-weight:300;
      padding-left:24px;
      padding-right:24px;
      flex-direction:row;
    }

    .bCOrlZ {
      color:inherit;
      display:block;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .dRgaep {
      color:inherit;
      cursor:pointer;
      display:flex;
      padding:24px;
      font-size:inherit;
      background:var(--gray-100);
      column-gap:20px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      border-radius:24px;
      flex-direction:row;
    }

    .dRgaep:focus-within {
      outline:2px double var(--green);
      outline-offset:2px;
    }

    .cyTyjk {
      color:inherit;
      display:flex;
      row-gap:16px;
      flex-wrap:wrap;
      font-size:inherit;
      column-gap:24px;
      margin-top:8px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:center;
    }

    .fhKsSb {
      color:inherit;
      width:100%;
      display:flex;
      font-size:inherit;
      align-items:flex-end;
      font-family:inherit;
      font-weight:inherit;
      margin-bottom:-8px;
      flex-direction:row;
      justify-content:flex-start;
    }

    .cPOFdi {
      color:inherit;
      width:100%;
      display:flex;
      padding:96px 32px 80px;
      row-gap:20px;
      position:relative;
      font-size:inherit;
      background:var(--gray-200);
      overflow-x:hidden;
      overflow-y:hidden;
      align-items:flex-start;
      font-family:inherit;
      font-weight:inherit;
      border-radius:24px;
      flex-direction:column;
    }

    @media (max-width: 640px) {

    .cPOFdi {
      padding:32px 20px;
    }
    }

    .dVirFj {
      flex:1;
      color:inherit;
      width:100%;
      display:flex;
      font-size:inherit;
      background:var(--gray-400);
      min-height:auto;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
      padding-bottom:128px;
      border-top-right-radius:32px;
    }

    .cesqlg {
      width:100%;
      max-width:640px;
    }

    .elGTEx {
      color:inherit;
      width:24px;
      height:24px;
      display:flex;
      font-size:inherit;
      background:var(--gray-300);
      font-family:inherit;
      font-weight:inherit;
      margin-left:-12px;
      border-radius:100px;
      margin-bottom:8px;
      flex-direction:column;
    }

    .crTPGM {
      color:inherit;
      width:12px;
      height:12px;
      display:flex;
      font-size:inherit;
      background:var(--gray-400);
      font-family:inherit;
      font-weight:inherit;
      margin-bottom:8px;
      flex-direction:column;
    }

    .easkIy {
      color:inherit;
      display:block;
      font-size:20px;
      max-width:640px;
      font-family:inherit;
      font-weight:inherit;
      line-height:1.6;
      flex-direction:row;
    }

    .cWuFJy {
      color:#ffffff;
      display:flex;
      padding:16px 20px;
      font-size:16px;
      background:var(--red);
      font-family:inherit;
      font-weight:inherit;
      border-radius:12px;
      flex-direction:row;
    }

    .cGGMNI {
      width:24px;
      cursor:pointer;
      height:24px;
      display:inline-block;
      outline:none;
      position:relative;
      font-size:inherit;
      appearance:none;
      background:var(--surface-light);
      flex-shrink:0;
      font-family:inherit;
      font-weight:inherit;
      border-radius:8px;
      flex-direction:row;
      -webkit-appearance:none;
    }

    .cGGMNI:checked {
      color:#000000;
      background:var(--green);
      border-color:var(--green);
    }

    .cGGMNI:checked::after {
      top:5px;
      left:9px;
      color:#000000;
      width:7px;
      height:13px;
      content:"";
      display:block;
      position:absolute;
      transform:rotate(45deg);
      border-right:2px solid #ffffff;
      border-bottom:2px solid #ffffff;
    }

    .cSzpmC {
      color:inherit;
      display:block;
      font-size:18px;
      font-family:"Inter Tight";
      font-weight:inherit;
      line-height:1.5;
      flex-direction:row;
    }

    .eZPlFW {
      color:var(--surface-light);
      width:fit-content;
      border:1px solid var(--surface-dark);
      cursor:pointer;
      display:flex;
      padding:16px 40px;
      font-size:1.25rem;
      background:var(--surface-dark);
      align-items:center;
      font-family:"Inter Tight";
      font-weight:300;
      user-select:none;
      border-radius:12px;
      flex-direction:row;
      justify-content:center;
    }

    .eZPlFW:hover {
      color:#ffffff;
      background:var(--red);
      border-color:var(--red);
    }

    .eZPlFW:focus-visible {
      outline:4px double var(--red);
      outline-offset:2px;
    }

    .eZPlFW:disabled {
      cursor:not-allowed;
      opacity:0.5;
    }

    .eZPlFW:active {
      background:#ff2e2e;
    }

    .cNMyBV {
      color:inherit;
      width:100%;
      display:flex;
      row-gap:32px;
      position:relative;
      font-size:inherit;
      max-width:640px;
      margin-top:48px;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .fuIRdx {
      top:0px;
      left:0px;
      color:inherit;
      width:100%;
      display:flex;
      z-index:2;
      position:fixed;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .dRVDfS {
      color:inherit;
      cursor:pointer;
      display:flex;
      row-gap:8px;
      font-size:inherit;
      column-gap:8px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:12px;
      user-select:none;
      padding-left:12px;
      padding-right:12px;
      flex-direction:row;
      padding-bottom:12px;
      justify-content:flex-start;
      text-decoration-line:none;
      border-top-left-radius:8px;
      border-top-right-radius:8px;
      border-bottom-left-radius:8px;
      border-bottom-right-radius:8px;
      -webkit-tap-highlight-color:transparent;
    }

    .dRVDfS:hover {
      color:#ffffff;
      background:var(--red);
    }

    .dRVDfS:focus-visible {
      outline:4px double var(--red);
      outline-offset:2px;
    }

    @media (min-width: 1080px) {

    .dRVDfS {
      display:none;
    }
    }

    .fzxCQH {
      top:calc(100% + 12px);
      color:var(--surface-dark);
      right:0px;
      display:flex;
      row-gap:4px;
      z-index:2;
      position:absolute;
      font-size:1rem;
      min-width:256px;
      background:var(--surface-light);
      box-shadow:0 12px 32px rgba(0, 0, 0, 0.16);
      font-family:"Inter Tight";
      font-weight:inherit;
      padding-top:8px;
      user-select:none;
      border-color:var(--gray-700);
      border-style:solid;
      border-width:1px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:column;
      padding-bottom:8px;
      border-top-left-radius:12px;
      border-top-right-radius:12px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
    }

    @media (max-width: 640px) {

    .fzxCQH {
      min-width:256px;
    }
    }

    .bxRcOh {
      color:inherit;
      display:flex;
      position:relative;
      font-size:inherit;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    .dfdwBi {
      color:inherit;
      display:none;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .crqvfC {
      color:inherit;
      width:max-content;
      display:flex;
      animation:gddMarquee 30s linear infinite;
      flex-wrap:nowrap;
      font-size:inherit;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      will-change:transform;
      flex-direction:row;
      justify-content:flex-start;
    }

    .coAyYT {
      top:0px;
      left:0px;
      color:inherit;
      right:0px;
      bottom:0px;
      display:flex;
      z-index:1;
      position:fixed;
      font-size:inherit;
      background:transparent;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .eGWfpv {
      color:inherit;
      cursor:pointer;
      display:flex;
      row-gap:8px;
      font-size:inherit;
      column-gap:8px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:12px;
      user-select:none;
      padding-left:12px;
      padding-right:12px;
      flex-direction:row;
      padding-bottom:12px;
      justify-content:flex-start;
      text-decoration-line:none;
      border-top-left-radius:8px;
      border-top-right-radius:8px;
      border-bottom-left-radius:8px;
      border-bottom-right-radius:8px;
      -webkit-tap-highlight-color:transparent;
    }

    .eGWfpv:hover {
      color:#ffffff;
      background:var(--red);
    }

    .eGWfpv:focus-visible {
      outline:4px double var(--red);
      outline-offset:2px;
    }

    .frjvbz {
      color:inherit;
      display:flex;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .cbRmbi {
      color:inherit;
      display:flex;
      row-gap:16px;
      flex-wrap:nowrap;
      font-size:inherit;
      column-gap:16px;
      align-items:center;
      flex-shrink:0;
      font-family:inherit;
      font-weight:inherit;
      white-space:nowrap;
      padding-right:16px;
      flex-direction:row;
      justify-content:flex-start;
    }

    .dmISnA {
      color:var(--surface-dark);
    }

    .bMuxup {
      width:100%;
      background:var(--surface-light);
      align-items:center;
      padding-top:12px;
      padding-left:24px;
      padding-right:24px;
      flex-direction:row;
      padding-bottom:12px;
      justify-content:space-between;
    }

    .dOlPHy {
      color:var(--surface-light);
      row-gap:8px;
      column-gap:8px;
      align-items:center;
      flex-direction:row;
      text-transform:capitalize;
      justify-content:flex-start;
      border-top-left-radius:12px;
      border-top-right-radius:12px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
    }

    .rYiBP {
      color:var(--surface-light);
      display:flex;
      row-gap:4px;
      font-size:inherit;
      column-gap:4px;
      align-items:center;
      font-family:"Inter Tight";
      font-weight:inherit;
      user-select:none;
      flex-direction:row;
      justify-content:flex-start;
    }

    .rYiBP:hover {
      color:var(--red);
      text-decoration-line:underline;
    }

    .rYiBP:focus-visible {
      text-decoration-line:underline;
    }

    .cREaIg {
      color:var(--surface-dark);
      row-gap:8px;
      font-size:32px;
      column-gap:8px;
      align-items:center;
      font-family:"Instrument Serif";
      flex-direction:row;
      text-transform:;
      justify-content:flex-start;
    }

    .QevA-D {
      color:var(--text-color);
    }

    .bZXixh {
      color:var(--surface-dark);
      display:flex;
      outline:0px solid;
      row-gap:4px;
      font-size:inherit;
      column-gap:4px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      user-select:none;
      flex-direction:row;
      justify-content:flex-start;
    }

    .bZXixh:hover {
      color:var(--red);
      text-decoration-line:underline;
    }

    .bZXixh:focus-visible {
      text-decoration-line:underline;
    }

    .cleMVN {
      color:var(--surface-dark);
      width:56px;
      cursor:pointer;
      height:56px;
      display:flex;
      font-size:1rem;
      align-items:center;
      flex-shrink:0;
      font-family:inherit;
      font-weight:inherit;
      padding-top:0px;
      user-select:none;
      aspect-ratio:1 / 1;
      border-color:var(--gray-300);
      border-style:solid;
      border-width:1px;
      padding-left:0px;
      padding-right:0px;
      flex-direction:column;
      padding-bottom:0px;
      justify-content:center;
      border-top-left-radius:12px;
      border-top-right-radius:12px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
      -webkit-tap-highlight-color:transparent;
    }

    @media (max-width: 640px) {

    .cleMVN {
      width:48px;
      height:48px;
    }
    }

    .cleMVN:hover {
      color:#ffffff;
      background:var(--red);
      border-color:var(--red);
      border-style:solid;
      border-width:1px;
    }

    .cleMVN:focus-visible {
      outline:4px double var(--red);
      outline-offset:2px;
    }

    .cleMVN:disabled {
      cursor:not-allowed;
      opacity:0.5;
    }

    .pCZUL {
      width:fit-content;
      cursor:pointer;
      height:auto;
      display:flex;
      font-size:1rem;
      align-items:center;
      padding-top:16px;
      user-select:none;
      border-color:var(--gray-300);
      border-style:solid;
      border-width:1px;
      padding-left:32px;
      padding-right:32px;
      padding-bottom:16px;
      justify-content:center;
      border-top-left-radius:12px;
      border-top-right-radius:12px;
      border-bottom-left-radius:12px;
      border-bottom-right-radius:12px;
      -webkit-tap-highlight-color:transparent;
    }

    @media (max-width: 640px) {

    .pCZUL {
      width:48px;
      height:48px;
      padding-top:0px;
      padding-left:16px;
      padding-right:16px;
      padding-bottom:0px;
    }
    }

    .pCZUL:hover {
      color:#ffffff;
      background:#ff1414;
      border-color:#ff1414;
      border-style:solid;
      border-width:1px;
    }

    .pCZUL:focus-visible {
      outline:4px double #ff1414;
      outline-offset:2px;
    }

    .dcowEO {
      display:none;
    }

    @media (max-width: 640px) {

    .dcowEO {
      display:inline;
    }
    }

    .BAzKE {
      color:var(--text-color);
      display:inline;
    }

    @media (max-width: 640px) {

    .BAzKE {
      display:none;
    }
    }

    @media (max-width: 1080px) {

    .topbar\:PScX16j910aCIvqQjOnbU {
      display:none;
    }
    }

    .cSkHkO {
      color:var(--surface-light);
    }

    .cuONzT {
      color:inherit;
      cursor:pointer;
      display:flex;
      outline:0px solid;
      font-size:inherit;
      font-style:italic;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
      -webkit-tap-highlight-color:transparent;
    }

    @media (max-width: 1080px) {

    .cuONzT {
      display:none;
    }
    }

    .cuONzT:hover {
      color:var(--red);
    }

    .cuONzT:focus-visible {
      text-decoration-line:underline;
    }

    .PciDw {
      color:#000000;
      row-gap:8px;
      background:var(--yellow);
      column-gap:8px;
      align-items:center;
      padding-top:4px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:4px;
      text-transform:capitalize;
      justify-content:flex-start;
    }

    .cMjfGu {
      row-gap:16px;
      column-gap:16px;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
    }

    @media (max-width: 1080px) {

    .cMjfGu {
      display:none;
    }
    }

    .cewdoi {
      color:var(--surface-light);
      display:none;
      overflow:hidden;
      font-size:inherit;
      background:var(--surface-dark);
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:16px;
      flex-direction:row;
      padding-bottom:16px;
      justify-content:flex-start;
    }

    @media (max-width: 1080px) {

    .cewdoi {
      display:flex;
    }
    }

    .cuAfOv {
      color:inherit;
      display:none;
      font-size:inherit;
      font-style:italic;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:column;
      -webkit-tap-highlight-color:transparent;
    }

    @media (max-width: 1080px) {

    .cuAfOv {
      display:flex;
    }
    }

    .cuAfOv:hover {
      color:var(--red);
    }

    .cuAfOv:focus-visible {
      text-decoration-line:underline;
    }

    .epfTqW {
      color:inherit;
      display:flex;
      row-gap:16px;
      font-size:inherit;
      column-gap:16px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    .eXZFTX {
      color:var(--red);
      display:block;
      font-size:14px;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .nOcrD {
      position:absolute;
    }

    .eLJoZZ {
      color:inherit;
      display:flex;
      padding:24px;
      row-gap:24px;
      font-size:inherit;
      background:var(--gray-100);
      font-family:inherit;
      font-weight:inherit;
      border-radius:24px;
      flex-direction:column;
    }

    .zDzQZ {
      color:inherit;
      display:flex;
      row-gap:16px;
      flex-wrap:wrap;
      font-size:inherit;
      column-gap:16px;
      margin-top:16px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .eZhCbU {
      color:inherit;
      width:100%;
      border:1px solid transparent;
      display:flex;
      font-size:var(--font-size);
      background:var(--gray-100);
      align-items:center;
      font-family:"Inter Tight";
      font-weight:inherit;
      padding-top:24px;
      padding-left:24px;
      border-radius:24px;
      padding-right:24px;
      flex-direction:row;
      padding-bottom:24px;
    }

    .eZhCbU.invalid {
      border-color:var(--red);
    }

    .eZhCbU:focus-within {
      outline:2px double var(--green);
      outline-offset:2px;
    }

    .cdaEvX {
      flex:1;
      color:inherit;
      border:none;
      display:flex;
      outline:none;
      font-size:inherit;
      min-width:0px;
      background:transparent;
      font-family:inherit;
      font-weight:300;
      flex-direction:row;
    }

    .cdaEvX::placeholder {
      color:var(--gray-600);
    }

    .cdaEvX::selection {
      color:var(--text-color);
      background:var(--red);
    }

    .SubmitPage\:nameInputField {
      --font-size:20px;
    }

    .dEbJue {
      color:inherit;
      display:block;
      font-size:clamp(1.75rem, 4cqw, 3rem);
      font-style:italic;
      font-family:"Instrument Serif";
      font-weight:400;
      line-height:1.1;
      flex-direction:row;
    }

    .bSzYPJ {
      left:0px;
      color:inherit;
      width:100%;
      bottom:0px;
      display:flex;
      row-gap:32px;
      z-index:1;
      position:fixed;
      font-size:inherit;
      background:var(--surface-light);
      column-gap:32px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-top:12px;
      padding-left:24px;
      padding-right:24px;
      flex-direction:row;
      padding-bottom:12px;
      justify-content:space-between;
    }

    @media (max-width: 1080px) {

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

    .NkjHf {
      color:inherit;
      display:flex;
      row-gap:42px;
      font-size:inherit;
      column-gap:42px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    @media (max-width: 1080px) {

    .NkjHf {
      display:none;
    }
    }

    .efwBZY {
      color:var(--surface-dark);
      display:flex;
      row-gap:8px;
      font-size:inherit;
      column-gap:8px;
      align-items:center;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    .vHOkr {
      color:inherit;
      display:flex;
      row-gap:24px;
      font-size:inherit;
      column-gap:24px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      justify-content:flex-start;
    }

    @media (max-width: 1080px) {

    .vHOkr {
      width:100%;
      align-items:center;
      justify-content:center;
    }
    }

    .ddvpFK {
      color:var(--surface-dark);
      display:flex;
      row-gap:8px;
      font-size:inherit;
      column-gap:8px;
      align-items:center;
      font-weight:inherit;
      flex-direction:row;
      text-transform:capitalize;
      justify-content:flex-start;
    }

    .bVsajq {
      color:inherit;
      width:12px;
      height:12px;
      display:block;
      font-size:inherit;
      transform:translateX(var(--thumbX));
      background:var(--surface-dark);
      transition:transform 200ms ease;
      font-family:inherit;
      font-weight:inherit;
      border-radius:100px;
      flex-direction:row;
    }

    .bottombar\:visitLink {
      width:auto;
      height:40px;
      padding-left:16px;
      padding-right:16px;
      -webkit-tap-highlight-color:transparent;
    }

    .dLPtue {
      color:inherit;
      width:32px;
      cursor:pointer;
      height:16px;
      display:flex;
      font-size:inherit;
      background:var(--gray-400);
      transition:background 200ms ease;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      padding-left:2px;
      padding-right:2px;
      flex-direction:row;
      justify-content:flex-start;
      border-top-left-radius:100px;
      border-top-right-radius:100px;
      border-bottom-left-radius:100px;
      border-bottom-right-radius:100px;
      -webkit-tap-highlight-color:transparent;
    }

    .dLPtue:hover {
      background:var(--gray-500);
    }

    .dmcDKV {
      color:inherit;
      display:inline-block;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      user-select:none;
      flex-direction:column;
    }

    .fzQVql {
      color:inherit;
      width:12px;
      height:12px;
      display:block;
      font-size:inherit;
      transform:translateX(var(--danishThumbX));
      background:var(--surface-dark);
      transition:transform 200ms ease;
      font-family:inherit;
      font-weight:inherit;
      border-radius:100px;
      flex-direction:row;
    }

    .eYdQla {
      color:inherit;
      display:inline-block;
      font-size:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .IklXd {
      color:var(--surface-dark);
      display:inline-block;
      font-size:inherit;
      font-weight:inherit;
      flex-direction:column;
    }

    .bREDVe {
      color:var(--surface-light);
      width:fit-content;
      border:1px solid var(--surface-dark);
      cursor:pointer;
      display:flex;
      padding:16px 32px;
      font-size:1rem;
      background:var(--surface-dark);
      align-items:center;
      font-family:inherit;
      font-weight:300;
      user-select:none;
      border-radius:12px;
      flex-direction:row;
      justify-content:center;
    }

    .bREDVe:hover {
      color:#ffffff;
      background:var(--red);
      border-color:var(--red);
    }

    .bREDVe:focus-visible {
      outline:4px double var(--red);
      outline-offset:2px;
    }

    .bisrxO {
      color:var(--gray-600);
      display:block;
      font-size:14px;
      font-family:"Inter Tight";
      font-weight:inherit;
      line-height:1.5;
      padding-left:24px;
      padding-right:24px;
      flex-direction:row;
    }

    .SubmitPage\:linkedinInputField {
      --font-size:20px;
    }

    .TsHHX {
      color:var(--gray-700);
      border:none;
      cursor:pointer;
      display:flex;
      padding:4px 0px;
      font-size:14px;
      background:transparent;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
      text-decoration:underline;
    }

    .TsHHX:hover {
      color:var(--red);
    }

    .TsHHX:focus-visible {
      outline:2px solid var(--red);
      outline-offset:2px;
    }

    .boLGhf {
      color:inherit;
      display:flex;
      row-gap:16px;
      position:relative;
      flex-wrap:wrap;
      font-size:inherit;
      column-gap:16px;
      align-items:center;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .cOsdmH {
      color:var(--gray-700);
      display:block;
      font-size:14px;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .dwUMTQ {
      color:var(--gray-700);
      width:100%;
      border:1px dashed var(--gray-500);
      display:flex;
      row-gap:12px;
      font-size:16px;
      background:var(--gray-200);
      column-gap:12px;
      align-items:center;
      font-weight:inherit;
      aspect-ratio:16 / 9;
      border-radius:12px;
      flex-direction:column;
      justify-content:center;
    }

    .qypvX {
      color:inherit;
      width:1px;
      height:1px;
      display:inline-block;
      opacity:0;
      overflow:hidden;
      position:absolute;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .dUVLQv {
      color:inherit;
      width:100%;
      display:block;
      font-size:inherit;
      background:var(--gray-300);
      object-fit:cover;
      font-family:inherit;
      font-weight:inherit;
      aspect-ratio:16 / 9;
      border-radius:12px;
      flex-direction:row;
    }

    .enLbNj {
      color:inherit;
      display:inline-block;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
      flex-direction:row;
    }

    .dNUsYr {
      color:inherit;
      display:block;
      position:relative;
      font-size:clamp(1.75rem, 4cqw, 3rem);
      font-style:italic;
      font-family:"Instrument Serif";
      font-weight:400;
      line-height:1.1;
      flex-direction:row;
    }

    .ZXBZA {
      color:inherit;
      width:fit-content;
      border:1px solid var(--gray-500);
      cursor:pointer;
      display:flex;
      padding:12px 24px;
      font-size:1rem;
      align-items:center;
      font-family:"Inter Tight";
      font-weight:inherit;
      user-select:none;
      border-radius:12px;
      flex-direction:row;
      justify-content:center;
    }

    .ZXBZA:hover {
      color:#ffffff;
      background:var(--red);
      border-color:var(--red);
    }