@font-face {
  font-family: Courier New;
  src: url('../fonts/Courier-New-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Courier New;
  src: url('../fonts/Courier-New-Italic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Courier New;
  src: url('../fonts/Courier-New.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Courier New;
  src: url('../fonts/Courier-New-Bold-Italic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --background-color--background-primary: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --link-color--link-primary: var(--base-color-neutral--black);
  --second: #15455e;
  --text-color--text-alternate: var(--base-color-neutral--white);
  --border-color--border-primary: var(--base-color-neutral--black);
  --base-color-neutral--white: #fff;
  --base-color-neutral--black: black;
  --base-color-neutral--neutral-light: #aaa;
  --main: #bc912f;
  --base-color-brand--white: white;
  --black-archive\<deleted\|variable-dccb7db6\>: black;
  --background-color--background-secondary: var(--base-color-neutral--neutral-lightest);
  --grey-bg: #f1f1f1;
  --background-color--background-alternate: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --text-color--text-secondary: var(--base-color-neutral--black);
  --background-color--background-success: var(--base-color-system--success-green-light);
  --text-color--text-success: var(--base-color-system--success-green);
  --background-color--background-error: var(--base-color-system--error-red-light);
  --text-color--text-error: var(--base-color-system--error-red);
  --base-color-system--error-red: #b42318;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-dark: #444;
  --blue: #4f71ec;
  --base-color-neutral--neutral-lighter: #ccc;
  --accessible-components--dark-grey: #9b9b9b;
  --accessible-components--dodger-blue: var(--base-color-brand--white);
  --base-color-system--error-red-light: #fef3f2;
  --base-color-brand--black: black;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #027a48;
  --base-color-system--success-green-light: #ecfdf3;
  --border-color--border-secondary: var(--base-color-neutral--neutral-light);
  --border-color--border-alternate: var(--base-color-neutral--white);
  --link-color--link-secondary: var(--base-color-neutral--neutral-light);
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

ul {
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.hide {
  display: none;
}

.text-style-link {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}

.page-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 0;
  display: flex;
  position: relative;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.container-large:where(.w-variant-38343294-a991-6122-b698-4f5bc35448cf) {
  margin-top: 40px;
}

.container-large.pop-up {
  display: block;
  position: static;
  overflow: scroll;
}

.container-large.private-equity-4 {
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
}

.container-large.mobile {
  width: auto;
}

.container-large.mobile.aiprogram {
  margin-top: 40px;
}

.container-large.mobile-4 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 40px;
  display: block;
}

.container-large.mobile-4.dropinfo2 {
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  margin-top: 0;
  display: flex;
}

.container-large.mobile-4.dropinfolarge {
  max-width: none;
  height: auto;
}

.container-large.mobile-4.step2 {
  display: flex;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.max-width-large {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
}

.max-width-large.ambassador {
  grid-template-columns: 1fr 1fr 1fr;
}

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-tiny {
  margin: .25rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.margin-top, .margin-top.margin-custom1, .margin-top.margin-huge, .margin-top.margin-small, .margin-top.margin-tiny, .margin-top.margin-custom3 {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium {
  flex-flow: column;
  margin: 0;
  display: flex;
}

.margin-top.margin-medium.text-align-right {
  color: var(--second);
  text-transform: uppercase;
  margin-top: 1rem;
  font-family: Courier New, sans-serif;
}

.margin-top.margin-medium.text-align-right.private-equity-10 {
  text-align: left;
  margin-top: 1rem;
}

.margin-top.margin-medium.note {
  flex-flow: row;
}

.margin-top.margin-xxsmall {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  display: grid;
}

.margin-top.margin-xxhuge, .margin-top.margin-custom2, .margin-top.margin-xsmall, .margin-top.margin-large, .margin-top.margin-xxlarge, .margin-top.margin-xlarge, .margin-top.margin-0, .margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-8_75 {
  margin-top: 1rem;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xxlarge {
  margin: 1rem 0;
}

.margin-bottom.margin-medium, .margin-bottom.margin-custom3, .margin-bottom.margin-custom1, .margin-bottom.margin-tiny {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  display: flex;
}

.margin-bottom.margin-small.ambassador {
  justify-content: center;
  align-items: center;
}

.margin-bottom.margin-small.head {
  justify-content: flex-start;
  align-items: center;
}

.margin-bottom.margin-small.center {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
}

.margin-bottom.margin-large, .margin-bottom.margin-0, .margin-bottom.margin-xlarge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-huge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xxsmall {
  text-align: left;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-custom2 {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xsmall {
  margin: 0 0 auto;
}

.margin-bottom.margin-xsmall.mobile-17.ambassador {
  margin-top: .5rem;
}

.margin-left, .margin-left.margin-tiny, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-small, .margin-left.margin-xsmall, .margin-left.margin-large, .margin-left.margin-huge, .margin-left.margin-xlarge, .margin-left.margin-custom3, .margin-left.margin-xxsmall, .margin-left.margin-custom1, .margin-left.margin-custom2, .margin-left.margin-xhuge, .margin-left.margin-xxhuge, .margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right, .margin-right.margin-huge, .margin-right.margin-xsmall, .margin-right.margin-xxhuge, .margin-right.margin-small, .margin-right.margin-medium, .margin-right.margin-xlarge, .margin-right.margin-custom3, .margin-right.margin-custom2, .margin-right.margin-xxsmall, .margin-right.margin-xhuge, .margin-right.margin-custom1, .margin-right.margin-large, .margin-right.margin-0, .margin-right.margin-xxlarge, .margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical, .margin-vertical.margin-medium, .margin-vertical.margin-xlarge, .margin-vertical.margin-xxsmall, .margin-vertical.margin-xxlarge, .margin-vertical.margin-huge, .margin-vertical.margin-0, .margin-vertical.margin-xxhuge, .margin-vertical.margin-tiny, .margin-vertical.margin-xsmall, .margin-vertical.margin-custom1, .margin-vertical.margin-small, .margin-vertical.margin-large, .margin-vertical.margin-xhuge, .margin-vertical.margin-custom2, .margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal, .margin-horizontal.margin-medium, .margin-horizontal.margin-tiny, .margin-horizontal.margin-custom3, .margin-horizontal.margin-0, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-huge, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-custom1, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-large, .margin-horizontal.margin-custom2, .margin-horizontal.margin-small, .margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top, .padding-top.padding-xhuge, .padding-top.padding-xxhuge, .padding-top.padding-0, .padding-top.padding-large, .padding-top.padding-custom2, .padding-top.padding-xlarge, .padding-top.padding-huge, .padding-top.padding-xxsmall, .padding-top.padding-custom3, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-xxlarge, .padding-top.padding-small, .padding-top.padding-xsmall, .padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xxhuge, .padding-bottom.padding-large, .padding-bottom.padding-xhuge, .padding-bottom.padding-custom2, .padding-bottom.padding-xxsmall, .padding-bottom.padding-xxlarge, .padding-bottom.padding-custom3, .padding-bottom.padding-custom1, .padding-bottom.padding-xsmall, .padding-bottom.padding-huge, .padding-bottom.padding-tiny, .padding-bottom.padding-medium, .padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left, .padding-left.padding-xhuge, .padding-left.padding-xlarge, .padding-left.padding-0, .padding-left.padding-small, .padding-left.padding-xsmall, .padding-left.padding-medium, .padding-left.padding-xxhuge, .padding-left.padding-huge, .padding-left.padding-custom1, .padding-left.padding-tiny, .padding-left.padding-xxsmall, .padding-left.padding-custom3, .padding-left.padding-custom2, .padding-left.padding-xxlarge, .padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right, .padding-right.padding-xxhuge, .padding-right.padding-custom2, .padding-right.padding-large, .padding-right.padding-xlarge, .padding-right.padding-tiny, .padding-right.padding-custom3, .padding-right.padding-custom1, .padding-right.padding-xsmall, .padding-right.padding-xxlarge, .padding-right.padding-xxsmall, .padding-right.padding-medium, .padding-right.padding-xhuge, .padding-right.padding-huge, .padding-right.padding-0, .padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical, .padding-vertical.padding-0, .padding-vertical.padding-xxhuge, .padding-vertical.padding-large, .padding-vertical.padding-custom3, .padding-vertical.padding-medium, .padding-vertical.padding-tiny, .padding-vertical.padding-xxlarge, .padding-vertical.padding-custom1, .padding-vertical.padding-xsmall, .padding-vertical.padding-xhuge, .padding-vertical.padding-xlarge, .padding-vertical.padding-custom2, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-0, .padding-horizontal.padding-custom3, .padding-horizontal.padding-huge, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-medium, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-large, .padding-horizontal.padding-xhuge, .padding-horizontal.padding-custom1, .padding-horizontal.padding-tiny, .padding-horizontal.padding-custom2, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-small, .padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.text-weight-medium {
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 500;
}

.text-size-medium {
  color: var(--second);
  text-align: center;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.text-size-medium.hero {
  color: var(--text-color--text-alternate);
  font-style: italic;
  font-weight: 300;
}

.text-size-medium.hero.program {
  text-align: left;
}

.text-size-medium.hero.program.ambassador {
  text-align: center;
  font-weight: 400;
}

.text-size-medium.hero.ebook {
  font-weight: 400;
}

.text-size-medium.text-style-italic.margin-bottom.margin-xxsmall.heading {
  text-align: center;
}

.text-size-medium.white {
  color: var(--text-color--text-alternate);
  text-align: right;
}

.text-size-medium.text-weight-bold {
  text-align: center;
  font-family: Courier New, sans-serif;
  text-decoration: none;
}

.text-size-medium.text-weight-bold.private-equity-11 {
  text-align: center;
}

.text-size-medium.font-main {
  font-family: Courier New, sans-serif;
}

.margin-top-auto {
  margin-top: auto;
}

.text-style-quote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.heading-style-h2 {
  color: var(--text-color--text-primary);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2.mixed {
  color: var(--second);
  margin-top: 2rem;
  font-weight: 400;
}

.heading-style-h2.mixed.program {
  margin-top: 0;
}

.heading-style-h2.white {
  color: var(--text-color--text-alternate);
}

.rl-styleguide_callout-link-wrapper-colors {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  border-radius: .6875rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.rl-styleguide_heading {
  z-index: 4;
  color: var(--text-color--text-primary);
  margin-bottom: 1.5rem;
  padding: .25rem .5rem;
  font-size: 3.5rem;
  font-weight: 700;
}

.heading-style-h6 {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.rl-styleguide_item-row.is-button-row {
  grid-template-columns: 19rem 1fr;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.form_radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.form_radio.is-alternate {
  color: var(--text-color--text-alternate);
}

.heading-style-h5 {
  color: var(--second);
  text-align: left;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-style-h5.ai {
  text-align: center;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.heading-style-h1 {
  color: var(--second);
  text-align: center;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h1.white {
  color: var(--text-color--text-alternate);
}

.heading-style-h1.white.capt {
  text-transform: uppercase;
  margin-top: 2rem;
  font-family: Bai Jamjuree, sans-serif;
}

.heading-style-h1.white.capt.regular {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-weight: 200;
  display: flex;
}

.heading-style-h1.white.capt.regular.center.big {
  margin-bottom: .25rem;
}

.heading-style-h1.white.capt.ambassador {
  text-align: center;
  margin-top: 0;
}

.heading-style-h1.white.capt.center {
  margin-bottom: -1rem;
}

.form_checkbox-icon {
  border: 1px solid var(--border-color--border-primary);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form_checkbox-icon.is-alternate {
  border-color: var(--base-color-neutral--white);
}

.form_checkbox-label {
  margin-bottom: 0;
}

.text-size-tiny {
  font-family: Bai Jamjuree, sans-serif;
  font-size: .75rem;
}

.form_field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.form_field-label.is-alternate {
  color: var(--text-color--text-alternate);
}

.button {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--neutral-light);
  color: var(--base-color-neutral--white);
  text-align: center;
  border-radius: 10px;
  padding: .75rem 1.5rem;
  font-family: Bai Jamjuree, sans-serif;
  text-decoration: none;
  transition: all .1s linear;
  display: block;
}

.button.is-link {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-alternate {
  color: var(--base-color-neutral--white);
  background-color: #0000;
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
}

.button.is-secondary.is-alternate {
  color: var(--base-color-neutral--white);
  background-color: #0000;
}

.button.is-secondary.is-small.blue {
  color: var(--second);
  font-family: Open Sans, sans-serif;
}

.button.is-secondary.is-small.blue.is-component {
  position: absolute;
  inset: auto 0% auto auto;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-small.is-icon-only {
  padding-left: .5rem;
  padding-right: .5rem;
}

.button.is-alternate {
  border-color: var(--base-color-neutral--white);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
}

.button.is-tertiary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-color: #0000;
}

.button.is-icon-only {
  padding-left: .75rem;
  padding-right: .75rem;
}

.button.is-navbar-button {
  margin-left: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button.is-navbar-button.transparent {
  border-color: var(--main);
  color: var(--main);
  background-color: #0000;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 700;
}

.button.is-navbar-button.transparent:hover {
  background-color: var(--main);
  color: var(--base-color-brand--white);
}

.button.is-navbar-button.transparent.is-cart {
  font-family: Bai Jamjuree, sans-serif;
}

.text-weight-normal {
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 400;
}

.heading-style-h4 {
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.form_radio-label {
  margin-bottom: 0;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e;
}

.text-weight-light {
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 300;
}

.rl-styleguide_label {
  color: #1e51f7;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #ebeffa;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_label.is-html-tag {
  color: #bb4198;
  background-color: #f9eff6;
}

.text-size-regular {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1rem;
}

.text-size-regular._1 {
  font-weight: 400;
}

.text-size-regular.margin-top {
  margin-top: 1rem;
}

.text-weight-xbold {
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 800;
}

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

.text-weight-bold {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 400;
}

.icon-height-xlarge {
  height: 6.5rem;
}

.heading-style-h3 {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.2;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.form_input {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
  border-radius: 0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

.form_input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form_input.is-select-input.is-alternate {
  background-image: url('../images/chevron-down-white.svg');
}

.form_input.is-alternate {
  border-color: var(--base-color-neutral--white);
  color: var(--text-color--text-alternate);
  background-color: #0000;
}

.form_input.is-alternate::placeholder {
  color: #fff9;
}

.form_input.is-select-input {
  background-image: url('../images/chevron-down.svg');
  background-position: 99%;
  background-repeat: no-repeat;
  background-size: auto;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
  font-family: Open Sans, sans-serif;
}

.icon-embed-custom1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.button-group {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.button-group.align-center {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.button-group.align-center.header {
  margin-top: 30px;
}

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

.background-color-white {
  background-color: var(--base-color-neutral--white);
}

.text-weight-semibold {
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 600;
}

.text-style-muted {
  opacity: .6;
}

.text-style-nowrap {
  white-space: nowrap;
}

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

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.icon-embed-large.is-arrow {
  height: auto;
}

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d;
}

.text-color-black {
  color: var(--black-archive\<deleted\|variable-dccb7db6\>);
}

.icon-embed-xxsmall {
  color: var(--main);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.icon-embed-xxsmall.embed {
  justify-content: flex-end;
  align-items: center;
  width: 48px;
  height: 48px;
  display: block;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.icon-height-xxsmall {
  height: 1rem;
}

.background-color-black {
  background-color: var(--base-color-neutral--black);
}

.shadow-xsmall {
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_subheading {
  z-index: 3;
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-primary);
  border-radius: .75rem;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.form_radio-icon {
  border: 1px solid var(--border-color--border-primary);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form_radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.form_radio-icon.is-alternate {
  border-color: var(--base-color-neutral--white);
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.form_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.rl-styleguide_callout-link_colors {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  border-radius: .75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.icon-height-custom1 {
  height: 1.25rem;
}

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

.text-size-small {
  text-align: center;
  font-family: Bai Jamjuree, sans-serif;
  font-size: .875rem;
  font-weight: 700;
}

.text-size-small.courier {
  font-family: Courier New, sans-serif;
  font-weight: 700;
}

.text-size-small.text-weight-semibold {
  text-align: left;
}

.text-size-small.link {
  color: var(--text-color--text-alternate);
  text-transform: none;
  text-decoration: underline;
}

.text-size-small.cart {
  font-family: Bai Jamjuree, sans-serif;
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form_field-wrapper {
  position: relative;
}

.icon-height-small {
  height: 2rem;
}

.icon-height-large {
  height: 5rem;
}

.shadow-large {
  box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.text-rich-text {
  text-align: left;
  font-weight: 700;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: Bai Jamjuree, sans-serif;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: Bai Jamjuree, sans-serif;
  font-style: italic;
}

.text-rich-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-family: Bai Jamjuree, sans-serif;
}

.text-rich-text h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: Bai Jamjuree, sans-serif;
}

.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-family: Bai Jamjuree, sans-serif;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-family: Bai Jamjuree, sans-serif;
}

.text-rich-text p {
  margin-bottom: 1rem;
  font-family: Bai Jamjuree, sans-serif;
}

.text-rich-text figcaption {
  border-left: 2px solid var(--text-color--text-primary);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.icon-height-medium {
  height: 3rem;
}

.form_checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.form_checkbox.is-alternate {
  color: var(--text-color--text-alternate);
}

.shadow-small {
  box-shadow: 0 4px 8px -2px #0000001a, 0 2px 4px -2px #0000000f;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

.text-size-large {
  text-align: center;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  position: static;
}

.icon-height-xsmall {
  height: 1.5rem;
}

.pointer-events-auto {
  pointer-events: auto;
}

.rl-styleguide_spacing-all {
  display: none;
}

.pointer-events-none {
  pointer-events: none;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: var(--background-color--background-secondary);
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed var(--border-color--border-primary);
}

.padding-global {
  padding: 40px 5%;
  transition: all .1s linear;
}

.padding-global.padding-section-large {
  background-color: var(--grey-bg);
  margin-top: 60px;
  padding-top: 0;
  display: block;
}

.padding-global.padding-section-large:where(.w-variant-e2cb65eb-7615-44f6-288e-d45b6678e4b4), .padding-global.padding-section-large.private-equity-3 {
  padding-top: 8rem;
  position: static;
}

.padding-global.bg {
  background-color: #fff;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 1rem;
}

.padding-section-large {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-section-large.padding-0-top {
  padding-top: 0;
}

.padding-section-large.program {
  padding-top: 0;
  padding-bottom: 2rem;
}

.spacer-tiny {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1.5rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.spacer-large {
  width: 100%;
  padding-top: 3rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 7rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 10rem;
}

.rl-styleguide_nav {
  z-index: 1000;
  background-color: var(--background-color--background-alternate);
  border-radius: .75rem;
  margin-top: 1rem;
  padding: .5rem;
  position: sticky;
  top: 1rem;
}

.rl-styleguide_nav-link {
  color: var(--link-color--link-alternate);
  border-radius: .25rem;
  padding: .5rem 1rem;
  text-decoration: none;
}

.rl-styleguide_nav-link.w--current {
  background-color: var(--background-color--background-primary);
  color: var(--link-color--link-primary);
}

.rl-styleguide_subheading-small {
  font-size: 1rem;
  font-weight: 400;
}

.rl-styleguide_callout-heading-wrapper {
  font-size: 1.25rem;
  font-weight: 600;
}

.rl-styleguide_background-color-list {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

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

.rl-styleguide_color-spacer {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  display: flex;
}

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

.background-color-tertiary {
  background-color: var(--background-color--background-tertiary);
}

.background-color-alternative {
  background-color: var(--background-color--background-alternate);
}

.text-color-alternate {
  color: var(--text-color--text-alternate);
}

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

.text-color-primary {
  color: var(--text-color--text-primary);
}

.aspect-ratio-square {
  aspect-ratio: 1;
}

.rl-styleguide_ratio-bg {
  z-index: -1;
  background-color: var(--background-color--background-secondary);
  min-width: 3rem;
  height: 100%;
  position: relative;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
}

.form_message-success-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.form_message-success {
  background-color: var(--background-color--background-success);
  color: var(--text-color--text-success);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.rl-styleguide_form-wrapper {
  padding-right: 1.5rem;
}

.tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  background-color: #eee;
  border: 1px #eee;
  justify-content: center;
  align-items: center;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.tag.w--current {
  border-bottom: 2px solid #000;
}

.tag.is-text {
  background-color: #0000;
  border-style: none;
  border-color: #0000;
  padding: 0;
  display: inline-block;
}

.tag.is-text.is-alternate {
  color: #fff;
  background-color: #fff0;
}

.tag.is-alternate {
  color: var(--base-color-neutral--black);
  background-color: #fff;
  border-color: #fff;
}

.tag.list {
  background-color: var(--main);
  color: var(--text-color--text-alternate);
  border-radius: 20px;
  font-family: Courier New, sans-serif;
  font-weight: 700;
}

.heading {
  font-family: Bai Jamjuree, sans-serif;
}

.heading.heading-style-h1 {
  margin-top: 0;
}

.heading.heading-style-h1.testiment {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 700;
}

.heading-2 {
  font-family: Bai Jamjuree, sans-serif;
}

.heading-2.videos {
  color: var(--second);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.heading-3, .heading-4 {
  font-family: Bai Jamjuree, sans-serif;
}

.heading-5 {
  color: var(--second);
  margin-bottom: 2rem;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2rem;
}

.heading-5.video {
  text-align: center;
  font-size: 1.5rem;
}

.heading-6 {
  font-family: Bai Jamjuree, sans-serif;
}

.navbar_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(max-content, 1fr) max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: grid;
}

.navbar_container.cart {
  display: flex;
}

.navbar_container.home {
  margin-top: 20px;
  padding-left: 5%;
  padding-right: 5%;
}

.navbar_menu-button {
  padding: 0;
}

.navbar_menu_wrapper {
  color: var(--second);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-left: -1rem;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  display: flex;
  position: static;
}

.navbar3_logo-link-menu {
  padding-left: 0;
  display: none;
}

.navbar_logo-link, .navbar_logo-link.w--current {
  padding-left: 0;
}

.navbar3_menu-background {
  display: none;
  position: static;
}

.navbar_link {
  color: var(--link-color--link-primary);
  margin-left: 0;
  margin-right: 0;
  padding: .5rem 1rem;
  font-family: Bai Jamjuree, sans-serif;
  transition: all .1s linear;
}

.navbar_link.w--current {
  color: var(--link-color--link-primary);
}

.navbar_section {
  z-index: 100;
  border-bottom: 1px solid var(--border-color--border-primary);
  background-color: var(--background-color--background-primary);
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
}

.navbar_section.ambassador {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0%;
  padding-right: 0%;
}

.navbar_tablet-menu-button {
  border: 1px solid var(--border-color--border-primary);
  color: var(--base-color-neutral--white);
  background-color: #000;
  margin-left: 1rem;
  padding: .5rem 1.5rem;
  display: none;
}

.section_header {
  background-image: linear-gradient(#15455ee6, #15455ee6), url('../images/hero-bg.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.header_card-content-top {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header_card-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.header_card-content.sub_page_hero {
  text-align: left;
  padding-left: 0;
  display: block;
}

.header_component {
  text-align: center;
  border-radius: 20px;
}

.header_component.video {
  margin-top: 30px;
}

.header_component.video.mobile {
  display: block;
}

.header_card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 5px none var(--main);
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  display: flex;
  position: relative;
}

.header_card.sub_page_hero {
  text-align: left;
  justify-content: flex-start;
  align-items: stretch;
}

.header_card.sub_page_hero.private_equity {
  min-height: 14.75rem;
}

.main-button {
  border: 1px solid var(--main);
  background-color: var(--main);
  color: var(--text-color--text-alternate);
  text-align: center;
  text-transform: uppercase;
  border-radius: 10px;
  width: auto;
  min-width: auto;
  margin-top: 0;
  margin-bottom: 8px;
  padding: .75rem 1.5rem;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 700;
  transition: all .1s linear;
  display: block;
}

.main-button:hover {
  color: var(--main);
  background-color: #bc912f00;
}

.main-button.transparent {
  border: 1px solid var(--main);
  color: var(--main);
  background-color: #0000;
}

.main-button.transparent:hover {
  background-color: var(--main);
  color: var(--base-color-brand--white);
}

.main-button.transparent-white {
  border: 1px solid var(--text-color--text-alternate);
  background-color: #0000;
}

.main-button.transparent-white:hover {
  border-color: var(--base-color-brand--white);
  background-color: var(--base-color-neutral--white);
  color: var(--second);
}

.main-button.form {
  padding-left: 3rem;
  padding-right: 3rem;
}

.main-button.form.contact-us.red {
  background-color: var(--text-color--text-error);
  color: var(--grey-bg);
}

.main-button.private-equity-18 {
  margin-top: 0;
}

.main-button.program {
  border-color: var(--text-color--text-error);
  background-color: var(--base-color-system--error-red);
  font-size: 1.5rem;
}

.main-button.program.ambassador {
  justify-content: center;
  align-items: flex-start;
  width: auto;
  display: block;
}

.main-button.off {
  filter: blur(5px);
}

.main-button.b {
  background-color: var(--text-color--text-error);
  border-color: #ffffff82;
  margin-top: 8px;
  padding: .5rem;
  font-size: .7rem;
}

.main-button.main-button2 {
  border-style: solid;
  border-color: var(--text-color--text-error);
  background-color: var(--text-color--text-error);
}

.hero-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.hero-wrapper.sub_page_hero {
  margin-top: 2.156rem;
  margin-bottom: 2.156rem;
}

.hero-logo_wrrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.image {
  position: absolute;
  inset: auto 2% 10% auto;
}

.stats_content {
  grid-column-gap: 5rem;
  grid-row-gap: 1.3rem;
  text-align: center;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.stats_content.program {
  grid-template-columns: 1fr;
}

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

.stats_item {
  border-left: 5px solid var(--main);
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 2rem;
}

.stats_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  width: 100%;
  display: grid;
}

.stats_number {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.sectionseparator {
  background-color: #15455e;
}

.sectionseparator.program {
  background-color: var(--second);
  margin-bottom: 60px;
}

.sectionseparator.programmobile.ambassador {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.button-icon {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-icon.is-link {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-icon.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-style: solid;
  border-color: var(--main);
  background-color: var(--base-color-neutral--neutral-dark);
  color: var(--text-color--text-alternate);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: .75rem 1.5rem;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  transition: all .1s linear;
  display: flex;
}

.button-icon.is-link.is-icon:hover {
  border-color: var(--main);
  color: var(--main);
  background-color: #bc912f00;
}

.button-icon.is-link.is-icon.program {
  background-color: var(--base-color-neutral--neutral-lightest);
  margin-bottom: 30px;
}

.event-item-header_component {
  display: block;
}

.event-item-header6_image {
  aspect-ratio: 1;
  border-style: solid;
  border-width: 5px 0;
  border-color: var(--main);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.event-item-header6_image.first-section-image {
  border-style: none;
  border-width: 1px;
  border-radius: 20px;
  width: 100%;
}

.event-item-header6_image.second-section-image {
  border-style: none;
  border-width: 1px;
  border-radius: 20px;
}

.event-item-header6_image.cart {
  aspect-ratio: 1;
  border-style: none;
  border-width: 1px;
  border-radius: 20px;
  height: 250px;
}

.event-item-header6_image.cart.private-equity-9 {
  height: 250px;
}

.event-item-header_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
  display: grid;
}

.event-item-header_content.cart {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-columns: 1.25fr 1.5fr;
  grid-auto-rows: 0;
  place-items: start stretch;
}

.event-item-header_content.cart.private-equity-7.dekstop {
  grid-column-gap: 5rem;
  grid-template-columns: 1.25fr 1.5fr;
}

.event-item-header_content.ambasada {
  grid-template-columns: .5fr .5fr .5fr;
}

.event-item-header_content.ambasada.ambasaddda {
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr;
}

.event-item-header_content.ambasada.ambasaddda._2 {
  grid-template-columns: 1.5fr;
}

.event-item-header_content.ambasada.ambasaddda.mobilka {
  grid-template-columns: 1fr;
}

.event-item-header_content.ambasada.mobilka {
  place-items: start stretch;
}

.event-item-header_title-wrapper {
  flex-direction: column;
}

.event-item-header_metatag-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: auto;
  display: flex;
}

.event-item-header_metatag-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--second);
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.event-item-header_metatag-icon {
  flex: none;
  align-self: flex-start;
}

.event-item-header_image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section_whom {
  background-color: var(--grey-bg);
}

.section_whom.program.ambassador {
  background-color: var(--base-color-neutral--white);
}

.section_whom.program.ambassador.g {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.inner_heading-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  align-items: end;
  display: flex;
}

.inner_heading-wrapper.ambassador {
  justify-content: center;
  align-items: center;
}

.event-heading_wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--second);
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 0;
  margin-top: 10px;
  margin-bottom: 20px;
  display: block;
}

.list {
  font-family: Bai Jamjuree, sans-serif;
  list-style-type: disc;
}

.list.white.aiprogram {
  font-size: .9rem;
}

.list-item {
  color: var(--second);
}

.list-item.white {
  color: var(--second);
  width: auto;
}

.event-text_wrapper.private-equity-91 {
  margin-top: -38px;
}

.bio_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.bio_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button-group_card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--main);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.bio_image {
  object-fit: cover;
  object-position: 10% 50%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.section_bio {
  margin-top: 40px;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 400;
}

.bio_image-wrapper {
  position: relative;
}

.consultaiont-content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.signature-img {
  position: absolute;
  inset: auto 0% 0% auto;
}

.imageonly {
  border: 5px solid var(--base-color-brand--white);
  border-radius: 20px 20px 0 0;
  width: auto;
  height: 18rem;
  position: relative;
  overflow: hidden;
}

.imageonly.ai {
  height: 10rem;
}

.bm_component {
  flex-direction: column;
  align-items: center;
}

.imageonlypage {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 0%;
  width: auto;
  max-width: none;
  height: 100%;
}

.bm_item-content-top {
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
}

.bm_item-link {
  border: 1px none var(--border-color--border-primary);
  flex-flow: column;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.bm_item {
  width: auto;
}

.bm_item.mobilerotator {
  width: 500px;
  margin-left: 16px;
}

.bm_item.mobilerotator.off {
  filter: grayscale() blur(3px);
}

.card-tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid var(--main);
  background-color: var(--main);
  color: var(--base-color-brand--white);
  text-transform: uppercase;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.card-tag.transparent {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  border: 1px solid var(--main);
  color: var(--main);
  background-color: #0000;
  justify-content: center;
  align-items: center;
}

.card-tag.transparent.aiprogram {
  border-color: var(--blue);
  color: var(--blue);
  margin-top: 0;
  padding-top: .25rem;
  display: flex;
}

.bm_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.bm_item-content {
  background-color: var(--base-color-brand--white);
  color: var(--text-color--text-alternate);
  border-radius: 0 0 20px 20px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  padding: 1.5rem;
  display: flex;
}

.bm_date-wrapper {
  background-color: var(--base-color-neutral--white);
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 7rem;
  padding: .75rem .25rem;
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.bm_date-wrapper.places {
  aspect-ratio: auto;
  opacity: 1;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  object-fit: fill;
  background-clip: border-box;
  border-radius: 0 0 24px;
  justify-content: center;
  align-items: center;
  padding-top: .125rem;
  padding-bottom: .25rem;
  padding-left: .25rem;
  position: absolute;
  inset: 0% auto auto 0%;
  box-shadow: 0 2px 16px 11px #0000000d;
}

.heading-style-date_wrapper {
  font-family: Open Sans, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.section_bm {
  background-color: var(--grey-bg);
}

.bm_meta-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  display: flex;
}

.more_icon {
  width: 18px;
  height: 18px;
  padding-right: 0;
}

.bm-card-heading_wrapper {
  text-transform: uppercase;
}

.button-clear {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 700;
  display: flex;
}

.section_box:where(.w-variant-38343294-a991-6122-b698-4f5bc35448cf), .section_box.mobile-2 {
  margin-top: 0;
}

.section_box.mobile-2.box {
  background-color: var(--grey-bg);
  background-image: url('../images/worlds-top-marketers.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.box_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.button-group-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.box_item {
  border: 5px none var(--main);
  background-color: var(--second);
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: 20px;
  width: 100%;
  height: 26rem;
  padding: 2.5rem 1.25rem 5.5rem;
}

.box_item.mobile-16 {
  -webkit-text-fill-color: inherit;
  background-color: #747474cc;
  background-clip: border-box;
  height: 32rem;
  padding-top: 1rem;
  box-shadow: inset 0 2px 20px 3px #0003;
}

.cta_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.cta_content-left {
  text-transform: uppercase;
  font-style: normal;
}

.section_cta {
  background-image: linear-gradient(#15455e99, #15455e99), url('../images/cta.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.text-cta {
  color: var(--text-color--text-alternate);
  text-align: right;
  font-family: Courier New, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.footer_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: none;
}

.footer_menu-wrapper {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.footer_social-link {
  color: var(--link-color--link-primary);
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer_link-list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  justify-content: flex-start;
  place-items: center start;
  display: flex;
}

.footer_legal-link {
  color: var(--text-color--text-alternate);
  font-family: Open Sans, sans-serif;
  font-size: .875rem;
  text-decoration: underline;
}

.footer_credit-text {
  color: var(--base-color-brand--white);
  font-family: Open Sans, sans-serif;
  font-size: .875rem;
}

.footer_component {
  background-color: var(--second);
}

.footer_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: start;
}

.footer_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: flex;
}

.footer_bottom-wrapper {
  color: var(--text-color--text-alternate);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.line-divider {
  background-color: var(--main);
  width: 100%;
  height: 1px;
  line-height: 1;
}

.footer_details-wrapper {
  color: var(--text-color--text-alternate);
}

.footer_link {
  color: var(--text-color--text-alternate);
  font-family: Open Sans, sans-serif;
}

.text-span {
  padding-right: 10px;
}

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

.schedule_content {
  color: var(--second);
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  position: relative;
}

.schedule_day {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-top: 1px none var(--border-color--border-primary);
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-family: Courier New, sans-serif;
  display: flex;
}

.schedule_item-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr .25fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.schedule_item-content.nobtn {
  grid-template-columns: 1fr;
}

.schedule_item-content.btn {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-columns: 1fr;
}

.schedule_accordion {
  border-bottom: 1px none var(--main);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.max-width-large_schedule {
  width: 100%;
  max-width: 48rem;
}

.schedule_list {
  flex-flow: column;
}

.button-group_schedule {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.schedule_icon-wrapper {
  align-self: center;
  width: 2rem;
  display: flex;
}

.schedule_item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-top: 1px solid var(--main);
  grid-template-rows: auto;
  grid-template-columns: 11.25rem 1fr max-content;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
  overflow: hidden;
}

.schedule_item.btn {
  grid-template-columns: 11.25rem 1fr;
  place-items: start stretch;
}

.schedule_list-wrapper {
  overflow: hidden;
}

.schedule_item-title {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  display: flex;
}

.section_schedule {
  background-color: var(--grey-bg);
}

.text-size_tabs {
  word-break: keep-all;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.5rem;
}

.link {
  color: #1f3a4f;
  text-transform: capitalize;
  text-decoration: underline;
}

.hidden_text {
  opacity: 1;
  display: flex;
  overflow: hidden;
}

.hidden_text._1 {
  transform-origin: 50% 0;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-box {
  color: var(--second);
  text-align: left;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 400;
}

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

.text-box.ai.price {
  font-size: 2rem;
}

.text-box.ai.program-ai {
  margin-top: 15px;
}

.text-size-box {
  font-family: Bai Jamjuree, sans-serif;
}

.text-bio {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
}

.text-whom {
  color: var(--second);
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-top: 10px;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
}

.text-whom.highlight {
  text-decoration: underline;
}

.text-whom.ambassadorblue {
  text-align: center;
  font-size: 1.3rem;
}

.text-whom.ambassadorblue.comsisions {
  text-align: left;
  width: auto;
}

.text-whom.ambassadorblue.e {
  color: var(--grey-bg);
}

.text-whom.ambassadorblue.r {
  padding-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
}

.text-whom.g {
  color: var(--grey-bg);
}

.text-whom._2 {
  font-size: 1rem;
}

.text-whom.bani {
  color: var(--grey-bg);
}

.link-2 {
  color: var(--text-color--text-alternate);
}

.section_businessmasterclass {
  background-color: #fff;
}

.schedule-component_container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.heading-style-h3_uppercase {
  color: var(--second);
  text-transform: uppercase;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
}

.heading-style-h3_uppercase.commisions {
  text-align: left;
}

.heading-style-h3_uppercase.commisions.center {
  text-align: center;
  justify-content: center;
  margin-top: 2rem;
}

.heading-style-h3_uppercase.commisions.center.r {
  margin-bottom: 0;
}

.heading-style-h3_uppercase.commisions.center.download {
  margin-top: 0;
  margin-bottom: .25rem;
  font-size: 12px;
}

.heading-style-h3_uppercase.commisions.center.download.small {
  color: var(--base-color-brand--white);
}

.heading-style-h3_uppercase.commisions.center.download.small.fullpack {
  color: var(--text-color--text-error);
}

.heading-style-h3_uppercase.commisions.center.smoll {
  font-size: 26px;
}

.shedule-item-content-container {
  flex-flow: column;
  padding-right: 160px;
  display: flex;
  position: relative;
}

.pop-up-form-wrapper {
  position: absolute;
  inset: 0% 0% auto;
}

.pop-up-form-wrapper.padding-global {
  z-index: 110;
  background-color: var(--grey-bg);
  flex-flow: column;
  max-height: 100vh;
  display: none;
  position: fixed;
  box-shadow: 0 2px 5px #0003;
}

.pop-up-form-wrapper.padding-global.start-up {
  flex: 0 auto;
  display: block;
}

.pop-up-form-wrapper.padding-global.start-up.thankyoupopup {
  display: none;
  position: fixed;
}

.pop-up-form-wrapper.padding-global.private-equity {
  display: block;
}

.pop-up-form-wrapper.padding-global.contact-us {
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.pop-up-form-wrapper.padding-global.program {
  display: none;
}

.form-component {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.poop-up-dark-bg {
  z-index: 101;
  background-color: #00000030;
  position: fixed;
  inset: 0%;
}

.button-2 {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.form_field-2col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-modal4_content-wrapper {
  background-color: var(--base-color-neutral--white);
  width: 100%;
  max-width: 40rem;
  height: 100vh;
  padding: 5rem 4rem;
  position: absolute;
  overflow: scroll;
}

.max-width-large-2 {
  width: 100%;
  max-width: 48rem;
}

.contact-modal4_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form_radio-2col {
  grid-column-gap: 1.5rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-group-3 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group-3.is-center {
  justify-content: center;
}

.contact-modal4_form-block {
  flex-direction: column;
  align-items: stretch;
}

.heading-style-h2-2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.form_checkbox-icon-2 {
  border: 1px solid var(--base-color-neutral--black);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-icon-2.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon-2.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.error-text {
  color: #e23939;
}

.contact-modal4_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.contact-modal4_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.success-text {
  font-weight: 600;
}

.padding-global-2 {
  padding-left: 5%;
  padding-right: 5%;
}

.section_contact-modal4 {
  position: relative;
}

.contact-modal4_close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.form_radio-icon-2 {
  border: 1px solid var(--base-color-neutral--black);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form_radio-icon-2.w--redirected-checked {
  background-color: var(--base-color-neutral--white);
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form_radio-icon-2.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.form-field-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  width: 100%;
  display: flex;
}

.form-field-item {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.form-block {
  width: 100%;
  max-width: 768px;
  margin-top: 2rem;
}

.h3-form {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
}

.text-form {
  color: var(--second);
  text-align: center;
  max-width: 650px;
  margin-top: 5px;
  font-family: Bai Jamjuree, sans-serif;
}

.text-form.thankpopuo {
  max-width: none;
  font-size: 2rem;
}

.form-label {
  color: var(--second);
  text-transform: capitalize;
  font-family: Bai Jamjuree, sans-serif;
  font-size: .9rem;
  font-weight: 600;
}

.form-text-field {
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  color: var(--second);
  margin-bottom: 0;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 600;
}

.form-text-field.contact-us {
  height: 120px;
}

.pop-up-close-container {
  background-color: var(--second);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: absolute;
  inset: 1rem 1rem auto auto;
}

.pop-up-close-liine {
  background-color: var(--main);
  width: 30px;
  height: 2px;
  position: absolute;
}

.pop-up-close-liine._1 {
  transform: rotate(45deg);
}

.pop-up-close-liine._2 {
  transform: rotate(-45deg);
}

.form-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.button-3 {
  display: none;
}

.success-messege-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pop-up-form-type {
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  color: var(--second);
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.navbar_menu-slot {
  color: var(--second);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-left: -1rem;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  display: flex;
  position: static;
}

.schedule_list-wrapper--not-foldable {
  overflow: hidden;
}

.header_date_wrapper {
  align-items: center;
  padding-right: 8px;
  display: flex;
}

.subheader_wrapper {
  display: flex;
}

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

.italic-text {
  padding-left: 2px;
}

.schedule_day_dropdown {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-top: 1px solid var(--main);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-family: Courier New, sans-serif;
  display: flex;
}

.section_thankyou {
  background-color: var(--grey-bg);
}

.section_content28 {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  margin-top: 40px;
}

.content-28-instructions-delete {
  text-align: left;
  background-color: #fff;
  padding: 2rem;
  display: block;
}

.text-size-medium-3 {
  color: var(--second);
  font-family: Open Sans, sans-serif;
  font-size: 1.125rem;
}

.content28_instructions-list {
  padding-left: 1.25rem;
}

.content28_instructions-list-item {
  padding-left: .5rem;
}

.rl-styleguide_label_green {
  color: var(--\<unknown\|relume-variable-neutral\>) @swatch_1766b841;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #038547;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.stylesystem-class-label {
  cursor: context-menu;
  background-color: #83747426;
  border-radius: 4px;
  padding-left: .5rem;
  padding-right: .5rem;
  display: inline-block;
}

.stylesystem-class-label.is-animation {
  background-image: url('../images/interaction-icon.svg');
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 2rem;
}

.padding-global-3 {
  padding-left: 5%;
  padding-right: 5%;
  transition: all .1s linear;
}

.content28_component {
  grid-column-gap: 4rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 20rem;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: block;
}

.content28_sidebar {
  flex-direction: column;
  width: 100%;
  margin-left: 12rem;
  display: flex;
  position: sticky;
  top: 6rem;
}

.content28_sidebar-heading {
  font-size: 1.5rem;
}

.content28_accordion-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: none;
}

.content28_link-content {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.content28_link-wrapper {
  overflow: hidden;
}

.content28_link-wrapper.is-h3, .content28_link-wrapper.is-h4, .content28_link-wrapper.is-h5, .content28_link-wrapper.is-h6 {
  padding-left: 1rem;
}

.content28_link {
  width: 100%;
  padding: .75rem 1rem;
  text-decoration: none;
}

.content28_link.w--current {
  background-color: #fff;
  font-weight: 600;
}

.content28_link.current {
  border-style: solid;
  border-color: var(--border-color--border-primary);
  background-color: #fff;
  font-weight: 600;
}

.content28_link.current.w--current {
  background-color: #fff;
  border-style: none;
  font-weight: 600;
}

.content28_link.is-h3.w--current, .content28_link.is-h4.w--current, .content28_link.is-h5, .content28_link.is-h6.w--current {
  background-color: #0000;
}

.content28_h-trigger {
  display: none;
}

.available-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.available-wrapper.contact-us {
  justify-content: center;
}

.text-form-available {
  color: var(--second);
  text-align: center;
  max-width: 450px;
  margin-top: 5px;
  font-family: Bai Jamjuree, sans-serif;
}

.red-bold {
  color: var(--base-color-system--error-red);
  font-size: 1.5rem;
  font-weight: 700;
}

.section_cart {
  background-color: var(--grey-bg);
}

.cart-header_component {
  display: block;
}

.cart-header_image-wrapper {
  width: 100%;
}

.cart-header_image-wrapper.picture.private-equity-8 {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.section_event-item-header6 {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
}

.padding-global-4 {
  padding-left: 5%;
  padding-right: 5%;
  transition: all .1s linear;
}

.event-item-header6_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.event-item-header6_title-wrapper {
  flex-direction: column;
}

.breadcrumb_component {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  align-items: center;
  width: 100%;
  display: flex;
}

.breadcrumb-link {
  text-decoration: none;
}

.breadcrumb-link.w--current {
  font-weight: 600;
}

.breadcrumb-divider {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.event-item-header6_metatag-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: auto;
  display: flex;
}

.event-item-header6_metatag-list.cart {
  color: var(--second);
}

.event-item-header6_metatag-list.cart.text-weight-medium {
  font-family: Courier New, sans-serif;
  font-weight: 700;
}

.event-item-header6_metatag-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.event-item-header6_metatag-icon {
  flex: none;
  align-self: flex-start;
}

.button-group-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-4 {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  padding: .75rem 1.5rem;
  font-family: Courier New, sans-serif;
  text-decoration: none;
  transition: all .1s linear;
  display: block;
}

.button-4.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
}

.event-item-header6_image-wrapper {
  border-radius: 0;
  width: 100%;
  overflow: hidden;
}

.padding-global-5 {
  padding-left: 5%;
  padding-right: 5%;
  transition: all .1s linear;
}

.button-group-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.cart-capital-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--second);
  border: 1px solid #15455e33;
  justify-content: flex-start;
  align-items: center;
  padding: 24px 48px;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  display: flex;
}

.code-embed {
  width: 20px;
  height: 23px;
}

.cart-button-container {
  flex-flow: column;
  margin-top: 2rem;
  display: flex;
}

.cart-button-container.private-equity-17 {
  margin-top: .5rem;
}

.text-block {
  padding-left: 0;
  padding-right: 0;
}

.italic-text-2, .italic-text-2-copy, .italic-text-3 {
  font-family: Courier New, sans-serif;
  font-weight: 700;
  text-decoration: line-through;
}

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

.paragraph {
  justify-content: center;
  align-items: flex-start;
  padding-left: 0;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  text-decoration: line-through;
  display: flex;
}

.rich-text-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.rich-text-block.private-equity-12 {
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}

.paragraph-2 {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.range-slider {
  pointer-events: auto;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.fs_accordion-1_icon {
  margin-right: 0;
  font-size: 1.125rem;
  position: relative;
}

.fs_accordion-1_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  background-color: #f5f5f5;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

.fs_accordion-1_header:focus-visible, .fs_accordion-1_header[data-wf-focus-visible] {
  outline-color: var(--accessible-components--dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_accordion-1_paragraph {
  margin-bottom: 0;
}

.fs_accordion-1_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs_accordion-1_content {
  overflow: hidden;
}

.fs_accordion-1_body {
  background-color: #fff;
  padding: 1rem 1.5rem;
}

.fs_accordion-1_label {
  font-size: 1.25rem;
  font-weight: 500;
}

.fs_accordion-1_embed {
  margin-bottom: 0;
}

.fs_accordion-1_message {
  color: var(--accessible-components--dark-grey);
}

.form-block-2 {
  border-top: 24px #000;
  margin-top: 20px;
  display: flex;
}

.fs_rangeslider-2_fill {
  background-color: #1378d1;
  width: 20%;
  height: 100%;
  position: absolute;
}

.fs_rangeslider-2_handle-right {
  z-index: 1;
  -webkit-text-fill-color: inherit;
  cursor: grab;
  background-color: #1378d1;
  background-clip: border-box;
  border-radius: 999rem;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.fs_rangeslider-2_handle-right:focus-visible, .fs_rangeslider-2_handle-right[data-wf-focus-visible] {
  outline-color: var(--accessible-components--dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_rangeslider-2_input {
  display: none;
}

.fs_rangeslider-2_track {
  background-color: #f5f5f5;
  height: .25rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.fs_rangeslider-2_wrapper {
  align-items: center;
  width: 100%;
  padding: 1rem;
  display: block;
  position: relative;
}

.fs_rangeslider-2_left {
  z-index: 1;
  cursor: grab;
  background-color: #1378d1;
  border-radius: 999rem;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.fs_rangeslider-2_left:focus-visible, .fs_rangeslider-2_left[data-wf-focus-visible] {
  outline-color: var(--accessible-components--dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_rangeslider-2_handle-text {
  text-align: center;
  font-size: 1.25rem;
  position: relative;
}

.fs_rangeslider-2_values {
  color: var(--second);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-left: 0;
  padding-right: 0;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  display: flex;
  position: relative;
}

.fs_rangeslider-2_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs_rangeslider-2_message {
  color: var(--accessible-components--dark-grey);
}

.fs_rangeslider-1_handle-text {
  color: var(--second);
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: -2.25rem;
  margin-left: auto;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  display: block;
  position: absolute;
  inset: auto auto 0% 0%;
}

.fs_rangeslider-1_handle {
  z-index: 1;
  cursor: grab;
  background-color: #bc912f;
  border-radius: 999rem;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fs_rangeslider-1_handle:focus-visible, .fs_rangeslider-1_handle[data-wf-focus-visible] {
  background-color: var(--accessible-components--dodger-blue);
  outline-color: var(--accessible-components--dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_rangeslider-1_fill {
  background-color: #bc912f;
  width: 20%;
  height: 100%;
  position: absolute;
}

.fs_rangeslider-1_input {
  display: none;
}

.fs_rangeslider-1_wrapper {
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
  padding: 1rem;
  display: block;
  position: relative;
}

.fs_rangeslider-1_track {
  background-color: #f5f5f5;
  width: 100%;
  height: .25rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.fs_rangeslider-1_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: end;
  display: grid;
}

.fs_rangeslider-1_embed {
  margin-bottom: 0;
}

.fs_rangeslider-1_message {
  color: var(--accessible-components--dark-grey);
  text-align: right;
}

.fs_rangeslider-1_handle-text-2 {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: -2.25rem;
  margin-left: -.4rem;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.fs_rangeslider-1_component-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs_rangeslider-1_handle-text-3 {
  color: var(--second);
  text-align: center;
  margin-bottom: -2.25rem;
  margin-left: -.4rem;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  position: absolute;
  inset: auto auto 0% 0%;
}

.fs_rangeslider-1_component-3 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs_rangeslider-1_handle-text-4 {
  z-index: auto;
  color: var(--second);
  text-align: center;
  margin-bottom: -2.25rem;
  margin-left: -.4rem;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  position: absolute;
  inset: auto auto 0% 0%;
}

.paragraph-3 {
  text-align: center;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 400;
}

.paragraph-3.private-equity-16 {
  text-align: center;
}

.italic-text-5 {
  font-family: Bai Jamjuree, sans-serif;
}

.italic-text-5.ebook {
  font-size: 2rem;
}

.padding-global-6 {
  padding-left: 5%;
  padding-right: 5%;
  transition: all .1s linear;
}

.footer_details-wrapper-2, .footer_link-2 {
  color: #fff;
  font-family: Bai Jamjuree, sans-serif;
}

.line-divider-2 {
  background-color: #bc912f;
  width: 100%;
  height: 1px;
  line-height: 1;
}

.footer_legal-link-2 {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: .875rem;
  text-decoration: underline;
}

.text-size-small-2 {
  font-family: Bai Jamjuree, sans-serif;
  font-size: .875rem;
}

.text-size-small-2.link {
  color: #fff;
  text-transform: none;
  text-decoration: underline;
}

.footer_social-link-2 {
  color: #000;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer_component-2 {
  background-color: #15455e;
}

.footer_bottom-wrapper-2 {
  color: #fff;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer_credit-text-2 {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: .875rem;
}

.container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.text-span-2 {
  text-decoration: line-through;
}

.text-span-3 {
  font-weight: 400;
  text-decoration: line-through;
}

.text-span-4, .text-span-5 {
  text-decoration: line-through;
}

.fs_rangeslider-1_handle-text-5 {
  text-align: center;
  margin-bottom: -2.25rem;
  margin-left: -.4rem;
  font-family: Courier New, sans-serif;
  font-weight: 700;
  position: absolute;
  inset: auto auto 0% 0%;
}

.fs_rangeslider-1_handle-2 {
  z-index: 1;
  cursor: grab;
  background-color: #bc912f;
  border-radius: 999rem;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fs_rangeslider-1_handle-2:focus-visible, .fs_rangeslider-1_handle-2[data-wf-focus-visible] {
  background-color: var(--accessible-components--dodger-blue);
  outline-color: var(--accessible-components--dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_rangeslider-1_fill-2 {
  background-color: #bc912f;
  width: 20%;
  height: 100%;
  position: absolute;
}

.fs_rangeslider-1_input-2 {
  display: none;
}

.fs_rangeslider-1_wrapper-2 {
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
  padding: 1rem;
  display: block;
  position: relative;
}

.fs_rangeslider-1_track-2 {
  background-color: #f5f5f5;
  width: 100%;
  height: .25rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.fs_rangeslider-1_component-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs_rangeslider-1_embed-2 {
  margin-bottom: 0;
}

.fs_rangeslider-1_message-2 {
  color: var(--accessible-components--dark-grey);
  text-align: right;
}

.field-label {
  color: var(--second);
  text-align: right;
  font-family: Courier New, sans-serif;
  font-weight: 700;
}

.form-2, .submit-button {
  margin-top: 20px;
}

.fs_rangeslider-1_handle-text-6 {
  text-align: center;
  margin-bottom: -2.25rem;
  margin-left: -.4rem;
  position: absolute;
  inset: auto auto 0% 0%;
}

.fs_rangeslider-1_handle-3 {
  z-index: 1;
  cursor: grab;
  background-color: #1378d1;
  border-radius: 999rem;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fs_rangeslider-1_handle-3:focus-visible, .fs_rangeslider-1_handle-3[data-wf-focus-visible] {
  background-color: var(--accessible-components--dodger-blue);
  outline-color: var(--accessible-components--dark-grey);
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
}

.fs_rangeslider-1_fill-3 {
  background-color: #1378d1;
  width: 20%;
  height: 100%;
  position: absolute;
}

.fs_rangeslider-1_input-3 {
  display: none;
}

.fs_rangeslider-1_wrapper-3 {
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
  padding: 1rem;
  display: block;
  position: relative;
}

.fs_rangeslider-1_track-3 {
  background-color: #f5f5f5;
  width: 100%;
  height: .25rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.fs_rangeslider-1_component-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs_rangeslider-1_embed-3 {
  margin-bottom: 0;
}

.fs_rangeslider-1_message-3 {
  color: var(--accessible-components--dark-grey);
}

.paragraph-4 {
  opacity: .9;
  color: #000;
  text-align: center;
  margin-bottom: 0;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.icon {
  color: #000;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  overflow: hidden;
}

.text_font-22 {
  color: var(--main);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.range-slider-2 {
  width: 100%;
}

.tabs_price-card {
  background-color: #fff;
  border: 1px solid #f2f3ff;
  border-radius: 20px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 50px;
  display: flex;
  position: relative;
  box-shadow: 0 20px 30px -10px #1d01501a;
}

.tabs_price-card.hidden {
  display: none;
}

.grid_2-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-content: start;
  min-height: 150px;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
}

.ms-range-slider {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.ms-range-slider.private-equity-24 {
  justify-content: center;
  align-items: center;
  width: auto;
}

.ms-range-embed {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
  flex: 0 auto;
  order: 0;
  width: 206px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.pay_by_insalmets {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.spacer-40 {
  width: 100%;
  height: 40px;
}

.spacer-20 {
  width: 100%;
  height: 20px;
}

.price_wrap-top {
  justify-content: space-between;
  align-items: center;
  min-height: auto;
  margin-top: 20px;
  font-family: Bai Jamjuree, sans-serif;
  display: flex;
}

.h3 {
  color: #38455e;
  text-align: left;
  mix-blend-mode: normal;
  margin-top: -32px;
  margin-bottom: 0;
  padding-top: 0;
  font-family: Courier New, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.button-5 {
  color: #fff;
  background-color: #bc912f;
  background-image: linear-gradient(#00000080, #00000080);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 15px 35px;
  font-size: 15px;
  font-weight: 500;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 10px 20px -3px #1d01501a;
}

.button-5:hover {
  background-color: #000;
  box-shadow: 0 10px 20px -3px #1d015070;
}

.container {
  width: 100%;
  max-width: 800px;
  margin-top: 25px;
}

.feature-label {
  font-size: 14px;
  font-weight: 600;
}

.feature-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  align-items: center;
  display: flex;
}

.ms-range-slider-value {
  color: #fff;
  text-align: center;
  background-color: #bc912f;
  border-color: #121331;
  border-radius: 4px;
  flex: none;
  width: 60px;
  margin-left: 12px;
  padding: 5px 10px;
  line-height: 22px;
  display: inline-block;
  position: relative;
}

.ms-range-slider-value.private-equity-26 {
  padding-left: 10px;
}

.bold-text {
  text-align: right;
  font-family: Courier New, sans-serif;
}

.div-block {
  display: block;
}

.paragraph-5 {
  margin-top: 20px;
  font-family: Bai Jamjuree, sans-serif;
}

.text-span-6, .text-span-7, .text-span-8, .text-span-9, .text-span-10 {
  text-decoration: line-through;
}

.text-span-11, .text-span-12 {
  color: var(--main);
  font-weight: 700;
}

.container-2 {
  max-width: 240px;
}

.text-span-13 {
  font-size: 1rem;
}

.text-span-14 {
  color: var(--main);
}

.text-span-15 {
  color: var(--main);
  font-weight: 600;
}

.text-span-16 {
  color: var(--main);
  font-weight: 700;
}

.text-span-17 {
  color: var(--text-color--text-error);
  font-weight: 700;
}

.text-span-18 {
  color: var(--main);
  font-weight: 700;
}

.slider {
  flex: 0 auto;
  order: 0;
  align-self: auto;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.icon-2 {
  color: var(--grey-bg);
  background-color: #bc912f;
  border-radius: 10px;
  font-size: 3rem;
  font-weight: 900;
  box-shadow: 0 2px 5px #0003;
}

.icon-3 {
  background-color: var(--main);
  color: var(--grey-bg);
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  border: 3px #bc912f;
  border-radius: 10px;
  font-size: 3rem;
  font-weight: 200;
  box-shadow: 0 2px 5px #0003;
}

.mask {
  background-color: #f1f1f1;
  width: auto;
  height: 900px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bold-text-2, .bold-text-3:where(.w-variant-e2cb65eb-7615-44f6-288e-d45b6678e4b4), .bold-text-3.private-equity-15 {
  color: var(--main);
}

.text-span-20 {
  font-family: Courier New, sans-serif;
  font-weight: 700;
  text-decoration: line-through;
}

.heading-7 {
  text-align: center;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2rem;
}

.heading-8 {
  font-family: Bai Jamjuree, sans-serif;
}

.text-span-22, .text-span-23 {
  color: var(--main);
  font-weight: 700;
}

.paragraph-6, .link-3, .block-quote, .paragraph-7, .paragraph-8, .paragraph-9, .paragraph-10, .paragraph-11, .paragraph-12, .paragraph-13, .list-item-2, .list-item-3, .list-item-4, .list-item-5, .list-item-6, .list-item-7, .list-item-8, .text-block-2 {
  font-family: Bai Jamjuree, sans-serif;
}

.heading-9, .heading-10, .heading-11 {
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2rem;
}

.heading-11.mobile-10.ambassador {
  font-size: 1.2rem;
}

.paragraph-14 {
  font-family: Bai Jamjuree, sans-serif;
}

.paragraph-14.mobile-11 {
  margin-top: 0;
}

.paragraph-14.mobile-11.texttt {
  margin-top: 20px;
}

.text-block-3 {
  color: var(--main);
  border-radius: 10px;
  font-family: Bai Jamjuree, sans-serif;
}

.paragraph-15 {
  color: var(--base-color-neutral--white);
  font-family: Bai Jamjuree, sans-serif;
}

.paragraph-15.programmobile {
  text-align: left;
}

.paragraph-15.programmobile.ambassador {
  color: var(--second);
  text-align: center;
}

.asdas {
  color: var(--base-color-neutral--white);
  text-align: left;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2rem;
}

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

.asdas.nowa {
  margin-top: 0;
}

.asdas.nowa.ambassador {
  color: var(--second);
  text-align: center;
}

.heading-13 {
  color: var(--base-color-brand--white);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.25rem;
}

.heading-13.ambassador {
  color: var(--main);
  text-align: left;
}

.heading-14 {
  color: var(--base-color-brand--white);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.25rem;
}

.heading-14.ambassador {
  color: var(--main);
  text-align: left;
}

.heading-15 {
  color: var(--base-color-brand--white);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.25rem;
}

.heading-15.ambassador {
  color: var(--main);
  text-align: left;
}

.text-block-4, .text-block-5, .text-block-6 {
  color: var(--main);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.text-block-7 {
  color: var(--main);
  font-family: Bai Jamjuree, sans-serif;
}

.link-4, .bold-text-4, .list-item-9, .list-item-10, .list-item-11, .list-item-12, .list-item-13, .list-item-14, .list-item-15, .list-item-16, .list-item-17, .list-item-18, .list-item-19, .list-item-20, .list-item-21, .list-item-22, .paragraph-16, .rich-text-block-2, .text-block-8 {
  font-family: Bai Jamjuree, sans-serif;
}

.bold-text-5 {
  color: var(--main);
}

.text-span-24 {
  font-weight: 400;
}

.text-span-25 {
  text-decoration: line-through;
}

.bold-text-6 {
  color: var(--main);
}

.bold-text-6.ai.price {
  color: var(--blue);
  font-size: 2rem;
}

.text-block-9 {
  color: var(--main);
}

.secondary-button {
  border: 1px solid var(--second);
  color: var(--base-color-brand--white);
  text-align: center;
  background-color: #15455e;
  border-radius: 10px;
  width: auto;
  min-width: auto;
  max-width: 100%;
  margin-top: 10px;
  padding: .75rem 1.5rem;
  font-family: Bai Jamjuree, sans-serif;
  display: block;
}

.secondary-button.program {
  background-color: var(--main);
  color: var(--grey-bg);
  width: 160px;
  margin-bottom: 40px;
}

.secondary-button.b {
  padding: .5rem;
  font-size: .7rem;
}

.secondary-button-mobile.dekstop {
  background-color: var(--main);
  border-radius: 10px;
  font-family: Bai Jamjuree, sans-serif;
}

.slider-2 {
  background-color: var(--grey-bg);
  width: auto;
  height: auto;
  margin-bottom: 40px;
}

.slide-1 {
  width: 400px;
  margin-left: 0;
}

.slide-3 {
  width: auto;
  margin-left: 0;
}

.slide-4 {
  width: 400px;
  margin-left: 0;
}

.left-arrow {
  margin-left: -60px;
  padding-left: 0;
}

.right-arrow {
  margin-right: -60px;
}

.mask-2.mobileslider {
  width: auto;
  height: auto;
}

.field-label-2 {
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 600;
}

.select-field-2 {
  border: 1px solid var(--base-color-neutral--neutral-light);
  background-color: var(--base-color-brand--white);
  color: var(--second);
  border-radius: 7px;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 600;
}

.slide-2 {
  width: 400px;
  margin-left: 16px;
}

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

.div-block-2 {
  background-color: #e4e4e4;
  width: auto;
  height: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.slide-5, .slide-6 {
  width: 400px;
  margin-left: 16px;
}

.slide-7 {
  width: 400px;
  margin-left: 0;
  margin-right: 0;
}

.slide-8 {
  width: 400px;
}

.slide-9 {
  width: 400px;
  margin-left: 16px;
  margin-right: 16px;
}

.text-span-26 {
  color: var(--main);
  text-decoration: underline;
}

.programtitle {
  color: var(--base-color-brand--white);
  margin-top: 40px;
  margin-bottom: 1rem;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 2rem;
}

.navbar_section-2 {
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
}

.slide-10 {
  overflow: visible;
}

.text-box-2 {
  color: #15455e;
  margin-bottom: 20px;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 400;
}

.text-span-27 {
  text-decoration: line-through;
}

.bold-text-7 {
  color: #bc912f;
}

.button-group_card-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #bc912f;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.icon-embed-xxsmall-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.text-block-11 {
  color: #bc912f;
  font-family: Bai Jamjuree, sans-serif;
}

.image-2 {
  width: 150px;
  display: block;
}

.ambassador {
  color: var(--base-color-neutral--white);
  text-align: center;
  font-family: Bai Jamjuree, sans-serif;
}

.cell, .cell-2 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-3 {
  border: 1px none var(--main);
  background-color: var(--main);
  color: var(--second);
  width: 300px;
  height: 3px;
}

.div-block-3.icon {
  background-color: var(--second);
  color: var(--text-color--text-error);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
}

.quick-stack {
  background-color: var(--base-color-neutral--neutral-lightest);
  border-radius: 20px;
}

.quick-stack.reason {
  padding-left: 0;
  padding-right: 0;
}

.quick-stack._2 {
  -webkit-text-fill-color: inherit;
  background-image: url('../images/wwang_040522_102.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  background-clip: border-box;
  margin-top: 20px;
}

.quick-stack.w {
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  background-color: var(--base-color-brand--white);
  box-shadow: inset 0 2px 20px 5px #00000008;
}

.quick-stack.w.mobilka {
  background-color: #b42318;
}

.image-3 {
  border-radius: 20px;
  width: 100px;
}

.slider-3 {
  width: auto;
  height: auto;
  margin-top: 40px;
  margin-bottom: 0;
  padding-bottom: 60px;
  display: block;
}

.div-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.heading-16, .heading-17 {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
}

.heading-17.slideraffiliate {
  text-align: center;
}

.paragraph-17 {
  color: var(--second);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 1rem;
  padding-bottom: 0;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 14px;
}

.heading-18 {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
}

.dropdown-toggle-2 {
  color: var(--second);
  vertical-align: baseline;
  background-color: #fff;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  display: block;
  box-shadow: 0 2px 13px -2px #0003;
}

.dropdown-link {
  width: 300px;
  height: auto;
  display: block;
}

.dropdown-list {
  display: none;
}

.dropdown {
  display: block;
}

.dropinfo {
  z-index: auto;
  color: var(--second);
  object-fit: fill;
  background-color: #fff;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 16px;
  display: block;
  position: fixed;
  inset: 40% 0% auto;
  overflow: visible;
  box-shadow: 0 2px 20px #0003;
}

.slide-11 {
  height: auto;
}

.cell-3, .cell-4 {
  justify-content: flex-start;
  align-items: center;
}

.bold-text-8 {
  color: var(--second);
}

.slide-12 {
  overflow: visible;
}

.image-4 {
  margin-top: 20px;
}

.image-5 {
  margin-top: 20px;
  display: block;
}

.container-3 {
  border-radius: 14px;
  max-width: none;
}

.image-6 {
  border-radius: 18px;
}

.section {
  border: 20px solid #222324;
  border-radius: 20px;
  width: 800px;
}

.slide-13 {
  width: auto;
}

.separator-program {
  background-color: var(--second);
}

.heading-style-h1-copy {
  color: var(--text-color--text-primary);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h1-copy.white {
  color: var(--text-color--text-alternate);
}

.heading-style-h1-copy.white.capt {
  text-transform: uppercase;
  margin-top: 2rem;
  font-family: Bai Jamjuree, sans-serif;
}

.heading-style-h1-copy.white.capt.regular {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-weight: 200;
  display: flex;
}

.heading-style-h1-copy.white.capt.ambassador {
  text-align: center;
  margin-top: 0;
}

.italic-text-5-copy {
  font-family: Bai Jamjuree, sans-serif;
}

.italic-text-5-copy.ebook {
  font-size: 2rem;
}

.text-size-medium-copy {
  color: var(--second);
  text-align: center;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.text-size-medium-copy.hero {
  color: var(--text-color--text-alternate);
  font-style: italic;
  font-weight: 300;
}

.text-size-medium-copy.hero.program {
  text-align: left;
}

.text-size-medium-copy.hero.program.ambassador {
  text-align: center;
  font-weight: 400;
}

.text-size-medium-copy.hero.ebook {
  font-size: 1.7rem;
  font-weight: 300;
}

.text-size-medium-copy.text-style-italic.margin-bottom.margin-xxsmall.heading {
  text-align: center;
}

.text-size-medium-copy.white {
  color: var(--text-color--text-alternate);
  text-align: right;
}

.text-size-medium-copy.text-weight-bold {
  text-align: center;
  font-family: Courier New, sans-serif;
  text-decoration: none;
}

.text-size-medium-copy.text-weight-bold.private-equity-11 {
  text-align: center;
}

.text-size-medium-copy.font-main {
  font-family: Courier New, sans-serif;
}

.text-weight-bold-copy {
  color: var(--grey-bg);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.pricing-comparison {
  background-color: #15455e;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.pricing-comparison.disclaimer {
  text-align: center;
}

.container-4 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.pricing-card {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 24px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 130px #96a3b51f;
}

.pricing-card.featured-pricing {
  z-index: 2;
  box-shadow: 0 4px 130px #96a3b54d;
}

.pricing-image {
  object-fit: cover;
  width: 200px;
  height: 200px;
  margin-bottom: 16px;
}

.pricing-title {
  color: var(--second);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.pricing-subtitle {
  margin-bottom: 12px;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.pricing-price {
  color: var(--main);
  margin-bottom: 8px;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.paragraph-regular {
  font-size: 14px;
  line-height: 20px;
}

.paragraph-regular.margin-bottom-20 {
  margin-bottom: 20px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.button-primary.outline-button {
  color: #1a1b1f;
  background-color: #0000;
  box-shadow: inset 0 0 0 1px #1a1b1f;
}

.button-primary.outline-button:hover {
  color: #fff;
  background-color: #1a1b1f;
}

.pricing-divider {
  background-color: #76879d1a;
  align-self: stretch;
  height: 1px;
  margin: 56px -24px 16px;
}

.pricing-feature-list {
  align-self: stretch;
}

.pricing-feature {
  background-image: url('../images/');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  align-self: stretch;
  margin-top: 16px;
  padding-left: 32px;
  font-size: 14px;
  line-height: 24px;
}

.pricing-tag {
  color: #3a4554;
  background-color: #bc912f;
  border-radius: 24px;
  padding: 7px 16px;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 700;
  position: absolute;
  top: -19px;
  box-shadow: 0 3px 10px #96a3b533;
}

.hero-without-image {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.hero-without-image.black {
  background-color: var(--second);
}

.hero-wrapper-two {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-wrapper-two.disclaimers {
  margin-top: 48px;
}

.margin-bottom-24px {
  color: var(--second);
  margin-bottom: 24px;
  font-family: Bai Jamjuree, sans-serif;
}

.margin-bottom-24px.margin2 {
  font-size: 1.5rem;
}

.margin-bottom-24px.margin2.stopkla {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 0;
  font-weight: 400;
}

.margin-bottom-24px.margin2.stopkla.b {
  font-weight: 600;
}

.margin-bottom-24px.white {
  color: var(--base-color-neutral--white);
}

.heading-19 {
  font-family: Bai Jamjuree, sans-serif;
}

.bold-text-9 {
  color: var(--second);
}

.bold-text-9.white {
  color: var(--base-color-neutral--white);
}

.testimonial-image-left {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  display: block;
  position: relative;
}

.testimonial-wrapper-four {
  justify-content: space-between;
  display: flex;
}

.testimonial-left {
  width: 30%;
  margin-right: 64px;
}

.testimonial-image-four {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.testimonial-right {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.heading-small {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.heading-small.margin-bottom-32px {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
}

.testimonial-text-four {
  color: var(--second);
  margin-bottom: 32px;
  font-family: Bai Jamjuree, sans-serif;
}

.testimonial-author-name-three {
  margin-bottom: 10px;
  font-family: Bai Jamjuree, sans-serif;
}

.testimonial-title {
  font-family: Bai Jamjuree, sans-serif;
}

.code-embed-2 {
  border-radius: 20px;
  padding-top: 0;
}

.cell-5 {
  color: var(--text-color--text-primary);
}

.video-embed {
  margin-top: 25px;
}

.hero-video-link-block {
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
}

.marquee-wrapper {
  width: 200%;
  margin-top: 48px;
  display: flex;
}

.marquee-div {
  flex-direction: row;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.card {
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 500px;
  margin-left: 20px;
  margin-right: 20px;
  display: block;
}

.video-slider {
  background-color: #f4f4f4;
  display: block;
  overflow: hidden;
}

.hero-video-filter {
  opacity: .5;
  background-color: #ffbf00;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  transition: opacity .2s, background-color .725s cubic-bezier(.165, .84, .44, 1);
}

.hero-video-filter:hover {
  background-color: #0000;
}

.hero-video-filter.slider-2 {
  opacity: .75;
  background-color: #b4cffb;
}

.hero-video-filter.slider-2:hover {
  opacity: 0;
}

.hero-video-filter.slider1 {
  background-color: var(--second);
  opacity: .75;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.hero-video-filter.slider1:hover {
  opacity: 0;
}

.hero-video {
  border-radius: 30px;
  width: 100%;
  height: 437px;
  transition: height .725s cubic-bezier(.165, .84, .44, 1);
  overflow: hidden;
}

.hero-video:hover {
  height: 100%;
}

.features-text {
  color: var(--second);
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 160%;
}

._wf-content-section {
  background-color: var(--base-color-neutral--neutral-lightest);
  padding-top: 75px;
  padding-bottom: 75px;
}

._wf-content-video-container {
  justify-content: center;
  align-items: center;
  margin-top: -25px;
  display: flex;
}

.wrappier {
  padding-top: 30px;
  padding-bottom: 30px;
}

.feature-header {
  color: var(--second);
  margin-top: 0;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 125%;
}

._wf-content-image {
  background-image: url('../images/Image.svg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  min-height: 300px;
  max-height: 500px;
  margin-top: 0;
  display: flex;
}

._wf-content-image.centered-image {
  background-image: url('../images/623aef9139281d33f2a37e72_main-qimg-bbe1bfa0abf265439c6630b67f12886b-removebg-preview.png');
  background-position: 50%;
  flex: 0 auto;
  width: 50%;
  margin-top: 70px;
}

._wf-hero-container-blue {
  color: #2699fb;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.content-header-wrapper {
  padding-left: 48px;
  padding-right: 48px;
}

.italic-text-6 {
  font-family: Bai Jamjuree, sans-serif;
}

.section-2 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-left: 200px;
  margin-right: 200px;
  display: grid;
}

.code-embed-3 {
  margin-top: 0;
  margin-bottom: 30px;
}

.code-embed-4 {
  color: var(--base-color-neutral--black);
  margin-top: 50px;
}

.text-block-12 {
  color: var(--base-color-brand--white);
  font-size: 18px;
}

.bold-text-10 {
  font-size: 2rem;
}

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

.div-block-5 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 80px;
  display: flex;
}

.bold-text-11 {
  display: flex;
}

.cell-6, .cell-7, .cell-8, .cell-9 {
  justify-content: flex-start;
  align-items: center;
}

.videos {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch center;
  display: flex;
}

.cell-10, .cell-11, .cell-12, .cell-13 {
  justify-content: flex-start;
  align-items: center;
}

.quick-stack-2 {
  margin-top: 40px;
  margin-left: 160px;
  margin-right: 160px;
}

.section-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: 60px;
  margin-right: 60px;
  display: flex;
}

.container-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.div-block-6 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center;
  margin-top: 16px;
  margin-left: 0;
  margin-right: 0;
  display: grid;
}

.div-block-6.wiekszydiv {
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-6.mniejszy-div {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.video-2 {
  margin-top: 0;
  padding-bottom: 20px;
}

.section-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 3px solid var(--second);
  background-image: linear-gradient(180deg, white, var(--base-color-system--error-red));
  text-align: center;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  min-width: auto;
  height: auto;
  min-height: auto;
  padding: 20px;
  display: block;
}

.section-4.bold {
  border-width: 6px;
  border-color: var(--text-color--text-error);
  background-image: linear-gradient(#fcfade, #fae14f);
  width: auto;
}

.div-block-7 {
  display: flex;
}

.block-18 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: flex-start;
  margin-left: 160px;
  margin-right: 160px;
  display: flex;
}

.video-3, .video-4, .video-5, .video-6, .video-7, .video-8, .video-9, .video-10, .video-11, .video-12 {
  padding-bottom: 20px;
}

.section-6 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.div-block-8 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
}

.div-block-9 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.popip {
  margin-top: 128px;
  margin-bottom: 64px;
}

.section-7 {
  width: 100%;
  height: 50px;
  margin-top: 15px;
}

.div-block-10 {
  background-color: var(--main);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.warning {
  font-size: 1.3rem;
}

.text {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
}

.text.center {
  text-align: center;
  font-size: 1.5rem;
}

.text.tools {
  font-size: 1.5rem;
}

.div-block-11 {
  border: 1px solid var(--second);
  background-color: #ededed;
  border-radius: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: 0 2px 5px #0003;
}

.container-6 {
  margin-top: 20px;
  margin-bottom: 64px;
}

.cena {
  color: var(--second);
  text-align: center;
  padding-top: 5px;
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 600;
}

.div-block-13 {
  background-color: var(--second);
}

.section-8 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin: 24px 160px 84px;
  display: grid;
}

.container-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-14 {
  background-color: #935c5c;
}

.container-8 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-9 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  display: block;
}

.container-10 {
  margin-top: 20px;
  margin-bottom: 64px;
}

.div-block-15 {
  background-color: #ededed;
  border: 1px solid #15455e;
  border-radius: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: 0 2px 5px #0003;
}

.heading-style-h1-2 {
  color: #15455e;
  text-align: center;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-2 {
  color: #15455e;
  font-family: Bai Jamjuree, sans-serif;
}

.text-2.tools {
  font-size: 1.5rem;
}

.image-7 {
  margin-top: -120px;
  margin-bottom: -50px;
}

.section-9 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  margin: 48px 168px 84px;
  display: flex;
}

.image-8, .image-9, .image-10 {
  max-width: 100%;
}

.div-block-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 2px solid var(--grey-bg);
  mix-blend-mode: normal;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  display: grid;
  box-shadow: 0 0 17px 8px #0000001a;
}

.div-block-17 {
  min-width: 50%;
}

.video-13 {
  margin-top: 20px;
}

.red {
  color: var(--base-color-system--error-red);
  font-family: Bai Jamjuree, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.paragraph-18 {
  color: var(--second);
  font-family: Bai Jamjuree, sans-serif;
}

.video-14, .video-15, .video-16 {
  margin-top: 20px;
}

.section-10 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--text-color--text-error);
  background-image: linear-gradient(180deg, var(--text-color--text-error), #911b12);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.code-embed-5 {
  color: var(--base-color-brand--white);
  justify-content: center;
  align-items: flex-start;
  width: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.image-11 {
  color: var(--base-color-system--error-red-light);
  background-color: #cb2424;
}

.image-12 {
  width: 48px;
}

.div-block-18 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 48px;
  margin-bottom: 48px;
  margin-left: 0;
  display: flex;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top.margin-8_75 {
    margin-top: 4rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .rl-styleguide_item-row {
    grid-template-columns: auto 1fr;
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xlarge {
    padding-top: 3.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 7.5rem;
  }

  .navbar_container {
    grid-auto-columns: 1fr;
    display: grid;
  }

  .navbar_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

  .navbar_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon_line-middle {
    background-color: var(--second);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-bottom {
    background-color: var(--base-color-neutral--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_menu_wrapper {
    z-index: 1;
    background-color: var(--background-color--background-primary);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-right: 1px solid #000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 80vw;
    height: 100dvh;
    margin-left: 0;
    padding-bottom: 6.5rem;
    padding-left: 5vw;
    padding-right: 5vw;
    transition: height .5s;
    display: flex;
    position: absolute;
    inset: 0% auto 0% 0%;
    overflow: auto;
  }

  .navbar3_logo-link-menu {
    float: none;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    position: static;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar3_menu-background {
    z-index: 0;
    background-color: #00000080;
    width: 100vw;
    height: 100vh;
    padding-bottom: 0;
    padding-right: 0;
    display: none;
    position: absolute;
    inset: 0%;
  }

  .navbar_link {
    padding: .75rem 0;
    font-size: 1.125rem;
    position: static;
  }

  .menu-icon_line-top {
    background-color: var(--second);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_tablet-menu-button {
    width: 100%;
    margin-top: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
  }

  .navbar_tablet-menu-button.transparent {
    border-color: var(--main);
    color: var(--main);
    background-color: #0000;
    display: none;
  }

  .header_card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-wrapper {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .hero-logo_wrrapper {
    justify-content: center;
    margin-top: 2rem;
  }

  .image {
    position: static;
  }

  .stats_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .stats_list {
    grid-column-gap: 2rem;
  }

  .stats_number {
    font-size: 2rem;
  }

  .event-item-header_content {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .event-item-header_content.second {
    grid-auto-flow: row;
  }

  .event-item-header_content.cart {
    grid-template-columns: 1.25fr;
  }

  .inner_heading-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .list-wrapper {
    min-height: 0;
  }

  .bio_item-list {
    grid-template-columns: 1fr;
  }

  .consultaiont-content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .bm_list {
    grid-template-columns: 1fr;
  }

  .heading-style-date_wrapper {
    font-size: 1.75rem;
  }

  .box_list {
    grid-template-columns: 1fr;
  }

  .box_item {
    height: 20rem;
  }

  .cta_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .footer_top-wrapper {
    grid-row-gap: 4rem;
  }

  .schedule_item-content {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-columns: 1fr;
  }

  .schedule_item {
    grid-column-gap: 2rem;
    grid-template-columns: 120px 1fr max-content;
  }

  .schedule_item.btn {
    grid-template-columns: 120px 1fr;
  }

  .heading-style-h3_uppercase {
    font-size: 2.25rem;
  }

  .contact-modal4_content-wrapper {
    width: 80%;
    max-width: none;
    padding: 4rem 3rem;
  }

  .heading-style-h2-2 {
    font-size: 2.75rem;
  }

  .navbar_menu-slot {
    z-index: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
    transition: height .5s;
    display: flex;
    position: relative;
    inset: 0% auto 0% 0%;
    overflow: auto;
  }

  .content28_component {
    grid-column-gap: 3rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .content28_sidebar {
    order: -1;
    width: 100%;
    margin-left: 0;
    position: relative;
    top: 0;
  }

  .content28_sidebar-heading {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border: 1px solid var(--border-color--border-primary);
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    display: flex;
  }

  .content28_accordion-icon {
    display: flex;
  }

  .cart-header_image-wrapper.picture {
    width: 60%;
  }

  .event-item-header6_content {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .fs_rangeslider-2_handle-right, .fs_rangeslider-2_left, .fs_rangeslider-1_handle, .fs_rangeslider-1_handle-2, .fs_rangeslider-1_handle-3 {
    width: 2rem;
    height: 2rem;
  }

  .tabs_price-card {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
  }

  .heading-style-h1-copy {
    font-size: 3.25rem;
  }

  .container-4 {
    max-width: 728px;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-card {
    width: 350px;
  }

  .testimonial-left {
    width: 40%;
    margin-right: 40px;
  }

  .hero-video-link-block {
    margin-left: 10px;
    margin-right: 10px;
  }

  .card {
    height: 300px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-video {
    height: 250px;
  }

  .features-text {
    max-width: 500px;
    font-size: 14px;
  }

  ._wf-content-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-header {
    font-size: 22px;
  }

  ._wf-content-image.centered-image {
    width: 80%;
  }

  .heading-style-h1-2 {
    font-size: 3.25rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .page-wrapper {
    padding-top: 64px;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .text-size-medium.white {
    text-align: left;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .button.is-secondary.is-small.blue.is-component {
    order: 1;
    position: relative;
  }

  .button.is-navbar-button {
    padding: .25rem 1rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spacer-xsmall {
    padding-top: .75rem;
  }

  .spacer-small {
    padding-top: 1.25rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-large {
    padding-top: 2rem;
  }

  .spacer-xlarge {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 5rem;
  }

  .navbar_menu-button {
    display: block;
  }

  .navbar_menu_wrapper {
    width: 90vw;
    padding-bottom: 5rem;
  }

  .navbar3_menu-background {
    display: none;
  }

  .navbar_section {
    min-height: 4rem;
  }

  .header_card-content {
    padding: 2rem;
  }

  .stats_content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .stats_list {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .stats_number {
    font-size: 2rem;
  }

  .event-item-header_content {
    grid-row-gap: 3rem;
  }

  .event-item-header_metatag-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: 1.25rem;
  }

  .inner_heading-wrapper {
    grid-template-columns: 1fr;
  }

  .consultaiont-content, .bm_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-date_wrapper {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .box_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .cta_content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

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

  .footer_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    order: 0;
    grid-auto-flow: row;
  }

  .footer_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .footer_credit-text {
    order: 0;
    margin-top: 2rem;
  }

  .footer_top-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer_bottom-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column-reverse;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    padding-bottom: 1rem;
    display: grid;
  }

  .schedule_day {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .schedule_item-content.btn {
    width: 100%;
  }

  .schedule_list {
    margin-bottom: 1.5rem;
  }

  .schedule_icon-wrapper {
    width: 28px;
  }

  .schedule_item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .schedule_item.btn {
    flex-flow: column;
    grid-template-columns: 120px;
    display: flex;
  }

  .schedule_item-title {
    order: 0;
  }

  .hidden_text {
    order: 1;
  }

  .heading-style-h3_uppercase {
    font-size: 2rem;
  }

  .shedule-item-content-container {
    width: 100%;
    padding-right: 0;
  }

  .pop-up-form-wrapper.padding-global {
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 620px;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .form_field-2col.is-mobile-1col {
    grid-template-columns: 1fr;
  }

  .contact-modal4_content-wrapper {
    width: 90%;
    padding-bottom: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .form_radio-2col.is-mobile-1col {
    grid-template-columns: 1fr;
  }

  .heading-style-h2-2 {
    font-size: 2.25rem;
  }

  .form-field-container, .subheader_wrapper {
    flex-flow: column;
  }

  .schedule_day_dropdown {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .text-size-medium-3 {
    font-size: 1rem;
  }

  .cart-header_image-wrapper.picture {
    width: 80%;
  }

  .event-item-header6_content {
    grid-row-gap: 3rem;
  }

  .event-item-header6_metatag-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: 1.25rem;
  }

  .cart-capital-container {
    justify-content: center;
    align-items: center;
  }

  .footer_bottom-wrapper-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column-reverse;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    padding-bottom: 1rem;
    display: grid;
  }

  .footer_credit-text-2 {
    order: 0;
    margin-top: 2rem;
  }

  .tabs_price-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .grid_2-4 {
    min-height: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .slide-nav {
    color: var(--main);
  }

  .navbar_section-2 {
    min-height: 4rem;
  }

  .heading-style-h1-copy {
    font-size: 2.5rem;
  }

  .text-size-medium-copy {
    font-size: 1rem;
  }

  .text-size-medium-copy.white {
    text-align: left;
  }

  .pricing-comparison {
    padding: 60px 15px;
  }

  .pricing-wrapper {
    justify-items: stretch;
  }

  .pricing-card {
    width: auto;
  }

  .pricing-title {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-without-image, .testimonial-image-left {
    padding: 60px 15px;
  }

  .testimonial-wrapper-four {
    flex-direction: column;
  }

  .testimonial-left {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .testimonial-image-four {
    height: auto;
  }

  .heading-small {
    font-size: 28px;
    line-height: 36px;
  }

  ._wf-content-image, ._wf-content-image.centered-image {
    width: 100%;
  }

  .heading-style-h1-2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .page-wrapper {
    background-color: #f1f1f1;
  }

  .page-wrapper.mobile {
    padding-top: 0;
  }

  .container-large {
    justify-content: center;
    align-items: flex-start;
    width: auto;
    max-width: none;
    margin-top: 300px;
    display: flex;
  }

  .container-large.mobile {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
  }

  .container-large.mobile-4.step2 {
    flex-flow: column;
  }

  .max-width-large {
    margin-top: 20px;
  }

  .max-width-large.ambassador {
    width: 80%;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top.margin-8_75 {
    margin-top: 1rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small.ambassador {
    grid-column-gap: 23px;
    grid-row-gap: 23px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .margin-bottom.margin-xsmall {
    margin-top: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom.padding-medium {
    justify-content: center;
    align-items: flex-start;
    max-width: none;
    margin-bottom: -83px;
    display: flex;
  }

  .padding-bottom.padding-medium:where(.w-variant-e2cb65eb-7615-44f6-288e-d45b6678e4b4) {
    margin-bottom: auto;
    padding-bottom: 0;
  }

  .padding-bottom.padding-medium.private-equity-5 {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: auto;
    padding-bottom: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical.padding-xxlarge {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

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

  .text-size-medium.hero {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .text-size-medium.text-weight-bold {
    text-align: center;
  }

  .heading-style-h2.mixed {
    margin-top: 0;
    padding-top: 0;
    font-size: 1.75rem;
  }

  .heading-style-h2.mixed.goes-over-mobile {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-style-h2.white {
    font-size: 1.75rem;
  }

  .heading-style-h6 {
    font-size: 16px;
  }

  .heading-style-h5 {
    color: var(--second);
  }

  .heading-style-h1 {
    padding-left: 0;
  }

  .heading-style-h1.white.capt {
    font-size: 2rem;
  }

  .button {
    background-color: var(--main);
    border-style: none;
    margin-top: 0;
    padding-bottom: .75rem;
  }

  .button.is-navbar-button.transparent {
    margin-left: 0;
    display: none;
  }

  .button.is-navbar-button.transparent.is-cart {
    display: block;
  }

  .text-weight-bold {
    padding-left: 0;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .button-group {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .text-size-large {
    color: var(--main);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    font-family: Bai Jamjuree, sans-serif;
    font-weight: 700;
  }

  .padding-global {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .padding-global.padding-section-large {
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-top: 0;
    margin-bottom: -39px;
    padding-top: 4rem;
    display: flex;
  }

  .padding-global.padding-section-large:where(.w-variant-e2cb65eb-7615-44f6-288e-d45b6678e4b4) {
    margin-bottom: auto;
    padding-top: 6rem;
    padding-bottom: 0;
  }

  .padding-global.padding-section-large.private-equity-3 {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: auto;
    padding: 6rem 0% 0;
  }

  .padding-section-medium {
    flex: 0 auto;
    padding-bottom: 0;
  }

  .padding-section-large {
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .heading-2.videos.mobile {
    font-size: 1.5rem;
  }

  .heading-5.video.mobile {
    font-size: 1rem;
  }

  .navbar_container.home {
    grid-template-columns: minmax(max-content, 1fr) max-content;
  }

  .navbar_menu-button {
    display: none;
  }

  .navbar_tablet-menu-button.transparent {
    display: inline-block;
  }

  .header_card-content.sub_page_hero {
    align-items: center;
    display: flex;
  }

  .header_card {
    grid-template-columns: 1fr;
  }

  .header_card.sub_page_hero {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .main-button {
    min-width: auto;
  }

  .main-button.transparent {
    text-align: center;
  }

  .main-button.transparent-white:hover {
    border-color: var(--main);
    background-color: var(--main);
    color: var(--base-color-brand--white);
  }

  .main-button.form {
    width: 100%;
  }

  .stats_content {
    grid-column-gap: 2.4rem;
    grid-row-gap: 2.4rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .stats_list {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    place-items: start;
  }

  .sectionseparator.program {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .event-item-header6_image.first-section-image {
    padding-left: 0;
  }

  .event-item-header6_image.cart, .event-item-header6_image.cart:where(.w-variant-e2cb65eb-7615-44f6-288e-d45b6678e4b4), .event-item-header6_image.cart.private-equity-9 {
    height: 170px;
  }

  .event-item-header_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .event-item-header_content.second {
    grid-column-gap: 5rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    max-width: none;
    display: grid;
    overflow: visible;
  }

  .event-item-header_content.cart {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    grid-template-rows: 3.75fr auto auto;
    grid-template-columns: 1.25fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    justify-items: center;
    max-width: 315px;
    display: grid;
  }

  .event-item-header_content.cart:where(.w-variant-e2cb65eb-7615-44f6-288e-d45b6678e4b4), .event-item-header_content.cart.private-equity-7 {
    grid-row-gap: 2rem;
  }

  .event-item-header_content.cart.private-equity-7.dekstop {
    place-items: start center;
    display: block;
  }

  .event-item-header_content.ambasada.ambasaddda.mobilka {
    grid-template-columns: 1.25fr;
  }

  .event-item-header_content.ambasada.mobilka {
    grid-template-rows: auto;
    grid-template-columns: .5fr;
  }

  .event-item-header_metatag-list {
    grid-template-rows: auto auto;
  }

  .event-item-header_image-wrapper {
    margin-bottom: 25px;
  }

  .section_whom {
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    display: block;
  }

  .list {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 2rem;
    display: flex;
  }

  .bio_item-list {
    grid-template-columns: 1fr;
  }

  .button-group_card {
    margin-top: 10px;
  }

  .section_bio {
    margin-top: 0;
  }

  .consultaiont-content {
    grid-template-columns: 1fr;
  }

  .bm_item {
    width: 400px;
  }

  .bm_item.mobilerotator {
    width: 360px;
  }

  .bm_item-content {
    box-shadow: 0 2px 16px 6px #0000001a;
  }

  .bm_date-wrapper.places {
    z-index: auto;
    margin-top: 0;
    padding-top: .5rem;
    display: flex;
    position: absolute;
    inset: 0% auto auto 0%;
  }

  .bm_date-wrapper.places:where(.w-variant-aa0c609c-3e7c-f63c-e384-7264911f3af3), .bm_date-wrapper.places.cart-2 {
    border-bottom-left-radius: 24px;
    position: relative;
  }

  .box_list {
    grid-template-columns: 1fr;
  }

  .button-group-2 {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .box_item {
    height: 32rem;
  }

  .box_item:where(.w-variant-38343294-a991-6122-b698-4f5bc35448cf), .box_item.mobile-8, .box_item.mobile-12, .box_item.mobile-16 {
    width: auto;
    height: auto;
    padding-bottom: 1rem;
    font-family: Bai Jamjuree, sans-serif;
    position: static;
  }

  .cta_content {
    grid-template-columns: 1fr;
  }

  .text-cta {
    font-size: 1rem;
  }

  .footer_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .footer_link-list {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer_component {
    margin-top: 68px;
    margin-bottom: 0;
  }

  .footer_top-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .footer_details-wrapper {
    word-break: break-all;
  }

  .schedule_item-content {
    grid-row-gap: .5rem;
  }

  .schedule_item {
    grid-row-gap: 1rem;
  }

  .schedule_item-title {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .text-box {
    text-decoration: none;
  }

  .text-whom {
    text-align: center;
    padding-left: 0;
    font-size: 1rem;
  }

  .heading-style-h3_uppercase {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
    padding-left: 0;
    font-size: 1.5rem;
    display: flex;
  }

  .pop-up-form-wrapper.padding-global.start-up, .pop-up-form-wrapper.padding-global.private-equity, .pop-up-form-wrapper.padding-global.contact-us, .contact-modal4_component {
    display: none;
  }

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

  .content28_sidebar-heading {
    align-self: auto;
  }

  .available-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .section_cart {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
    display: flex;
  }

  .cart-header_component.private-equity-6 {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .cart-header_image-wrapper {
    max-width: 315px;
    margin-top: -60px;
  }

  .cart-header_image-wrapper.picture {
    width: 100%;
  }

  .event-item-header6_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .event-item-header6_metatag-list {
    grid-template-rows: auto auto;
  }

  .event-item-header6_metatag-list.cart.text-weight-medium:where(.w-variant-e2cb65eb-7615-44f6-288e-d45b6678e4b4) {
    margin-top: 60px;
  }

  .event-item-header6_metatag-list.cart.text-weight-medium.private-equity-79 {
    margin-top: 100px;
  }

  .button-group-4, .button-group-5 {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .paragraph-3 {
    font-family: Bai Jamjuree, sans-serif;
  }

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

  .footer_details-wrapper-2 {
    word-break: break-all;
  }

  .paragraph-4 {
    color: #bc912f;
  }

  .text_font-22 {
    margin-top: auto;
    margin-bottom: auto;
  }

  .tabs_price-card {
    padding-top: 20px;
    padding-bottom: 25px;
    display: flex;
  }

  .tabs_price-card.hidden {
    display: none;
  }

  .grid_2-4 {
    text-align: left;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .spacer-40 {
    height: 20px;
  }

  .price_wrap-top {
    margin-top: 20px;
  }

  .h3 {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 16px;
  }

  .slider {
    height: 1340px;
  }

  .icon-2, .icon-3 {
    margin-top: 290px;
  }

  .text-span-19 {
    font-weight: 700;
  }

  .mask {
    height: auto;
  }

  .text-span-20 {
    font-family: Bai Jamjuree, sans-serif;
    font-weight: 700;
    text-decoration: line-through;
  }

  .text-span-21 {
    text-align: right;
    font-size: 16px;
  }

  .heading-7 {
    font-size: 2.25px;
  }

  .heading-8 {
    mix-blend-mode: normal;
    font-family: Bai Jamjuree, sans-serif;
    font-size: 16px;
  }

  .text-span-23 {
    font-family: Bai Jamjuree, sans-serif;
  }

  .paragraph-15.programmobile {
    text-align: left;
  }

  .asdas.program {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 320px;
    display: block;
  }

  .slide {
    margin-top: 0;
  }

  .secondary-button.program {
    background-color: var(--main);
    color: var(--grey-bg);
    justify-content: center;
    align-items: center;
    width: 160px;
    margin-bottom: 60px;
    display: block;
  }

  .secondary-button-mobile {
    background-color: var(--main);
    border-radius: 20px;
    font-family: Bai Jamjuree, sans-serif;
    font-size: .8rem;
  }

  .slider-2 {
    width: auto;
    height: 1100px;
    margin-bottom: 40px;
  }

  .slide-1 {
    width: auto;
  }

  .slide-3, .slide-4 {
    width: auto;
    margin-left: 10px;
  }

  .slide-nav {
    margin-top: 0;
  }

  .mask-2 {
    position: relative;
  }

  .mask-2.mobileslider {
    height: 1180px;
  }

  .dropdown-toggle {
    border: 1px solid var(--base-color-neutral--neutral-light);
    background-color: #fff;
    border-radius: 11px;
  }

  .select-field {
    border: 1px solid var(--base-color-neutral--neutral-lighter);
    background-color: var(--base-color-brand--white);
    color: var(--main);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    font-family: Bai Jamjuree, sans-serif;
    font-weight: 600;
  }

  .programtitle {
    color: var(--background-color--background-primary);
    margin-top: 60px;
    margin-bottom: 2rem;
    padding-top: 40px;
    font-family: Bai Jamjuree, sans-serif;
    font-size: 2rem;
    font-weight: 700;
  }

  .text-box-2 {
    text-decoration: none;
  }

  .button-group_card-2 {
    margin-top: 10px;
  }

  .quick-stack {
    flex: 0 auto;
  }

  .section.mobil {
    border-width: 10px;
    width: 300px;
  }

  .heading-style-h1-copy.white.capt {
    font-size: 2rem;
  }

  .italic-text-5-copy, .text-size-medium-copy {
    text-align: center;
  }

  .text-size-medium-copy.hero {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .text-size-medium-copy.text-weight-bold {
    text-align: center;
  }

  .text-weight-bold-copy {
    padding-left: 0;
  }

  .container-4 {
    max-width: none;
  }

  .heading-small {
    font-size: 24px;
    line-height: 32px;
  }

  .code-embed-2.mobile {
    width: auto;
  }

  .card {
    height: 200px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-video {
    height: 150px;
  }

  ._wf-content-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .feature-header {
    font-size: 16px;
  }

  ._wf-content-image {
    min-height: 200px;
  }

  .content-header-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .bold-text-12, .bold-text-13, .bold-text-14, .bold-text-15, .bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19, .bold-text-20, .bold-text-21, .bold-text-22, .bold-text-23 {
    text-align: left;
  }

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

  .section-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .div-block-6 {
    flex-flow: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    justify-content: flex-start;
    place-items: center;
    margin-top: 16px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .section-4 {
    width: 300px;
  }

  .quick-stack-3 {
    margin-left: 15px;
    margin-right: 15px;
  }

  .section-5 {
    margin-left: 10px;
  }

  .div-block-8, .div-block-9 {
    flex-flow: column;
  }

  .section-7 {
    height: 150px;
  }

  .text.center {
    width: auto;
  }

  .text.tools {
    font-size: 16px;
  }

  .div-block-11 {
    width: 315px;
  }

  .div-block-11.custom-tools {
    margin-left: 2px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-6 {
    width: 325px;
  }

  .div-block-12 {
    width: 315px;
  }

  .superscript {
    width: 315px;
    height: 315px;
  }

  .text-span-28 {
    text-align: center;
    width: 100%;
    font-size: 1rem;
    text-decoration: none;
    display: block;
  }

  .text-span-29 {
    text-align: center;
    width: 100%;
    font-size: 1rem;
    display: block;
  }

  .section-8 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 24px;
    margin-left: 0;
    margin-right: 0;
    display: grid;
  }

  .container-9 {
    max-width: 100%;
    display: block;
  }

  .bold-text-24 {
    font-size: 16px;
  }

  .container-10 {
    width: 325px;
  }

  .div-block-15 {
    width: 315px;
  }

  .div-block-15.custom-tools {
    margin-left: 2px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .heading-style-h1-2 {
    padding-left: 0;
  }

  .text-2.tools, .bold-text-25 {
    font-size: 16px;
  }

  .section-9 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .div-block-16 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .section-10 {
    flex-flow: column;
  }
}

#w-node-ce77d747-fd61-dc7d-e34a-3a3a995f104f-2cf940e1, #w-node-ce77d747-fd61-dc7d-e34a-3a3a995f1055-2cf940e1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b8da1085-b18e-e945-4efd-cc4ef6f978cf-f6f978b1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cb9484b9-cb92-873c-8fb9-4c975e996e91-5e996e8a {
  place-self: center;
}

#w-node-cb9484b9-cb92-873c-8fb9-4c975e996e9c-5e996e8a {
  align-self: stretch;
}

#w-node-cb9484b9-cb92-873c-8fb9-4c975e996eaa-5e996e8a, #w-node-cb9484b9-cb92-873c-8fb9-4c975e996eb8-5e996e8a {
  align-self: start;
}

#w-node-cb9484b9-cb92-873c-8fb9-4c975e996ecd-5e996e8a {
  align-self: stretch;
}

#start-up.w-node-_0f0849dd-a0ea-76d8-bb6b-441fa5bfd182-a5bfd16c, #private-equity.w-node-f032fd36-933b-e60e-79ca-50e11dbb1ccb-a5bfd16c, #w-node-bc16d97c-6194-a9f7-da55-60c78769fc2c-a5bfd16c {
  justify-self: end;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-ebbf99c7 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86263-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86264-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86268-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86269-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626d-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626e-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86272-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86273-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627c-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627d-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86286-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86287-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b9-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862be-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cd-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d2-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862de-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e2-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e3-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e8-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ec-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ed-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f2-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f7-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fb-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fc-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86300-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86301-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86305-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86306-ebbf99c7 {
  justify-self: start;
}

#w-node-aceb9adc-ab11-ae9c-832d-ba0cb63794ca-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aceb9adc-ab11-ae9c-832d-ba0cb63794cb-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86310-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86311-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86315-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86316-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631b-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86323-ebbf99c7 {
  justify-self: start;
}

#w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd5fd-ebbf99c7, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd600-ebbf99c7, #w-node-_5260568a-938d-ea68-0c74-308a8209edce-ebbf99c7, #w-node-_5260568a-938d-ea68-0c74-308a8209edd1-ebbf99c7, #w-node-_06b32c98-aea3-8ba0-a51d-a7fca0302b82-ebbf99c7, #w-node-_06b32c98-aea3-8ba0-a51d-a7fca0302b85-ebbf99c7, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd604-ebbf99c7, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd605-ebbf99c7, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd608-ebbf99c7, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd609-ebbf99c7, #w-node-e9f32a64-fc89-70ea-ccef-8f5fa64bd60c-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86393-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86394-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638e-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638f-ebbf99c7 {
  justify-self: start;
}

#w-node-_7304dac8-f593-d71d-1de4-011e92740d9b-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7304dac8-f593-d71d-1de4-011e92740d9c-ebbf99c7 {
  justify-self: start;
}

#w-node-c97d2f4c-a980-bb5b-78e5-2721ac744da4-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c97d2f4c-a980-bb5b-78e5-2721ac744da5-ebbf99c7 {
  justify-self: start;
}

#w-node-_06aa1bf4-9138-5698-358d-7b7066841d42-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_06aa1bf4-9138-5698-358d-7b7066841d43-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ba-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863bd-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863be-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c1-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c2-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c5-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c6-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ca-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863cd-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ce-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d1-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d2-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d5-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863de-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e5-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e6-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f7-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f8-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-ebbf99c7, #w-node-e9f171cc-11b4-0905-714d-593dc5e729cd-ebbf99c7, #w-node-e9f171cc-11b4-0905-714d-593dc5e729ce-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729cf-ebbf99c7 {
  justify-self: start;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729d3-ebbf99c7, #w-node-_803d93b2-f316-78e7-4b37-d40ff102217f-ebbf99c7, #w-node-_803d93b2-f316-78e7-4b37-d40ff1022180-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022181-ebbf99c7 {
  justify-self: start;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022187-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86402-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86410-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86411-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86415-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86419-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8641a-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86420-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86424-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86425-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642f-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86430-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86438-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643c-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8643d-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86449-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8644a-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644b-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644f-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86454-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86455-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86456-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8645c-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86461-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86462-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86463-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86469-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646e-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646f-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86470-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86478-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8647e-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8647f-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86485-ebbf99c7, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701c-ebbf99c7, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701d-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c32701e-ebbf99c7 {
  justify-self: start;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c327022-ebbf99c7, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1608-ebbf99c7, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1609-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e160a-ebbf99c7 {
  justify-self: start;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1610-ebbf99c7, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece1-ebbf99c7, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece2-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece3-ebbf99c7 {
  justify-self: start;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece9-ebbf99c7, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7e-ebbf99c7, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7f-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b80-ebbf99c7 {
  justify-self: start;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b88-ebbf99c7, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253d-ebbf99c7, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253e-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a95253f-ebbf99c7 {
  justify-self: start;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a952545-ebbf99c7, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7c-ebbf99c7, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7d-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7e-ebbf99c7 {
  justify-self: start;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab86-ebbf99c7, #w-node-_40872103-aff7-c010-da67-704a8f3f1108-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f1109-ebbf99c7 {
  justify-self: start;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f110f-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8648f-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86490-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86491-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86492-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86494-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc86497-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649b-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649c-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649d-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a6-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a7-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a8-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b1-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b2-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b3-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864b4-ebbf99c7 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864ba-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bb-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bc-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864bd-ebbf99c7 {
  justify-self: start;
}

#w-node-da163454-3d7f-a6d2-8037-3b46b9c50abd-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c3-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c4-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c5-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864c6-ebbf99c7, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c8-ebbf99c7 {
  justify-self: start;
}

#w-node-efe47a2c-71a3-58fc-52e2-5719cef52200-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55803-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55804-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55805-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55806-ebbf99c7 {
  justify-self: start;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55808-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5580b-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5580f-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55810-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55811-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5581a-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5581b-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5581c-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55825-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55826-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55827-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55828-ebbf99c7 {
  justify-self: start;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e5582e-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5582f-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55830-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55831-ebbf99c7 {
  justify-self: start;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e55833-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55837-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55838-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e55839-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4992825b-ed2c-cb01-ffba-02b107e5583a-ebbf99c7, #w-node-_4992825b-ed2c-cb01-ffba-02b107e5583c-ebbf99c7 {
  justify-self: start;
}

#w-node-_4a155e2a-eb56-5e64-2ca9-d86b21d2d284-ebbf99c7, #w-node-_4a155e2a-eb56-5e64-2ca9-d86b21d2d285-ebbf99c7, #w-node-a9020bef-146e-1178-2cc2-7b5aa4506421-ebbf99c7, #w-node-a9020bef-146e-1178-2cc2-7b5aa4506422-ebbf99c7, #w-node-_0c03b128-114e-b839-dd05-3a93ee2fd443-ebbf99c7, #w-node-_0c03b128-114e-b839-dd05-3a93ee2fd444-ebbf99c7, #w-node-_0c03b128-114e-b839-dd05-3a93ee2fd44a-ebbf99c7, #w-node-_0c03b128-114e-b839-dd05-3a93ee2fd44b-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-ebbf99c7, #w-node-_8ec19c33-ae2e-90c5-80bf-3c4e7d639cd4-ebbf99c7, #w-node-_450fae6e-ea6c-c71d-c007-cbe7f109d617-ebbf99c7, #w-node-dcc5fc80-562f-447f-055c-339db14678d8-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d6-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d7-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d9-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692db-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692dc-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692de-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e0-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e1-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e3-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e5-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e6-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e8-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fe-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ff-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369301-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369303-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369304-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369306-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369371-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369372-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369374-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369375-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369377-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369378-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937a-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937b-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937d-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937e-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369380-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369381-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369383-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369384-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369386-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369387-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-ebbf99c7, #w-node-aba73718-5f03-827e-9e0b-61449dc1d37c-ebbf99c7, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f8-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f9-ebbf99c7 {
  justify-self: start;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fb-ebbf99c7, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fc-ebbf99c7, #w-node-_16994295-7a31-57da-1001-8ec0ea846a1e-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a1f-ebbf99c7 {
  justify-self: start;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a21-ebbf99c7, #w-node-_16994295-7a31-57da-1001-8ec0ea846a22-ebbf99c7, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f2-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f3-ebbf99c7 {
  justify-self: start;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f5-ebbf99c7, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f6-ebbf99c7, #w-node-f28919c2-e180-d075-d1c2-81b601b8a964-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a965-ebbf99c7 {
  justify-self: start;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a967-ebbf99c7, #w-node-f28919c2-e180-d075-d1c2-81b601b8a968-ebbf99c7, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b3-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b4-ebbf99c7 {
  justify-self: start;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b6-ebbf99c7, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b7-ebbf99c7, #w-node-ee961e8d-845a-edc3-3307-509470022457-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee961e8d-845a-edc3-3307-509470022458-ebbf99c7 {
  justify-self: start;
}

#w-node-ee961e8d-845a-edc3-3307-50947002245a-ebbf99c7, #w-node-ee961e8d-845a-edc3-3307-50947002245b-ebbf99c7, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e1-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e2-ebbf99c7 {
  justify-self: start;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e4-ebbf99c7, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e5-ebbf99c7, #w-node-_626bd165-37fe-b21e-713f-accb16c57414-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57415-ebbf99c7 {
  justify-self: start;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57417-ebbf99c7, #w-node-_626bd165-37fe-b21e-713f-accb16c57418-ebbf99c7, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f40-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f41-ebbf99c7 {
  justify-self: start;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f43-ebbf99c7, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f44-ebbf99c7, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee5-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee6-ebbf99c7 {
  justify-self: start;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee8-ebbf99c7, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee9-ebbf99c7, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe33-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe34-ebbf99c7 {
  justify-self: start;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe36-ebbf99c7, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe37-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-ebbf99c7, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-ebbf99c7 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-ebbf99c7 {
  justify-self: start;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e54-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8106d9-b098-80e3-076c-80f3a0fa5e55-ebbf99c7 {
  justify-self: start;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a792-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_680345d6-d141-aefc-5e81-01faad69a793-ebbf99c7 {
  justify-self: start;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b297-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc962921-5c74-5687-77a4-c1371012b298-ebbf99c7 {
  justify-self: start;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db57-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbf5f4a2-0660-a8f8-7799-a71df583db58-ebbf99c7 {
  justify-self: start;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92c-ebbf99c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_723dac19-3a6b-8f5e-89ce-53b9006ba92d-ebbf99c7 {
  justify-self: start;
}

#w-node-_020b3adc-a168-c788-4e72-6247601991ec-b8a2db91 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-_5f46c507-b039-21d3-1bec-a672e4f34de7-057c813f, #private-equity.w-node-_5f46c507-b039-21d3-1bec-a672e4f34de9-057c813f, #w-node-_5f46c507-b039-21d3-1bec-a672e4f34deb-057c813f {
  justify-self: end;
}

#w-node-c41f5f53-786c-6364-4154-1f0c5d0124b0-ef365865, #w-node-c41f5f53-786c-6364-4154-1f0c5d0124b5-ef365865 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-e4ee461b-fd65-0453-5885-636affb78c85-ffb78c74 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bc58101e-1732-17c1-46a4-25a16467176b-9e50eb83, #w-node-bc58101e-1732-17c1-46a4-25a164671770-9e50eb83, #w-node-_020b3adc-a168-c788-4e72-6247601991ec-6a994a31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_98b43241-24d0-5cc6-9845-69facf8e8f25-cf8e8f21 {
  align-self: stretch;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-2bbf53fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-2bbf53fe, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-2bbf53fe, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-2bbf53fe {
  justify-self: end;
}

#w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-2bbf53fe, #w-node-_4011e7e2-4eab-6f53-ae61-1450459cad40-2bbf53fe, #w-node-_31b6d766-128c-a083-0d93-26e018bb8e6b-2bbf53fe {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-2bbf53fe {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-bc998bc6-8008-b202-e7a7-64bbe6c48962-2bbf53fe, #w-node-_0d790fe8-14db-98a1-e5e8-803566a8c413-2bbf53fe, #w-node-_8c5df36f-290e-3dbd-a10d-9c1373f50166-2bbf53fe {
  grid-template-rows: auto auto;
  grid-template-columns: .25fr;
}

#w-node-_2395faed-573f-61e8-6e51-14ea09f12474-2bbf53fe, #w-node-_79064301-6eca-57bf-489e-a02a790c952b-2bbf53fe, #w-node-e6af9b12-4d0a-6850-0d2d-8d551d11f076-2bbf53fe, #w-node-_4bd9d54a-d232-6df4-670e-60c98ec6575f-2bbf53fe, #w-node-_7203c6eb-ddeb-f67d-6a86-829902ee83a4-2bbf53fe, #w-node-afbe85ec-7994-973a-c56e-50c1a1981ab8-2bbf53fe, #w-node-_79064301-6eca-57bf-489e-a02a790c954f-2bbf53fe, #w-node-_79064301-6eca-57bf-489e-a02a790c9558-2bbf53fe, #w-node-e296575b-f012-ae8a-1834-3691734467f7-2bbf53fe, #w-node-_79064301-6eca-57bf-489e-a02a790c9561-2bbf53fe, #w-node-_4ee00202-2e19-3e2d-e1cd-09c3f3829b0c-2bbf53fe, #w-node-_79064301-6eca-57bf-489e-a02a790c9579-2bbf53fe, #w-node-_8458d6c8-18c7-731f-07a1-df1682076877-2bbf53fe, #w-node-_8cc7606c-f4d4-eadd-157e-115010d308eb-2bbf53fe, #w-node-ab308465-2d63-c17e-8bb0-53e0caecacfd-2bbf53fe, #w-node-_79064301-6eca-57bf-489e-a02a790c9583-2bbf53fe, #w-node-_79064301-6eca-57bf-489e-a02a790c9590-2bbf53fe, #w-node-_79064301-6eca-57bf-489e-a02a790c9597-2bbf53fe, #w-node-_976a533f-2715-93cf-5a93-6440314e275c-2bbf53fe, #w-node-_1de040af-8a5b-83ff-62ae-3621d6cb00a4-2bbf53fe, #w-node-_14cc7ee1-9390-d9b6-3340-7f8a1dad94ba-2bbf53fe, #w-node-_66752efc-9263-1999-aa98-b42b1e8b734d-2bbf53fe, #w-node-_4add90a9-fe1c-2662-9dcf-d93d860f959e-2bbf53fe, #w-node-_72a20678-d56c-0cf0-fda0-18640985e1ef-2bbf53fe {
  place-self: center;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-2bbf53fe, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-2bbf53fe {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_74c56b9e-1d7d-66eb-8cff-8af1e7ebbab7-7ad9c632, #w-node-_74c56b9e-1d7d-66eb-8cff-8af1e7ebbad7-7ad9c632, #w-node-_74c56b9e-1d7d-66eb-8cff-8af1e7ebbaff-7ad9c632 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-f6efdae2 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_74c56b9e-1d7d-66eb-8cff-8af1e7ebbab7-bd3f36d1, #w-node-_74c56b9e-1d7d-66eb-8cff-8af1e7ebbad7-bd3f36d1, #w-node-_74c56b9e-1d7d-66eb-8cff-8af1e7ebbaff-bd3f36d1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-53b4380b, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-279b2f07, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-f48ddac2, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-2a34b276 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-5295d087 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-5295d087, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-5295d087, #start-up.w-node-_880dd891-5fef-c00e-a550-dc6ddd2974b3-5295d087 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-5295d087, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-5295d087, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-5295d087 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-5295d087 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-f54c14fa-a9dc-2688-765a-b08fcd9cebee-5295d087, #w-node-f54c14fa-a9dc-2688-765a-b08fcd9cebf2-5295d087 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-596c7128, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-c14a6466 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-1cbd3ba7 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-1cbd3ba7, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-1cbd3ba7 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-1cbd3ba7 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-1cbd3ba7, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-1cbd3ba7, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-1cbd3ba7 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-1cbd3ba7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-c34baf87-1034-c524-4839-f2742e302fff-1cbd3ba7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-d630e5bb {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-d630e5bb, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-d630e5bb {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-d630e5bb {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-d630e5bb, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-d630e5bb, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-d630e5bb {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-d630e5bb {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-c34baf87-1034-c524-4839-f2742e302fff-d630e5bb, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-250b119f, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-250b119f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_020b3adc-a168-c788-4e72-6247601991ec-a97a4b37, #w-node-_020b3adc-a168-c788-4e72-6247601991ec-16cb9fd3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-0e80ef87, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-0e80ef87, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-0e80ef87 {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-0e80ef87, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-0e80ef87 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-d70cb3ec, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-d70cb3ec, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-d70cb3ec {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-d70cb3ec, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-d70cb3ec {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-7ac22f9d, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-7ac22f9d, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-7ac22f9d {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-7ac22f9d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-7ac22f9d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-4d86e0ff, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-4d86e0ff, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-4d86e0ff {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-4d86e0ff, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-4d86e0ff {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-4c34d05d, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-4c34d05d, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-4c34d05d {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-4c34d05d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-4c34d05d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-f41474c0, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-f41474c0, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-f41474c0 {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-f41474c0, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-f41474c0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-b1d2a312, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-b1d2a312, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-b1d2a312 {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-b1d2a312, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-b1d2a312 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-56da5970, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-56da5970, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-56da5970 {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-56da5970, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-56da5970 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-b19dd69f, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-b19dd69f, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-b19dd69f {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-b19dd69f, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-b19dd69f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-e77052ae, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-e77052ae, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-e77052ae {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-e77052ae, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-e77052ae, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-f232e634, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-f232e634, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-24c8eabc, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-24c8eabc, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-085acc70, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-085acc70, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-05f02d4d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-05f02d4d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-609d6509, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-609d6509, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-54c74d6a, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-54c74d6a, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-2c4181a5, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-2c4181a5, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-72a10107, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-72a10107, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-5cb1130f, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-5cb1130f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-ad6a92cc {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-ad6a92cc, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-ad6a92cc, #start-up.w-node-_92a1c030-7e33-281e-6500-38739071f9e4-ad6a92cc {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-ad6a92cc, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-ad6a92cc, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-ad6a92cc {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ad6a92cc {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-adcf206a-94ce-324a-c5c9-139358c2f9d8-ad6a92cc, #w-node-adcf206a-94ce-324a-c5c9-139358c2f9dc-ad6a92cc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-fd83212c {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-fd83212c, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-fd83212c, #start-up.w-node-_1422468b-52dc-c440-1cc0-1bbd1b77e79f-fd83212c {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-fd83212c, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-fd83212c, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-fd83212c {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-fd83212c {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_786294cb-3805-a4a8-d1c0-687869d17eda-fd83212c, #w-node-_786294cb-3805-a4a8-d1c0-687869d17ede-fd83212c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-a5168345 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-a5168345, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-a5168345, #start-up.w-node-_72137cba-ad95-65ab-86af-07d2ee67a74c-a5168345 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-a5168345, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-a5168345, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-a5168345 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-a5168345 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_4efbdef5-cf34-1a23-2f41-8f2058695338-a5168345, #w-node-_4efbdef5-cf34-1a23-2f41-8f205869533c-a5168345 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-61687ab9 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-61687ab9, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-61687ab9, #start-up.w-node-bee5f8f6-63d1-9afc-9981-42c553fbcc5b-61687ab9 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-61687ab9, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-61687ab9, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-61687ab9 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-61687ab9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ed3a5eb6-6136-ca84-30c6-1c2369453e62-61687ab9, #w-node-ed3a5eb6-6136-ca84-30c6-1c2369453e66-61687ab9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-9aac4f1d {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-9aac4f1d, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-9aac4f1d, #start-up.w-node-_73383739-5ed4-eb3f-dc19-d352c7bd4436-9aac4f1d {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-9aac4f1d, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-9aac4f1d, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-9aac4f1d {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-9aac4f1d {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-efdf6410-4d25-c2f3-1aa3-428a1ca79116-9aac4f1d, #w-node-efdf6410-4d25-c2f3-1aa3-428a1ca7911a-9aac4f1d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-c447824f {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-c447824f, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-c447824f, #start-up.w-node-fea1293e-05d9-823d-e20c-88eb019592cc-c447824f {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-c447824f, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-c447824f, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-c447824f {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-c447824f {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-b955f65e-12fc-032a-b16d-aba9110775dd-c447824f, #w-node-b955f65e-12fc-032a-b16d-aba9110775e1-c447824f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-f36df0cf {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-f36df0cf, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-f36df0cf, #start-up.w-node-_9ee703dd-68ce-ddd1-964d-acd29d8a284e-f36df0cf {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-f36df0cf, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-f36df0cf, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-f36df0cf {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-f36df0cf {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_9e829c4f-81b0-ece9-e3be-eaa0b40f3232-f36df0cf, #w-node-_9e829c4f-81b0-ece9-e3be-eaa0b40f3236-f36df0cf {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-ccc4acef {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-ccc4acef, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-ccc4acef, #start-up.w-node-e2f41d15-9b65-dc3e-76d5-65ce58dae58e-ccc4acef {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-ccc4acef, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-ccc4acef, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-ccc4acef {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ccc4acef {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-ccc4acef, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-ccc4acef {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-ff960edf {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-ff960edf, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-ff960edf, #start-up.w-node-_75c5fc2d-7776-6a01-e8e3-c86c22d1df5c-ff960edf {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-ff960edf, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-ff960edf, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-ff960edf {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ff960edf {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_9f562534-e169-d42d-6782-0d9f11649a00-ff960edf, #w-node-_9f562534-e169-d42d-6782-0d9f11649a04-ff960edf {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-ca4c97b8 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-ca4c97b8, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-ca4c97b8 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-ca4c97b8 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-ca4c97b8, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-ca4c97b8, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-ca4c97b8 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ca4c97b8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_332c201d-fcc6-d4de-72df-8df16780a38d-ca4c97b8, #w-node-_332c201d-fcc6-d4de-72df-8df16780a391-ca4c97b8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-d1f251cf {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-d1f251cf, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-d1f251cf {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-d1f251cf {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-d1f251cf, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-d1f251cf, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-d1f251cf {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-d1f251cf {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_8c92f37a-002d-ee35-a8e8-2cd51e18365d-d1f251cf, #w-node-_8c92f37a-002d-ee35-a8e8-2cd51e183661-d1f251cf {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-ca829981 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-ca829981, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-ca829981 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-ca829981 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-ca829981, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-ca829981, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-ca829981 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ca829981 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_328d4569-02ed-3c0f-5ef4-703fcdc98143-ca829981, #w-node-_328d4569-02ed-3c0f-5ef4-703fcdc98147-ca829981 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-033afb7f {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-033afb7f, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-033afb7f {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-033afb7f {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-033afb7f, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-033afb7f, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-033afb7f {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-033afb7f {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_2d8cccd4-e32b-9830-78e1-d65562e7f44a-033afb7f, #w-node-_2d8cccd4-e32b-9830-78e1-d65562e7f44e-033afb7f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-f4faf446 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-f4faf446, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-f4faf446 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-f4faf446 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-f4faf446, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-f4faf446, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-f4faf446 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-f4faf446 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-a1e77e99-eec5-6ded-0e8f-0ddd96f5f0cf-f4faf446, #w-node-a1e77e99-eec5-6ded-0e8f-0ddd96f5f0d3-f4faf446 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-309dc266 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-309dc266, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-309dc266 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-309dc266 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-309dc266, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-309dc266, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-309dc266 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-309dc266 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_577d2a46-3290-0699-c6ea-bc962b3afcac-309dc266, #w-node-_577d2a46-3290-0699-c6ea-bc962b3afcb0-309dc266 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-9537a21c {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-9537a21c, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-9537a21c {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-9537a21c {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-9537a21c, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-9537a21c, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-9537a21c {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-9537a21c {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_1fbd541d-7054-ae3f-185e-d59f5d02050b-9537a21c, #w-node-_1fbd541d-7054-ae3f-185e-d59f5d02050f-9537a21c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-fade5061 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-fade5061, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-fade5061 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-fade5061 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-fade5061, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-fade5061, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-fade5061 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-fade5061 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_4aba9033-485e-eef8-55ad-ad52e7da8ca3-fade5061, #w-node-_4aba9033-485e-eef8-55ad-ad52e7da8ca7-fade5061 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-271499ec {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-271499ec, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-271499ec {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-271499ec {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-271499ec, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-271499ec, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-271499ec {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-271499ec {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d4f-271499ec, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-271499ec {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-4a83926b {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-4a83926b, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-4a83926b {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-4a83926b {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-4a83926b, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-4a83926b, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-4a83926b {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4a83926b {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_0c47c9fb-37f4-472f-ce57-6eee7e567d19-4a83926b, #w-node-_0c47c9fb-37f4-472f-ce57-6eee7e567d1d-4a83926b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-e0f11c2f {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-e0f11c2f, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-e0f11c2f {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-e0f11c2f {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-e0f11c2f, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-e0f11c2f, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-e0f11c2f {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-e0f11c2f {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-de466ee8 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-de466ee8, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-de466ee8 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-de466ee8 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-de466ee8, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-de466ee8, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-de466ee8 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-de466ee8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-f4fba15e {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-f4fba15e, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-f4fba15e {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-f4fba15e {
  order: 9999;
  justify-self: end;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-f4fba15e {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-4dfc2728 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-4dfc2728, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-4dfc2728 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-4dfc2728 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-4dfc2728, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-4dfc2728, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-4dfc2728 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4dfc2728 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-53bc028b {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-53bc028b, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-53bc028b {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-53bc028b {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-53bc028b, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-53bc028b, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-53bc028b {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-53bc028b {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-ed84ef04 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-ed84ef04, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-ed84ef04 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-ed84ef04 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-ed84ef04, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-ed84ef04, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-ed84ef04 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ed84ef04 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-4a841f2d {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-4a841f2d, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-4a841f2d {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-4a841f2d {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-4a841f2d, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-4a841f2d, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-4a841f2d {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4a841f2d {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-02458721 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-02458721, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-02458721 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-02458721 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-02458721, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-02458721, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-02458721 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-02458721 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-60742cb2 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-60742cb2, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-60742cb2 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-60742cb2 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-60742cb2, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-60742cb2, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-60742cb2 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-60742cb2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-56af3e86 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-56af3e86, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-56af3e86 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-56af3e86 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-56af3e86, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-56af3e86, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-56af3e86 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-56af3e86 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-dd72d232, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-8ff256a3, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-c281c7ef, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-21257118, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-65789f60 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-31d7a282, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-31d7a282, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-d35000c1, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-d35000c1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-54c8d3c9, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-54c8d3c9, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-54c8d3c9 {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-54c8d3c9, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-54c8d3c9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-15cfa209, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-15cfa209, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-15cfa209 {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-15cfa209, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-15cfa209 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-bb3b3534 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-bb3b3534, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-bb3b3534, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-bb3b3534 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-bb3b3534, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-bb3b3534, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-bb3b3534 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-bb3b3534 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-bb3b3534, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-bb3b3534 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-53f23d86 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-53f23d86, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-53f23d86, #start-up.w-node-_814b28fc-ea21-ab93-08f8-df3f55b40928-53f23d86 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-53f23d86, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-53f23d86, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-53f23d86 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-53f23d86 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-53f23d86, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-53f23d86 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-4d8785e1 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-4d8785e1, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-4d8785e1 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-4d8785e1 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-4d8785e1, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-4d8785e1, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-4d8785e1 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4d8785e1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d4f-4d8785e1, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-4d8785e1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-2193a6c8 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-2193a6c8, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-2193a6c8 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-2193a6c8 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-2193a6c8, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-2193a6c8, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-2193a6c8 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-2193a6c8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d4f-2193a6c8, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-2193a6c8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-66a9afa7 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-66a9afa7, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-66a9afa7 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-66a9afa7 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-66a9afa7, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-66a9afa7, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-66a9afa7 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-66a9afa7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-3e234bee {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-3e234bee, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-3e234bee {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-3e234bee {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-3e234bee, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-3e234bee, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-3e234bee {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-3e234bee {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-5998ecef, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-061f4f8c, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-385dfb99 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_3d3d5813-a910-781f-a56a-30a7ca575f26-385dfb99, #w-node-_3d3d5813-a910-781f-a56a-30a7ca575f2a-385dfb99, #w-node-_5f0500e5-72f7-5872-f6fd-031f051bbc92-9caa9592, #w-node-_5f0500e5-72f7-5872-f6fd-031f051bbc96-9caa9592, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-1d9d53e6, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-1d9d53e6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-6e2d5aeb, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-6e2d5aeb, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-6e2d5aeb {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-6e2d5aeb, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-6e2d5aeb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-17599472 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-17599472, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-17599472, #start-up.w-node-_09eab229-739e-0277-89ea-1e3e6ad475c3-17599472 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-17599472, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-17599472, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-17599472 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-17599472 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-17599472, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-17599472 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-2133013f {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-2133013f, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-2133013f {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-2133013f {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-2133013f, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-2133013f, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-2133013f {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-2133013f {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d4f-2133013f, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-2133013f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-7095e236 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-7095e236, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-7095e236 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-7095e236 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-7095e236, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-7095e236, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-7095e236 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-7095e236 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-bb659102 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-bb659102, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-bb659102, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-bb659102 {
  justify-self: end;
}

#w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-bb659102, #w-node-a471a06e-1081-c1df-5820-3c4c94f79d27-bb659102, #w-node-_2e6de039-1b7e-6438-38de-0b68039734c6-bb659102 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-bb659102 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-bc998bc6-8008-b202-e7a7-64bbe6c48962-bb659102, #w-node-_0d790fe8-14db-98a1-e5e8-803566a8c413-bb659102, #w-node-_8c5df36f-290e-3dbd-a10d-9c1373f50166-bb659102 {
  grid-template-rows: auto auto;
  grid-template-columns: .25fr;
}

#w-node-cc3ee300-525e-ea6c-a2f7-e0c42498ac88-bb659102 {
  place-self: start center;
}

#w-node-cc3ee300-525e-ea6c-a2f7-e0c42498ac91-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498ac99-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498aca2-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498acab-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498acb4-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498acbd-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498acc6-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498accf-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498acd6-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498acdf-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498ace7-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498acf1-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498acfe-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498ad05-bb659102, #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498ad0f-bb659102 {
  align-self: start;
}

#w-node-_347c4f10-fb92-4f69-abf7-089dcc13e229-bb659102 {
  place-self: start center;
}

#w-node-_347c4f10-fb92-4f69-abf7-089dcc13e232-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e23a-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e243-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e24c-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e255-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e25e-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e267-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e270-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e277-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e280-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e288-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e292-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e29f-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e2a6-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e2b0-bb659102 {
  align-self: start;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-bb659102, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-bb659102 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-fa20cc33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-fa20cc33, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-fa20cc33, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-fa20cc33 {
  justify-self: end;
}

#w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-fa20cc33, #w-node-_4011e7e2-4eab-6f53-ae61-1450459cad40-fa20cc33, #w-node-_31b6d766-128c-a083-0d93-26e018bb8e6b-fa20cc33 {
  place-self: center;
}

#w-node-_757c0122-efca-57ee-40c0-2d9ca306e992-fa20cc33 {
  place-self: start center;
}

#w-node-a7a8079f-f5f1-fe85-97e9-91b23b148cba-fa20cc33, #w-node-_2e452d0e-10f7-807d-a52e-d263b4506d32-fa20cc33, #w-node-_640b0dc8-58b7-ccb3-0bd2-59d686c67d8a-fa20cc33, #w-node-dcc78a3d-20a4-94c6-b83c-21713a9d4196-fa20cc33, #w-node-_06c26f99-c83f-cb4b-2723-b7b6ded897eb-fa20cc33, #w-node-b26f9e44-0bbc-e2cd-7eaf-75c2efbb822c-fa20cc33, #w-node-cd79c964-c9c0-4027-1d6a-55766d976be3-fa20cc33, #w-node-_20861d29-b3fb-5068-68ae-2605901c28d2-fa20cc33, #w-node-_62294331-6d31-8c7e-7566-d4870e907326-fa20cc33, #w-node-_5cd35db6-140b-1104-5f48-99f433e1c160-fa20cc33 {
  align-self: start;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-fa20cc33, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-fa20cc33 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-ca2d2006 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-ca2d2006, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-ca2d2006, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-ca2d2006 {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-ca2d2006, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-ca2d2006 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-c1c66bc4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-c1c66bc4, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-c1c66bc4, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-c1c66bc4 {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-c1c66bc4, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-c1c66bc4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-76e8877a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-76e8877a, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-76e8877a, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-76e8877a {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-76e8877a, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-76e8877a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-e562845d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-e562845d, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-e562845d, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-e562845d {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-e562845d, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-e562845d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-5a48216a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-5a48216a, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-5a48216a, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-5a48216a {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-5a48216a, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-5a48216a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-16222757 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-16222757, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-16222757, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-16222757 {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-16222757, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-16222757 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-aa228a40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-aa228a40, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-aa228a40, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-aa228a40 {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-aa228a40, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-aa228a40 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-7efdeac3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-7efdeac3, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-7efdeac3, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-7efdeac3 {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-7efdeac3, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-7efdeac3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-735378ae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-735378ae, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-735378ae, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-735378ae {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-735378ae, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-735378ae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-b28ef149 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-b28ef149, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-b28ef149, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-b28ef149 {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-b28ef149, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-b28ef149 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c26de11b-f897-0cf0-8bd6-da63ebce8628-d4b75386 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#start-up.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8636-d4b75386, #private-equity.w-node-c26de11b-f897-0cf0-8bd6-da63ebce8638-d4b75386, #w-node-c26de11b-f897-0cf0-8bd6-da63ebce863a-d4b75386 {
  justify-self: end;
}

#w-node-eafd0b72-07c0-473a-59a2-b0117065005b-d4b75386, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-d4b75386, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-e2511829, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-e2511829, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-6a6b1b0e, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-6a6b1b0e, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-be4e52ee, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-be4e52ee, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-ca6bf63d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-ca6bf63d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-8a1c946b, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-8a1c946b, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-8a1c946b {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-8a1c946b, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-8a1c946b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-6fe899fd, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-6fe899fd, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-6fe899fd {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-6fe899fd, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-6fe899fd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-4a8d92a4, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-4a8d92a4, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-4a8d92a4 {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-4a8d92a4, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-4a8d92a4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9456-7850c02b, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9457-7850c02b, #w-node-e763cfe4-a9ec-99c8-a052-523ec8fb9458-7850c02b {
  place-self: center;
}

#w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c695-7850c02b, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-7850c02b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-1937fb4b, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-22e3739a, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-12ebef80, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-eb7075f9 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-8d5456d3 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-8d5456d3, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-8d5456d3, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-8d5456d3 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-8d5456d3, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-8d5456d3, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-8d5456d3 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-8d5456d3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-8d5456d3, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-8d5456d3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-3f7a5183 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-3f7a5183, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-3f7a5183, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-3f7a5183 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-3f7a5183, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-3f7a5183, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-3f7a5183 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-3f7a5183 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-3f7a5183, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-3f7a5183 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-4f6d3491 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-4f6d3491, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-4f6d3491, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-4f6d3491 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-4f6d3491, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-4f6d3491, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-4f6d3491 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4f6d3491 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-4f6d3491, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-4f6d3491 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-8a1e7ce6 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-8a1e7ce6, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-8a1e7ce6, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-8a1e7ce6 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-8a1e7ce6, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-8a1e7ce6, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-8a1e7ce6 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-8a1e7ce6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-8a1e7ce6, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-8a1e7ce6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-91dc0e4d {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-91dc0e4d, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-91dc0e4d {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-91dc0e4d {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-91dc0e4d, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-91dc0e4d, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-91dc0e4d {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-91dc0e4d {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-31b61682 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-31b61682, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-31b61682 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-31b61682 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-31b61682, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-31b61682, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-31b61682 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-31b61682 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-a49f0236 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-a49f0236, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-a49f0236 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-a49f0236 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-a49f0236, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-a49f0236, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-a49f0236 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-a49f0236 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-a6e890c6 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-a6e890c6, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-a6e890c6 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-a6e890c6 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-a6e890c6, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-a6e890c6, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-a6e890c6 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-a6e890c6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-05567932 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-05567932, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-05567932 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-05567932 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-05567932, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-05567932, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-05567932 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-05567932 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d4f-05567932, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-05567932 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-7f38c515 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-7f38c515, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-7f38c515 {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-7f38c515 {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-7f38c515, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-7f38c515, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-7f38c515 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-7f38c515 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d4f-7f38c515, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-7f38c515 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-2213e95a {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-2213e95a, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-2213e95a {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-2213e95a {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-2213e95a, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-2213e95a, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-2213e95a {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-2213e95a {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d4f-2213e95a, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-2213e95a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-0c7d76df {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-0c7d76df, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-0c7d76df {
  justify-self: end;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb87-0c7d76df {
  order: 9999;
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-0c7d76df, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-0c7d76df, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-0c7d76df {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-0c7d76df {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d4f-0c7d76df, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-0c7d76df {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-46307fbb {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-46307fbb, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-46307fbb, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-46307fbb {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-46307fbb, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-46307fbb, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-46307fbb {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-46307fbb {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-46307fbb, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-46307fbb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-66bd7df9 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-66bd7df9, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-66bd7df9, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-66bd7df9 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-66bd7df9, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-66bd7df9, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-66bd7df9 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-66bd7df9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-66bd7df9, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-66bd7df9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-ecf8d0ed {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-ecf8d0ed, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-ecf8d0ed, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-ecf8d0ed {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-ecf8d0ed, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-ecf8d0ed, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-ecf8d0ed {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ecf8d0ed {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-ecf8d0ed, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-ecf8d0ed {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-bcae948a {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-bcae948a, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-bcae948a, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-bcae948a {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-bcae948a, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-bcae948a, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-bcae948a {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-bcae948a {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-bcae948a, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-bcae948a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb81-b9a962f6 {
  justify-self: start;
}

#start-up.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb83-b9a962f6, #private-equity.w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb85-b9a962f6, #start-up.w-node-bf8e35d9-ab6b-9b1c-0d1b-5eba29294add-b9a962f6 {
  justify-self: end;
}

#w-node-_2e2002d5-611b-1170-e01a-78d0cf2a65f0-b9a962f6, #w-node-_7f70a59b-9a03-3eef-3035-3bb2022bc2fc-b9a962f6, #w-node-_938626fb-25cf-d6a0-2c65-490270ab1698-b9a962f6 {
  place-self: center;
}

#w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-b9a962f6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b3-b9a962f6, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-b9a962f6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-a8ae5d99, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-913f4ec1, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-1ab424d7, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-98fd1be0, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-5bc2be84 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-ce77d747-fd61-dc7d-e34a-3a3a995f1055-2cf940e1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_79e2de27-af61-7d45-f262-f4eff020d1bd-1d50ccf7, #w-node-d626802f-5a6c-28ac-78e9-f912ea54f3f3-2f955bb2, #w-node-_3eef2e2f-7b28-5370-38f8-fbc879c637cd-2f955bb2, #w-node-_9120bdb7-b3e3-f4f6-8326-0ea73124fe40-2ee32858, #w-node-_79e2de27-af61-7d45-f262-f4eff020d1bd-057c813f, #w-node-c41f5f53-786c-6364-4154-1f0c5d0124ab-ef365865, #w-node-c41f5f53-786c-6364-4154-1f0c5d0124ad-ef365865, #w-node-bc58101e-1732-17c1-46a4-25a164671703-9e50eb83, #w-node-bc58101e-1732-17c1-46a4-25a164671768-9e50eb83, #w-node-_98b43241-24d0-5cc6-9845-69facf8e8f26-cf8e8f21 {
    order: -9999;
  }

  #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-2bbf53fe, #w-node-f54c14fa-a9dc-2688-765a-b08fcd9cebf2-5295d087, #w-node-c34baf87-1034-c524-4839-f2742e303003-1cbd3ba7, #w-node-c34baf87-1034-c524-4839-f2742e303003-d630e5bb, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-250b119f, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-0e80ef87, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-d70cb3ec, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-7ac22f9d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-4d86e0ff, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-4c34d05d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-f41474c0, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-b1d2a312, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-56da5970, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-b19dd69f, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-e77052ae, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-f232e634, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-24c8eabc, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-085acc70, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-05f02d4d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-609d6509, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-54c74d6a, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-2c4181a5, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-72a10107, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-5cb1130f, #w-node-adcf206a-94ce-324a-c5c9-139358c2f9dc-ad6a92cc, #w-node-_786294cb-3805-a4a8-d1c0-687869d17ede-fd83212c, #w-node-_4efbdef5-cf34-1a23-2f41-8f205869533c-a5168345, #w-node-ed3a5eb6-6136-ca84-30c6-1c2369453e66-61687ab9, #w-node-efdf6410-4d25-c2f3-1aa3-428a1ca7911a-9aac4f1d, #w-node-b955f65e-12fc-032a-b16d-aba9110775e1-c447824f, #w-node-_9e829c4f-81b0-ece9-e3be-eaa0b40f3236-f36df0cf, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-ccc4acef, #w-node-_9f562534-e169-d42d-6782-0d9f11649a04-ff960edf, #w-node-_332c201d-fcc6-d4de-72df-8df16780a391-ca4c97b8, #w-node-_8c92f37a-002d-ee35-a8e8-2cd51e183661-d1f251cf, #w-node-_328d4569-02ed-3c0f-5ef4-703fcdc98147-ca829981, #w-node-_2d8cccd4-e32b-9830-78e1-d65562e7f44e-033afb7f, #w-node-a1e77e99-eec5-6ded-0e8f-0ddd96f5f0d3-f4faf446, #w-node-_577d2a46-3290-0699-c6ea-bc962b3afcb0-309dc266, #w-node-_1fbd541d-7054-ae3f-185e-d59f5d02050f-9537a21c, #w-node-_4aba9033-485e-eef8-55ad-ad52e7da8ca7-fade5061, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-271499ec, #w-node-_0c47c9fb-37f4-472f-ce57-6eee7e567d1d-4a83926b, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-31d7a282, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-d35000c1, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-54c8d3c9, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-15cfa209, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-bb3b3534, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-53f23d86, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-4d8785e1, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-2193a6c8, #w-node-_3d3d5813-a910-781f-a56a-30a7ca575f2a-385dfb99, #w-node-_5f0500e5-72f7-5872-f6fd-031f051bbc96-9caa9592, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-1d9d53e6, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-6e2d5aeb, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-17599472, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-2133013f, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-bb659102, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-fa20cc33, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-ca2d2006, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-c1c66bc4, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-76e8877a, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-e562845d, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-5a48216a, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-16222757, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-aa228a40, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-7efdeac3, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-735378ae, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-b28ef149, #w-node-eafd0b72-07c0-473a-59a2-b0117065005f-d4b75386, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-e2511829, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-6a6b1b0e, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-be4e52ee, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-ca6bf63d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-8a1c946b, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-6fe899fd, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-4a8d92a4, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c699-7850c02b, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-8d5456d3, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-3f7a5183, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-4f6d3491, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-8a1e7ce6, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-05567932, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-7f38c515, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-2213e95a, #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d53-0c7d76df, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-46307fbb, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-66bd7df9, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-ecf8d0ed, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-bcae948a, #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97b7-b9a962f6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ce77d747-fd61-dc7d-e34a-3a3a995f1072-2cf940e1 {
    order: 9999;
  }

  #w-node-cb9484b9-cb92-873c-8fb9-4c975e996e9c-5e996e8a {
    order: -9999;
  }

  #w-node-_0f0849dd-a0ea-76d8-bb6b-441fa5bfd16e-a5bfd16c, #w-node-_5f46c507-b039-21d3-1bec-a672e4f34dd0-057c813f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_98b43241-24d0-5cc6-9845-69facf8e8f25-cf8e8f21 {
    order: -9999;
  }

  #w-node-eafd0b72-07c0-473a-59a2-b01170650072-2bbf53fe {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-5295d087 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f54c14fa-a9dc-2688-765a-b08fcd9cec05-5295d087 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-1cbd3ba7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c34baf87-1034-c524-4839-f2742e303027-1cbd3ba7 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-d630e5bb {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c34baf87-1034-c524-4839-f2742e303027-d630e5bb, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-250b119f, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-0e80ef87, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-d70cb3ec, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-7ac22f9d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-4d86e0ff, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-4c34d05d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-f41474c0, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-b1d2a312, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-56da5970, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-b19dd69f, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-e77052ae, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-f232e634, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-24c8eabc, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-085acc70, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-05f02d4d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-609d6509, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-54c74d6a, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-2c4181a5, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-72a10107, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-5cb1130f {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-ad6a92cc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-adcf206a-94ce-324a-c5c9-139358c2f9ef-ad6a92cc {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-fd83212c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_786294cb-3805-a4a8-d1c0-687869d17ef1-fd83212c {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-a5168345 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4efbdef5-cf34-1a23-2f41-8f205869534f-a5168345 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-61687ab9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ed3a5eb6-6136-ca84-30c6-1c2369453e79-61687ab9 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-9aac4f1d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-efdf6410-4d25-c2f3-1aa3-428a1ca7912d-9aac4f1d {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-c447824f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b955f65e-12fc-032a-b16d-aba9110775f4-c447824f {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-f36df0cf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9e829c4f-81b0-ece9-e3be-eaa0b40f3249-f36df0cf {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-ccc4acef {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-ccc4acef {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-ff960edf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9f562534-e169-d42d-6782-0d9f11649a17-ff960edf {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-ca4c97b8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_332c201d-fcc6-d4de-72df-8df16780a3a4-ca4c97b8 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-d1f251cf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8c92f37a-002d-ee35-a8e8-2cd51e183674-d1f251cf {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-ca829981 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_328d4569-02ed-3c0f-5ef4-703fcdc9815a-ca829981 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-033afb7f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_2d8cccd4-e32b-9830-78e1-d65562e7f461-033afb7f {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-f4faf446 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a1e77e99-eec5-6ded-0e8f-0ddd96f5f0e6-f4faf446 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-309dc266 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_577d2a46-3290-0699-c6ea-bc962b3afcc3-309dc266 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-9537a21c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1fbd541d-7054-ae3f-185e-d59f5d020522-9537a21c {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-fade5061 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4aba9033-485e-eef8-55ad-ad52e7da8cba-fade5061 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-271499ec {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d66-271499ec {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-4a83926b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0c47c9fb-37f4-472f-ce57-6eee7e567d30-4a83926b {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-e0f11c2f, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-de466ee8, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-f4fba15e, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-4dfc2728, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-53bc028b, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-ed84ef04, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-4a841f2d, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-02458721, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-60742cb2, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-56af3e86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-31d7a282, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-d35000c1, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-54c8d3c9, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-15cfa209 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-bb3b3534 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-bb3b3534 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-53f23d86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-53f23d86 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-4d8785e1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d66-4d8785e1 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-2193a6c8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d66-2193a6c8 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-66a9afa7, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-3e234bee {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3d3d5813-a910-781f-a56a-30a7ca575f3d-385dfb99, #w-node-_5f0500e5-72f7-5872-f6fd-031f051bbca9-9caa9592, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-1d9d53e6, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-6e2d5aeb {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-17599472 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-17599472 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-2133013f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d66-2133013f {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-7095e236 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-eafd0b72-07c0-473a-59a2-b01170650072-bb659102, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-fa20cc33, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-ca2d2006, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-c1c66bc4, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-76e8877a, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-e562845d, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-5a48216a, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-16222757, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-aa228a40, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-7efdeac3, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-735378ae, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-b28ef149, #w-node-eafd0b72-07c0-473a-59a2-b01170650072-d4b75386, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-e2511829, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-6a6b1b0e, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-be4e52ee, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-ca6bf63d, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-8a1c946b, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-6fe899fd, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-4a8d92a4, #w-node-b1be2ce3-fbd2-b604-7d53-2f45cdb2c6ac-7850c02b {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-8d5456d3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-8d5456d3 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-3f7a5183 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-3f7a5183 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-4f6d3491 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-4f6d3491 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-8a1e7ce6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-8a1e7ce6 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-91dc0e4d, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-31b61682, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-a49f0236, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-a6e890c6, #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-05567932 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d66-05567932 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-7f38c515 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d66-7f38c515 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-2213e95a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d66-2213e95a {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-0c7d76df {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ddfd8e5c-63e3-4b32-2c4a-c5f272806d66-0c7d76df {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-46307fbb {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-46307fbb {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-66bd7df9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-66bd7df9 {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-ecf8d0ed {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-ecf8d0ed {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-bcae948a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-bcae948a {
    order: 9999;
  }

  #w-node-_399fe9af-443e-05bc-a3bb-5de2c1c9cb6e-b9a962f6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcc8ee4a-7014-68d3-c708-d4ba0abd97ca-b9a962f6 {
    order: 9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bc58101e-1732-17c1-46a4-25a164671703-9e50eb83 {
    place-self: center;
  }

  #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-2bbf53fe {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_4bd9d54a-d232-6df4-670e-60c98ec6575f-2bbf53fe {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: start center;
  }

  #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-f6efdae2, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-53b4380b, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-279b2f07, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-f48ddac2, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-2a34b276 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-5295d087 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-596c7128, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-c14a6466 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-1cbd3ba7, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-d630e5bb, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ad6a92cc, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-fd83212c, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-a5168345, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-61687ab9, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-9aac4f1d, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-c447824f, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-f36df0cf, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ccc4acef, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ff960edf, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ca4c97b8, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-d1f251cf, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ca829981, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-033afb7f, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-f4faf446, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-309dc266, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-9537a21c, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-fade5061, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-271499ec, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4a83926b, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-e0f11c2f, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-de466ee8, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-f4fba15e, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4dfc2728, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-53bc028b, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ed84ef04, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4a841f2d, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-02458721, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-60742cb2, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-56af3e86 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-dd72d232, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-8ff256a3, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-c281c7ef, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-21257118, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-65789f60 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-bb3b3534, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-53f23d86, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4d8785e1, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-2193a6c8, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-66a9afa7, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-3e234bee {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-5998ecef, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-061f4f8c, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-385dfb99 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-17599472, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-2133013f, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-7095e236, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-bb659102 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-cc3ee300-525e-ea6c-a2f7-e0c42498ac88-bb659102, #w-node-_347c4f10-fb92-4f69-abf7-089dcc13e229-bb659102, #w-node-_757c0122-efca-57ee-40c0-2d9ca306e992-fa20cc33 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: start center;
  }

  #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-1937fb4b, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-22e3739a, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-12ebef80, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-eb7075f9 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-8d5456d3, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-3f7a5183, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-4f6d3491, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-8a1e7ce6, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-91dc0e4d, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-31b61682, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-a49f0236, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-a6e890c6, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-05567932, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-7f38c515, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-2213e95a, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-0c7d76df, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-46307fbb, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-66bd7df9, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-ecf8d0ed, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-bcae948a, #w-node-_1edfff9d-879c-d725-fbaf-9e638166a583-b9a962f6 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-a8ae5d99, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-913f4ec1, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-1ab424d7, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-98fd1be0, #w-node-_55a380b2-2a86-7b57-97aa-81b6f706e3c7-5bc2be84 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Courier New';
  src: url('../fonts/Courier-New-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Courier New';
  src: url('../fonts/Courier-New-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Courier New';
  src: url('../fonts/Courier-New.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Courier New';
  src: url('../fonts/Courier-New-Bold-Italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}