@font-face {
  font-family: Fleuron;
  src: url('../fonts/fleuronregular-webfont.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Uncut Sans;
  src: url('../fonts/Uncut-Sans-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Uncut Sans;
  src: url('../fonts/Uncut-Sans-RegularItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: block;
}

@font-face {
  font-family: Uncut Sans;
  src: url('../fonts/Uncut-Sans-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: block;
}

@font-face {
  font-family: Uncut Sans;
  src: url('../fonts/Uncut-Sans-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --dark: black;
  --white: white;
  --border: #ffffff80;
  --orange: #df6336;
  --main-color: #0d1b2d;
  --accessible-components--dark-grey: #9b9b9b;
  --combine-library--grey-600: #5f6570;
  --combine-library--grey-100: #d9dce2;
  --combine-library--white: white;
  --combine-library--grey-800: #1f2c3d;
}

.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-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.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;
}

.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;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: Uncut Sans, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.25em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3em;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3em;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4em;
}

p {
  margin-bottom: 1.4em;
}

a {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5em;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

label {
  opacity: .5;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 1px solid var(--border);
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 18px 0 18px 36px;
  font-size: 22px;
  line-height: 1.4em;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  opacity: .8;
  text-align: center;
  margin-top: 12px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
}

.loading-container {
  z-index: 9999;
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section.breadcrumb {
  padding-top: 18px;
  padding-bottom: 6px;
}

.section.reduced-top-padding {
  padding-top: 18px;
}

.section.no-top-padding, .section.no_top {
  padding-top: 0;
}

.container---main {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
}

.style-guide {
  grid-row-gap: 112px;
  border-bottom: 1px solid var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 72px;
}

.template-utility-section {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  grid-template-rows: auto;
  grid-template-columns: .33fr 1fr;
}

.style-guide-colors {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.style-guide-color {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  height: 112px;
  position: relative;
}

.bg-dark {
  background-color: var(--dark);
  color: #fff;
}

.bg-dark.bordered {
  border: 1px solid var(--border);
}

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

.style-guide-section-contents {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  justify-items: start;
}

.large-text {
  line-height: 1.3em;
}

.large-text.full_left {
  width: 100%;
  display: flex;
}

.large-text.full_left-copy {
  width: 100%;
  font-size: 30px;
  display: flex;
}

.small-text {
  color: var(--orange);
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4em;
}

.small-text.hint-text {
  margin-top: 12px;
}

.small-text.portfolio-link-industry {
  align-self: flex-end;
}

.small-text.breadcrumb-link {
  text-decoration: underline;
}

.small-text.portfolio-meta-title {
  text-transform: uppercase;
}

.small-text.search-result-url {
  opacity: .75;
  margin-top: 6px;
  margin-bottom: 9px;
}

.button {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--dark);
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding-left: 23px;
  padding-right: 23px;
  transition: color .2s, background-color .2s, border-color .2s;
  display: none;
}

.button:hover {
  color: var(--white);
  background-color: #0000;
}

.button.small {
  height: 33px;
  padding-left: 17px;
  padding-right: 17px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.button.bordered {
  pointer-events: auto;
  color: var(--white);
  background-color: #0000;
  flex: 0 auto;
  align-self: auto;
  width: 100%;
  display: flex;
}

.button.bordered:hover {
  background-color: var(--white);
  color: var(--dark);
}

.form-block {
  margin-bottom: 0;
}

.form-input {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--border);
  color: var(--white);
  background-color: #0000;
  width: 250px;
  height: 58px;
  margin-bottom: 0;
  padding: 0;
  font-size: 16px;
  transition: border-color .2s, color .2s;
}

.form-input:focus {
  border-bottom-color: var(--white);
}

.form-input::placeholder {
  color: #ffffff80;
}

.form-input.text-area {
  min-height: 200px;
}

.form-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.selectable-field {
  opacity: 1;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.selectable-label {
  opacity: 1;
  color: var(--white);
  text-transform: none;
  margin-bottom: 0;
  margin-left: 14px;
}

.footer {
  padding-top: 72px;
  padding-bottom: 36px;
}

.back-to-top-button {
  z-index: 10;
  background-color: var(--main-color);
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  position: fixed;
  bottom: 14px;
  right: 14px;
}

.announcement-bar {
  color: #fff;
  align-items: center;
  display: none;
  overflow: hidden;
}

.announcement-cross {
  cursor: pointer;
  width: 18px;
  height: 18px;
  transition: transform .2s;
  display: block;
}

.announcement-cross:hover {
  transform: rotate(90deg);
}

.announcement-contents {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #ffffff26;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 6px;
  padding: 18px;
  display: flex;
}

.search-modal-screen {
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding: 18px;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  width: 452px;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.select-wrapper {
  border: 1px solid var(--border);
  padding: 7px;
  overflow: hidden;
}

.select-field {
  color: var(--white);
  background-color: #0000;
  background-image: url('../images/icon-select-arrow.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  border: 1px #000;
  width: 110%;
  margin-bottom: 0;
}

.display-heading_small {
  text-transform: uppercase;
  font-family: Fleuron, sans-serif;
  font-size: 64px;
  line-height: 1em;
}

.display-heading_small.portfolio-link-title {
  flex: 1;
  margin-bottom: 10px;
  font-size: 29px;
  font-weight: 400;
}

.display-heading_small.reveal {
  justify-content: center;
  align-items: center;
  font-size: 40px;
  display: block;
}

.display-heading_small.reveal.small {
  font-size: 30px;
}

.display-heading_small.reveal.fs_small {
  font-size: 50px;
}

.display-heading_small.initial {
  justify-content: center;
  align-items: center;
  font-size: 40px;
  display: block;
}

.display-heading_small.initial.small {
  font-size: 30px;
}

.display-heading_small.initial.fs_small {
  font-size: 50px;
}

.display-heading_small.initial-copy {
  margin-bottom: 20px;
  font-size: 30px;
}

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

.checkbox {
  border-color: var(--border);
  border-radius: 0;
  width: 18px;
  height: 18px;
  margin-top: 0;
  margin-left: 0;
}

.checkbox.w--redirected-checked {
  border-color: var(--white);
  background-color: #0000;
  background-size: 12px 12px;
}

.radio {
  border-color: var(--border);
  width: 18px;
  height: 18px;
  margin-top: 0;
  margin-left: 0;
}

.radio.w--redirected-checked {
  border-color: #fff;
}

.style-guide-row-heading {
  margin-bottom: 0;
}

.style-guide-color-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
}

.form-success {
  background-color: #35664e;
  padding: 18px;
}

.form-error {
  background-color: #551414;
  margin-top: 18px;
  padding: 18px;
}

.menu-button {
  padding: 0;
}

.menu-button-wrapper {
  justify-content: center;
  width: 36px;
  height: 48px;
  display: flex;
  position: relative;
}

.menu-button-horziontal {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.menu-button-cross {
  opacity: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.menu-button-cross-line {
  background-color: var(--white);
  width: 75%;
  height: 2px;
  position: absolute;
}

.menu-button-horizontal-line {
  background-color: var(--white);
  width: 100%;
  height: 2px;
}

.navbar-wrapper {
  z-index: 999999;
  position: sticky;
  top: 0;
}

.navbar {
  background-color: #0000;
  height: auto;
  margin-bottom: 200px;
}

.navbar-row {
  border-bottom: 1px solid var(--white);
  margin-bottom: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
}

.photography-license-link {
  background-color: #000;
  justify-content: center;
  align-items: center;
  display: flex;
}

.license-image {
  opacity: .5;
}

.license-text {
  z-index: 2;
  color: #fff;
  position: absolute;
}

.typography-license-grid {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  grid-template-rows: auto;
}

.typography-demo {
  font-size: 96px;
  line-height: 1em;
}

.typography-demo.b {
  font-family: Fleuron, sans-serif;
}

.typography-demo.c {
  font-family: IBM Plex Mono, sans-serif;
}

.article h4 {
  margin-top: 1.3em;
  margin-bottom: 1em;
}

.article h2 {
  margin-bottom: .75em;
}

.article figure {
  margin-top: 36px;
  margin-bottom: 36px;
}

.article ul {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  align-items: stretch;
  margin-top: 1.4em;
  margin-bottom: 1.4em;
  padding-left: 1.4em;
  display: flex;
}

.article h3 {
  margin-bottom: 1em;
}

.article h5 {
  margin-top: 1.75em;
  margin-bottom: 1.4em;
}

.article ol {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  margin-bottom: 1.4em;
  padding-left: 1.4em;
  display: flex;
}

.article.newsa {
  text-align: justify;
  width: 100%;
}

.rows {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.rows.gap-0-25 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}

.rows.gap-0-25.links {
  align-items: flex-start;
}

.rows.gap-4 {
  grid-column-gap: 96px;
  grid-row-gap: 96px;
}

.rows.gap-0-75 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  width: 100%;
}

.rows.gap-0-75.title_div, .rows.gap-0-75.title_div-copy {
  margin-bottom: 20px;
}

.rows.gap-3 {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
}

.rows.gap-1-5 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.rows.gap-1-5.relativ {
  flex-direction: row;
  justify-content: space-between;
  align-self: auto;
  align-items: stretch;
  width: 100%;
  display: block;
}

.rows.gap-2 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}

.rows.gap-2.align-left {
  align-items: flex-start;
}

.rows.gap-0 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: flex-start;
}

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

.nav-menu, .nav-link-wrapper {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.nav-link {
  color: var(--white);
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  transition: opacity .2s;
  display: block;
}

.nav-link:hover {
  opacity: .5;
}

.nav-link.w--current {
  color: var(--white);
  text-transform: uppercase;
}

.nav-link.btn_apply {
  background-color: #df6336;
  border-radius: 3px;
  padding: 5px 40px;
}

.breadcrumbs {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.justify-between {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.curve-pattern {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  width: 248px;
  height: 248px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.curve-pattern.hug-right {
  align-items: flex-end;
}

.line {
  z-index: 0;
  background-color: var(--white);
  flex: none;
  width: 100%;
  height: 1px;
  position: relative;
}

.line.muted {
  background-color: var(--border);
  flex: none;
}

.line.or {
  background-color: var(--orange);
}

.line.title_line {
  position: absolute;
  top: 19px;
}

.curve-pattern-circle {
  z-index: 1;
  background-color: var(--main-color);
  border-bottom-left-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
}

.curve-pattern-circle.cover-bottom-left {
  border-top-right-radius: 100%;
  border-bottom-left-radius: 0%;
}

.container---m {
  align-self: flex-end;
  width: 100%;
  max-width: 696px;
  margin-bottom: 40px;
}

.container---m.align-bottom {
  align-self: flex-end;
  max-width: 100%;
}

.container---m.terms {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.container---m.footer-container {
  max-width: 245px;
}

.large-heading {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2em;
}

.large-heading.metric-number {
  color: var(--white);
  text-align: center;
  width: 100%;
}

.medium-heading {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25em;
}

.navbar-logo-wrapper {
  justify-content: flex-start;
  display: flex;
}

.curved-pattern-section {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.nav-menu-mobile-logo {
  display: none;
}

.nav-links {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-columns {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  display: flex;
}

.container---xs {
  width: 100%;
  max-width: 330px;
}

.container---xs.footer-left-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.footer-menus {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-auto-flow: column;
}

.footer-heading {
  opacity: .5;
}

.hover-link {
  transition: opacity .2s;
}

.hover-link:hover {
  opacity: .5;
}

.hover-link.muted {
  opacity: .5;
  margin-bottom: 10px;
}

.hover-link.muted:hover {
  opacity: 1;
}

.container---l {
  width: 100%;
  max-width: 940px;
}

.container---l.padded-top {
  padding-top: 24px;
}

.container---l.align-right {
  margin-left: auto;
  display: block;
}

.container---s {
  width: 100%;
  max-width: 250px;
}

.container---s.inside-circular-text-block.owl-theme.owl-carousel {
  max-width: 508px;
  padding-left: 20px;
  padding-right: 20px;
}

.container---s.align-bottom {
  align-self: flex-end;
  padding-bottom: 24px;
}

.container---s.newsa {
  max-width: 100%;
}

.lined-image {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.lined-image.in_news {
  height: 430px;
}

.lined-image.max {
  height: 100%;
}

.lined-image.display-heading_small {
  height: 70px;
}

.lined-image.display-heading_small.port {
  margin-top: 20px;
  margin-bottom: 0;
}

.line-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
}

.multiply-image {
  aspect-ratio: auto;
  mix-blend-mode: normal;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.multiply-image.big_img {
  opacity: 1;
  mix-blend-mode: darken;
  height: auto;
}

.multiply-image.in_nes {
  mix-blend-mode: darken;
}

.large-block-link {
  border: 1px solid var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 480px;
  padding: 36px 34px;
  display: flex;
}

.large-block-link.padd {
  padding-left: 220px;
  padding-right: 220px;
}

.large-block-link.padd.another_img {
  background-image: linear-gradient(#0000008a, #0000008a), url('../images/RACEnergy.webp');
  width: 100%;
}

.large-block-link.padd {
  background-image: none;
  width: 100%;
  padding-left: 36px;
  padding-right: 36px;
}

.large-block-link.new_image {
  background-image: linear-gradient(#0000008a, #0000008a), url('../images/RACEnergy.webp');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.large-block-link.inf_image {
  background-image: linear-gradient(to bottom, null, null), url('../images/L-R-Sameer-Wahie-Founder--CEO-Swageazy--Sneh-Setu-Founder--CPTO-Swageazy.webp');
}

.large-block-link.no_img {
  background-image: none;
  min-height: 340px;
}

.large-block-link.no_img.mini_box_1 {
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.large-block-link.no_img.mini_box_2 {
  justify-content: center;
  min-height: 480px;
  position: relative;
}

.large-block-link.no_img.mini_box_3 {
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.large-block-link.no_img.mini_box_4 {
  justify-content: center;
  min-height: 480px;
  position: relative;
}

.block-link-columns {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-auto-flow: column;
  width: 100%;
}

.table-row {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: .3fr .3fr .75fr .25fr .25fr;
  grid-auto-flow: column;
}

.table-row.filter_box {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: .3fr .3fr .75fr .25fr .25fr;
  grid-auto-columns: 1fr;
  display: none;
}

.table-row.fund_2 {
  margin-top: 18px;
}

.table-row.hp {
  grid-column-gap: 10px;
  grid-template-columns: .3fr .25fr .75fr;
  width: 100%;
}

.table-row._44 {
  grid-template-columns: .25fr .25fr .25fr 1fr 1fr;
}

.circular-text-section {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.circular-text-block {
  z-index: 1;
  background-color: var(--main-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 700px;
  height: 700px;
  display: flex;
  position: relative;
}

.empty-state {
  text-align: center;
  background-color: #ffffff1a;
  padding: 36px;
}

.metrics-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: flex;
}

.metric {
  border: 1px solid var(--white);
  background-color: var(--main-color);
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 384px;
  padding: 36px;
  display: flex;
}

.metric.second {
  margin-top: 36px;
  margin-left: -36px;
  margin-right: -36px;
}

.metric.third {
  margin-top: 72px;
}

.portfolio-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.large-portfolio-link {
  border: 1px solid var(--white);
  display: block;
  position: relative;
  overflow: hidden;
}

.portfolio-image {
  opacity: .5;
  object-fit: cover;
  border: 1px #000;
  width: 100%;
  height: 259px;
  margin-bottom: 0;
  padding-bottom: 0;
  display: block;
}

.portfolio-link-top-contents {
  z-index: 1;
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  border-bottom: 1px solid var(--white);
  width: 100%;
  padding: 18px 72px 18px 18px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.vertical-rule {
  background-color: var(--white);
  width: 1px;
}

.portfolio-link-bottom-contents {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  padding: 36px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.portfolio-layout {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.portfolio-contents {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.portfolio-meta {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.portfolio-meta-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.portfolio-social {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  align-items: center;
  display: flex;
}

.milestones {
  margin-bottom: -1.4em;
}

.sidebar-layout {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.team-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.team-member {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.grayscale-image {
  filter: grayscale();
  object-fit: scale-down;
}

.text-muted {
  opacity: .5;
}

.small-details-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: start;
  width: 100%;
}

.blog-list {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: column;
  display: flex;
}

.blog-item {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  border-bottom: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 36px;
  display: grid;
}

.blog-item:last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.blog-item-meta {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.category-link {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.link-circle {
  background-color: var(--white);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.blog-item-text {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 50%;
  padding-right: 40px;
  display: flex;
}

.align-right {
  justify-content: flex-end;
  display: flex;
}

.subscribe-form {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-title-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 452px 1fr;
}

.blog-title {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.blog-article-layout {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-article-layout.details {
  grid-template-columns: 1fr 2.5fr 1fr;
  grid-auto-flow: row;
  width: 100%;
}

.hide {
  display: none;
}

.search-form {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: row;
  margin-bottom: 0;
  display: flex;
}

.search-results-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.search-result-paragraph {
  margin-bottom: 0;
}

.search-result-item {
  border-bottom: 1px solid #ffffff26;
  padding-bottom: 24px;
}

.link-block-title-wrapper {
  height: 135px;
  overflow: hidden;
}

.link-block-title-wrapper.small {
  height: 28px;
  margin-bottom: 20px;
}

.link-block-title-wrapper.small_bx {
  height: 42px;
}

.link-block-title-wrapper.anothe_as {
  height: 52px;
}

.link-block-title-wrapper.large_w {
  height: 88px;
}

.link-block-title-wrapper.new_h {
  height: 90px;
}

.link-block-title-wrapper.br3b {
  height: 58px;
}

.large-link-block-subtitle-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.subtitle-wrapper-line {
  background-color: var(--orange);
  color: var(--orange);
  width: 48px;
  height: 1px;
}

.curve-pattern-line-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  width: 1452px;
  height: 100%;
  display: flex;
}

.div-block {
  display: flex;
}

.text-block {
  font-size: 16px;
  line-height: 1.6em;
}

.link-block-title-wrapper-copy {
  overflow: hidden;
}

.are_appo {
  border: 1px solid var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  padding: 36px 34px;
  display: flex;
}

.are_appo_2 {
  border: 1px solid var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  padding: 36px;
  display: flex;
}

.large-link-block-subtitle-wrapper-copy {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

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

.text-span-6 {
  font-weight: 500;
}

.text-block-2 {
  font-weight: 400;
}

.image {
  max-width: 60%;
}

.text-span-7.br3t {
  font-size: 64px;
}

.text-block-4, .text-block-5, .text-block-6 {
  opacity: 0;
}

.text-span-8 {
  font-size: 27px;
}

.text-span-8.br3t {
  font-size: 64px;
  position: relative;
  top: 6px;
}

.text-span-9, .text-span-10, .text-span-11 {
  font-size: 27px;
}

.text-span-11.br3t {
  font-size: 64px;
  position: relative;
  top: 7px;
}

.text-span-12, .text-span-13 {
  font-size: 27px;
}

.body {
  background-color: var(--main-color);
}

.hide_text {
  position: relative;
  bottom: -95px;
}

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

.apply_model {
  z-index: 99999999;
  background-color: #fff;
  width: 60%;
  display: block;
  position: fixed;
  inset: 0% 0% 0% auto;
  transform: translate(100%);
  box-shadow: -8px 2px 15px 1px #0003;
}

.image-2 {
  z-index: 999999;
  float: right;
  background-color: #fff;
  border-radius: 50px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 5px;
  position: relative;
  inset: 0% 0% auto auto;
}

.close-apply-model {
  z-index: 999999999;
  float: right;
  position: absolute;
  inset: 0% 0% auto auto;
}

.html-embed {
  width: 100%;
  height: 100%;
  position: relative;
}

.body-2, .body-3 {
  background-color: var(--main-color);
}

.collection-list-wrapper {
  display: none;
}

.small-box {
  border: 1px solid var(--white);
  width: 100%;
  padding: 0;
}

.large-text {
  height: 89px;
  margin-top: 20px;
  font-size: 17px;
}

.quick-stack {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  padding: 0;
}

.div-block-2 {
  height: 259px;
  padding: 20px 18px 18px;
}

.div-block-2.large_box {
  border-top: 1px solid #fff;
}

.cell {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.link-block {
  text-decoration: underline;
}

.grid {
  grid-template-areas: ".";
  grid-auto-flow: row;
  display: block;
}

.flex-block {
  padding-top: 20px;
  padding-bottom: 20px;
}

.link-block-2, .link-block-3 {
  width: 50%;
}

.cell-2, .cell-3, .cell-4, .cell-5 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.quick-stack-2 {
  padding: 0;
}

.cell-6, .cell-7, .cell-8, .cell-9, .cell-10 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.heading {
  margin-bottom: 20px;
}

.sidebar-layout-copy {
  grid-column-gap: 35px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr;
  align-items: start;
  width: 100%;
}

.text-span-9-copy {
  font-size: 64px;
}

.text-span-10-copy {
  font-size: 64px;
  position: relative;
  top: 20px;
}

.text-span-12-copy {
  font-size: 64px;
}

.div-block-3 {
  justify-content: space-between;
  display: flex;
}

.large-text-copy {
  text-align: left;
  width: 100px;
  font-size: 30px;
  line-height: 1.3em;
  display: block;
}

.large-text-copy {
  text-align: center;
  width: 100%;
  line-height: 1.3em;
}

.large-text-copy {
  line-height: 1.3em;
}

.large-text-copy.full_left {
  width: 100%;
  display: flex;
}

.large-text-copy.full_left-copy {
  width: 100%;
  font-size: 30px;
  display: flex;
}

.link-block-4 {
  text-decoration: underline;
}

.image-3 {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  width: 20px;
  height: 20px;
}

.div-block-4 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.text-block-8 {
  opacity: 0;
}

.filter_box {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  grid-template-rows: auto;
  grid-template-columns: 100px minmax(100px, 100px) 130px;
  grid-auto-columns: 1fr;
  display: none;
}

.fund_one {
  display: none;
  overflow: hidden;
}

.large-link-block-subtitle-wrapper-copy {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 10%;
}

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

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

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

.fs_accordion-1_content {
  overflow: hidden;
}

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

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

.fs_accordion-1_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  background-color: #f5f5f500;
  border: 0 solid #fff;
  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_item {
  border-bottom: 1px solid #fff;
}

.fs_accordion-1_item.nobr {
  border-bottom-width: 0;
}

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

.fs_accordion-1_component {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 1px solid #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.combine-space-medium {
  width: 100%;
  height: .5rem;
}

.combine-text-size-regular {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding: 20px;
  font-family: Uncut Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.combine-faq1_answer {
  padding: 0;
  overflow: hidden;
}

.combine-faq1_title {
  color: var(--white);
  text-transform: uppercase;
  font-family: Uncut Sans, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
}

.combine-icon_small {
  color: var(--orange);
  -webkit-text-stroke-color: var(--orange);
  cursor: pointer;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.combine-icon_color4 {
  color: var(--combine-library--grey-600);
}

.combine-faq1_expander {
  justify-content: space-between;
  display: flex;
}

.combine-faq1_question {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.combine-faq1_accordion {
  border-bottom: 1px solid var(--combine-library--grey-100);
}

.combine-faq1_component {
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

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

.combine-space-large {
  height: 4rem;
}

.combine-heading-style-h2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Uncut Sans, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.35;
}

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

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

.combine-padding-section-medium {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 36px;
}

.combine-padding-global {
  padding-left: 0;
  padding-right: 0;
}

.combine-section_faq1 {
  background-color: var(--main-color);
}

.div-block-5 {
  border: 1px solid #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.combine-text-size-regular-copy {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding: 0 20px;
  font-family: Uncut Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.text-span-15 {
  color: #fff;
  font-style: normal;
  text-decoration: underline;
}

.text-span-16 {
  color: #fff;
  text-decoration: underline;
}

.text-span-17 {
  color: #df6336;
}

.text-span-18, .text-span-19, .text-span-20, .text-span-21, .text-span-22, .text-span-23 {
  color: #fff;
  text-decoration: underline;
}

.text-block-9, .text-block-10, .text-block-11, .text-block-12, .text-block-13 {
  color: var(--orange);
}

.image-4 {
  filter: grayscale();
  object-fit: cover;
  border-radius: 50px;
  width: 80px;
  max-width: 80px;
  height: 80px;
}

.image-4._12as {
  mix-blend-mode: luminosity;
}

.logos-container2 {
  margin-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: static;
}

.logos-row2 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex: none;
  align-items: center;
  padding-left: 3rem;
  display: flex;
}

.logos-gradient {
  background-image: linear-gradient(90deg, var(--main-color), #0e0c1500);
  width: 5rem;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.logos-gradient.is-inverted {
  inset: 0% 0% 0% auto;
  transform: rotate(180deg);
}

.test_img {
  object-fit: contain;
  object-position: 0% 50%;
  width: 100px;
  height: 28px;
}

.test_img._54 {
  height: 22px;
}

.test_img._54.size {
  height: 20px;
}

.test_img._23 {
  position: relative;
  left: -3px;
}

.test_img._12322 {
  height: 25px;
}

.image-5 {
  opacity: 1;
  width: 30px;
  position: relative;
  left: 0;
}

.bold-text, .bold-text-2, .bold-text-3, .bold-text-4, .bold-text-5 {
  color: var(--white);
}

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

.text-block-15, .text-block-16, .text-block-17 {
  color: var(--white);
}

.text-span-24 {
  z-index: 999;
  background-color: var(--main-color);
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.text-span-24.port {
  float: left;
}

.fund_two {
  display: none;
  overflow: hidden;
}

.text-block-22, .text-block-23 {
  text-align: center;
  border-right: 2px solid #ebebeb66;
}

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

.body-4, .body-5 {
  background-color: var(--main-color);
}

.breadcrumbs-copy {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  align-items: flex-start;
  display: flex;
}

.lined-image-copy {
  width: 100%;
  height: 360px;
  position: relative;
  overflow: hidden;
}

.lined-image-copy.in_news {
  height: 430px;
}

.lined-image-copy.max {
  height: 100%;
}

.lined-image-copy.display-heading_small {
  height: 70px;
}

.lined-image-copy.display-heading_small.port {
  margin-top: 20px;
  margin-bottom: 0;
}

.container---m-copy {
  align-self: flex-end;
  width: 100%;
  max-width: 585px;
  margin-bottom: 40px;
}

.container---m-copy.align-bottom {
  align-self: flex-end;
  max-width: 100%;
}

.container---m-copy.terms {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.container---m-copy.footer-container {
  max-width: 245px;
}

.multiply-image-copy {
  aspect-ratio: auto;
  mix-blend-mode: normal;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.multiply-image-copy.big_img {
  opacity: 1;
  mix-blend-mode: darken;
  height: auto;
}

.multiply-image-copy.in_nes {
  mix-blend-mode: darken;
}

.div-block-6 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.portfolio-wrapper {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  display: flex;
}

.text-block-25 {
  font-weight: 500;
}

.flex-block-2 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  padding-top: 18px;
}

.button-copy {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--dark);
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding-left: 23px;
  padding-right: 23px;
  transition: color .2s, background-color .2s, border-color .2s;
  display: block;
}

.button-copy:hover {
  color: var(--white);
  background-color: #0000;
}

.button-copy.small {
  height: 33px;
  padding-left: 17px;
  padding-right: 17px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.button-copy.bordered {
  pointer-events: auto;
  color: var(--white);
  background-color: #0000;
  flex: 0 auto;
  align-self: auto;
  width: 100%;
  display: flex;
}

.button-copy.bordered:hover {
  background-color: var(--white);
  color: var(--dark);
}

.text-block-26 {
  width: 487px;
}

@media screen and (min-width: 1280px) {
  .navbar-row {
    background-color: var(--main-color);
  }

  .container---m.footer-container {
    max-width: 90px;
  }

  .footer-menus {
    grid-template-columns: 1fr;
  }

  .hover-link.muted {
    margin-bottom: 5px;
  }

  .container---s {
    max-width: 44%;
  }

  .container---s.news {
    max-width: 350px;
  }

  .table-row._44 {
    grid-column-gap: 7px;
    grid-row-gap: 35px;
    grid-template-columns: .25fr;
    display: flex;
  }

  .team-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .small-details-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .blog-item-text {
    justify-content: flex-start;
    align-items: stretch;
  }

  .link-block-title-wrapper.new_h {
    height: 90px;
  }

  .sidebar-layout-copy {
    grid-column-gap: 5px;
    grid-template-columns: .25fr 1fr;
  }

  .filter_box {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    grid-template-rows: auto;
    grid-template-columns: 100px minmax(100px, 100px) 130px;
    grid-auto-columns: 1fr;
    width: 46%;
    display: none;
  }

  .image-5 {
    width: 20px;
  }

  .text-block-15, .text-block-16, .text-block-17, .text-span-25 {
    color: var(--white);
  }

  .text-block-19 {
    font-size: 19px;
  }

  .text-span-26 {
    font-weight: 500;
  }

  .text-block-20 {
    padding-right: 10px;
  }

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

  .text-block-21.bg {
    text-decoration: underline;
  }

  .text-block-22, .text-block-23 {
    text-align: center;
    border-right: 2px solid #ebebeb66;
  }

  .text-block-24 {
    text-align: center;
    border-right: 0 solid #ebebeb66;
  }

  .lined-image-copy {
    height: 388px;
  }

  .container---m-copy.footer-container {
    max-width: 90px;
  }

  .multiply-image-copy {
    object-fit: contain;
  }
}

@media screen and (max-width: 991px) {
  .template-utility-section {
    grid-row-gap: 56px;
    grid-template-columns: 1fr;
  }

  .menu-button {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    display: block;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .navbar {
    height: 280px;
  }

  .navbar-row {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .rows.gap-3.hero {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .nav-menu {
    padding-right: 20px;
  }

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

  .curve-pattern {
    width: 100%;
  }

  .curve-pattern.hug-right {
    order: -1;
    align-self: flex-end;
  }

  .curve-pattern-circle {
    border-bottom-left-radius: 248px;
  }

  .curve-pattern-circle.cover-bottom-left {
    border-top-right-radius: 248px;
  }

  .container---m {
    order: -1;
  }

  .container---m.align-bottom {
    max-width: 100%;
  }

  .container---m.footer-container {
    order: 0;
  }

  .navbar-logo-link {
    display: flex;
  }

  .navbar-logo-wrapper {
    flex-wrap: wrap;
  }

  .navbar-logo-image {
    max-height: 72px;
    display: block;
  }

  .container---s {
    order: -1;
    max-width: 80%;
  }

  .block-link-columns {
    flex-direction: column;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    display: flex;
  }

  .table-row._44 {
    grid-template-columns: .25fr .25fr .25fr .25fr .25fr;
  }

  .metrics-grid {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-direction: column;
    align-items: stretch;
  }

  .metric.second {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .metric.third {
    margin-top: 0;
  }

  .portfolio-grid, .portfolio-layout, .sidebar-layout {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: stretch;
  }

  .team-member.show_hide {
    display: none;
  }

  .blog-item {
    flex-direction: column-reverse;
    display: flex;
  }

  .blog-title-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-layout {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: center;
    display: flex;
  }

  .curve-pattern-line-wrapper {
    width: 100%;
  }

  .apply_model {
    width: 90%;
  }

  .sidebar-layout-copy {
    grid-template-columns: 1fr;
  }

  .filter_box {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 80px minmax(100px, .3fr) minmax(130px, 130px) .25fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .combine-heading-style-h2 {
    font-size: 2.5rem;
  }

  .combine-padding-global {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-9, .text-block-10, .text-block-11, .text-block-12, .text-block-13 {
    font-size: 13px;
  }

  .heading-2 {
    margin-bottom: 20px;
  }

  .text-span-24.port {
    float: none;
  }

  .container---m-copy {
    order: -1;
  }

  .container---m-copy.align-bottom {
    max-width: 100%;
  }

  .container---m-copy.footer-container {
    order: 0;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  .display-heading_small {
    font-size: 48px;
  }

  .display-heading_small.portfolio-link-title, .navbar {
    height: auto;
  }

  .navbar-row {
    margin-bottom: 0;
  }

  .rows.gap-4 {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .rows.gap-3.hero {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
  }

  .nav-menu {
    background-color: var(--main-color);
    padding-bottom: 24px;
  }

  .nav-link-wrapper {
    align-items: center;
    min-height: 72px;
  }

  .container---m.footer-container {
    max-width: 100%;
  }

  .large-heading {
    font-size: 40px;
  }

  .medium-heading {
    font-size: 30px;
  }

  .navbar-logo-link {
    justify-content: flex-start;
    display: flex;
  }

  .navbar-logo-wrapper {
    display: none;
  }

  .navbar-logo-image {
    max-height: 42px;
  }

  .nav-menu-mobile-logo {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .nav-links {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border-bottom: 1px solid var(--white);
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-content: start center;
    justify-items: center;
    display: grid;
  }

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

  .container---xs.footer-left-column, .container---s {
    max-width: 100%;
  }

  .large-block-link {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    min-height: 360px;
  }

  .table-row {
    grid-column-gap: 20px;
    grid-row-gap: 12px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .table-row.hp {
    grid-template-rows: auto auto;
    grid-template-columns: 50% 50%;
  }

  .table-row._44 {
    grid-template-columns: .25fr .25fr .25fr .25fr;
  }

  .circular-text-block {
    border-radius: 25%;
    width: auto;
    height: auto;
    padding: 72px;
  }

  .metric {
    min-height: 240px;
    padding: 24px;
  }

  .team-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .blog-item-text {
    width: 100%;
  }

  .are_appo, .are_appo_2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    min-height: 360px;
  }

  .filter_box {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: minmax(80px, 80px) minmax(80px, 80px) minmax(120px, 120px) .25fr;
    grid-auto-columns: 1fr;
    display: none;
  }

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

  .combine-padding-global {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-2 {
    margin-bottom: 20px;
  }

  .container---m-copy.footer-container {
    max-width: 100%;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
    line-height: 1.3em;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 14px;
  }

  .section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .container---main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .template-utility-section {
    grid-row-gap: 35px;
  }

  .style-guide-colors {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
  }

  .style-guide-section-contents {
    grid-row-gap: 21px;
  }

  .large-text {
    font-size: 16px;
    line-height: 1.4em;
  }

  .small-text.portfolio-link-industry {
    align-self: flex-start;
  }

  .button, .form-input {
    height: 48px;
  }

  .announcement-cross {
    width: 24px;
    height: 24px;
  }

  .display-heading_small {
    font-size: 42px;
  }

  .display-heading_small.initial {
    font-size: 31px;
  }

  .menu-button-wrapper {
    height: 36px;
  }

  .navbar-row {
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .typography-license-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .typography-demo {
    font-size: 72px;
  }

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

  .rows.gap-0-75 {
    margin-bottom: 10px;
  }

  .rows.gap-3 {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
  }

  .rows.gap-3.hero, .rows.gap-1-5 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .rows.gap-2 {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
  }

  .nav-menu {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    background-color: var(--main-color);
    flex-direction: column;
  }

  .nav-link-wrapper {
    align-items: center;
    min-height: 48px;
  }

  .curve-pattern {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    height: 192px;
    margin-bottom: -6px;
  }

  .line.title_line {
    top: 12px;
  }

  .curve-pattern-circle {
    border-bottom-left-radius: 192px;
  }

  .curve-pattern-circle.cover-bottom-left {
    border-top-right-radius: 192px;
  }

  .large-heading {
    font-size: 19px;
  }

  .medium-heading {
    font-size: 22px;
    line-height: 1.3em;
  }

  .navbar-logo-link {
    max-height: 42px;
  }

  .navbar-logo-image {
    max-height: 30px;
  }

  .curved-pattern-section {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
  }

  .nav-links {
    grid-template-columns: 1fr;
    justify-content: center;
    align-self: center;
    justify-items: center;
    padding-bottom: 20px;
  }

  .footer-columns {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-direction: column;
  }

  .footer-menus {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .hover-link.muted {
    font-size: 11px;
  }

  .container---s {
    max-width: 100%;
  }

  .lined-image {
    height: auto;
  }

  .line-container {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
  }

  .multiply-image {
    object-fit: contain;
  }

  .large-block-link {
    min-height: 270px;
    padding: 24px 18px;
  }

  .block-link-columns {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .table-row {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: auto auto auto;
    grid-template-columns: minmax(50%, .3fr) minmax(50%, .3fr);
  }

  .table-row.fund_2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: minmax(50%, .3fr) minmax(50%, .3fr);
    grid-auto-flow: column;
  }

  .table-row.fund_1 {
    grid-template-rows: auto auto auto;
  }

  .table-row.fund_2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: minmax(50%, .3fr) minmax(50%, .3fr);
  }

  .table-row.hp {
    grid-template-rows: auto auto;
    grid-template-columns: minmax(48%, .3fr) minmax(48%, .25fr);
  }

  .table-row._2343 {
    grid-template-rows: auto auto auto;
  }

  .table-row._44 {
    grid-template-rows: auto auto;
    grid-template-columns: minmax(50%, .3fr) minmax(50%, .3fr) 1fr;
  }

  .circular-text-section {
    overflow: hidden;
  }

  .circular-text-block {
    padding: 36px 24px;
  }

  .metrics-grid {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

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

  .portfolio-image {
    border-bottom: 1px solid #000;
  }

  .portfolio-link-top-contents {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    border-top: 1px solid var(--white);
    border-bottom-style: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 0;
    padding-right: 18px;
    position: relative;
  }

  .vertical-rule {
    display: none;
  }

  .portfolio-link-bottom-contents {
    padding: 18px;
    position: relative;
  }

  .portfolio-meta {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    display: flex;
  }

  .team-grid {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
    grid-template-columns: minmax(48%, 1fr) minmax(48%, 1fr);
  }

  .text-muted {
    font-size: 12px;
  }

  .small-details-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .blog-item {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .blog-item-text {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    width: 100%;
  }

  .subscribe-form {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-direction: column;
    display: flex;
  }

  .search-form {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-direction: column;
  }

  .link-block-title-wrapper.new_h.inmob2 {
    height: 29px;
  }

  .link-block-title-wrapper.br3b.inmob1 {
    height: 67px;
  }

  .link-block-title-wrapper.br3b.inmob2 {
    height: 38px;
  }

  .are_appo, .are_appo_2 {
    min-height: 270px;
    padding: 24px 18px;
  }

  .image {
    max-width: 50%;
  }

  .text-span-7.br3t, .text-span-8.br3t, .text-span-11.br3t {
    font-size: 33px;
  }

  .apply_model {
    width: 100%;
    transform: translate(100%);
  }

  .image-2 {
    width: 35px;
    height: 35px;
    margin-top: 10px;
    margin-right: 10px;
    padding: 0;
  }

  .cell-6 {
    display: flex;
  }

  .text-span-9-copy.br3t, .text-span-10-copy {
    font-size: 33px;
  }

  .text-span-10-copy._12 {
    top: 0;
  }

  .text-span-12-copy {
    font-size: 33px;
  }

  .large-text-copy {
    font-size: 16px;
    line-height: 1.4em;
  }

  .div-block-4 {
    color: var(--orange);
  }

  .filter_box {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
    grid-template-rows: auto;
    grid-template-columns: minmax(80px, 80px) minmax(80px, 80px) minmax(100px, 100px);
    grid-auto-columns: 1fr;
    display: none;
  }

  .combine-text-size-regular {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }

  .combine-faq1_title {
    text-align: center;
    font-size: 16px;
  }

  .combine-icon_small {
    width: 15px;
    height: 15px;
  }

  .combine-heading-style-h2 {
    font-size: 26px;
  }

  .combine-padding-section-medium {
    padding-left: 0;
    padding-right: 0;
  }

  .combine-padding-global {
    padding-left: 18px;
    padding-right: 18px;
  }

  .div-block-5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .combine-text-size-regular-copy {
    font-size: 14px;
  }

  .heading-2 {
    margin-bottom: 20px;
  }

  .image-5 {
    width: 19px;
  }

  .text-block-18 {
    font-size: 13px;
  }

  .lined-image-copy {
    height: auto;
  }

  .multiply-image-copy {
    object-fit: contain;
  }

  .button-copy {
    height: 48px;
  }
}

#w-node-a3c1a7e9-80a4-9b14-4179-85184590052b-2619a854, #w-node-_7f1838fc-f9a6-b12d-ca3d-e2298c8fc9a9-2619a854, #w-node-f4a2c1c5-7d9e-2e5f-771f-9d7da728403c-2619a854, #w-node-_73cc016e-e004-08c0-f298-eb4e5d7c15ce-2619a854, #w-node-_03816f17-a0c6-ce64-88d5-4ec18252c617-2619a854, #w-node-_51b0757f-8efa-383a-b238-a45a4ff87ded-2619a854, #w-node-_51b0757f-8efa-383a-b238-a45a4ff87df3-2619a854, #w-node-de89e599-446d-beab-4c0d-0aa1e5d4874f-2619a854, #w-node-de89e599-446d-beab-4c0d-0aa1e5d48755-2619a854, #w-node-_39375925-76dc-4091-dc5b-a3ae618a7ab9-2619a854, #w-node-_39375925-76dc-4091-dc5b-a3ae618a7abf-2619a854, #w-node-_68b0c4e3-9339-e706-4c62-100bdc08a585-55b37658, #w-node-f83fe751-51b6-0303-951a-a0213dc71ac0-55b37658, #w-node-_7826e120-27ff-ada6-62ba-fdbc266c517a-266c516c, #w-node-_7826e120-27ff-ada6-62ba-fdbc266c5188-266c516c, #w-node-_7826e120-27ff-ada6-62ba-fdbc266c5196-266c516c, #w-node-_7826e120-27ff-ada6-62ba-fdbc266c51a4-266c516c, #w-node-fc5278ec-fe10-6c8c-d6a9-63422b15c501-2619a859, #w-node-f6279253-4e33-3ad6-c325-0eeb3152a97f-2619a859, #w-node-_564bd1a0-20f0-85c4-5744-0d88aa29f434-2619a859, #w-node-_2a5bd304-805f-6b3a-0e87-615aaf5ed1bd-2619a859, #w-node-b6653556-4877-98ec-4dc3-df0cd72c6644-2619a859, #w-node-_50dc3a09-51d9-20e1-73a9-1b9516f6c9da-2619a859, #w-node-_1d7e68d5-20e8-12cd-0a77-a1b53133afab-2619a859 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1d7e68d5-20e8-12cd-0a77-a1b53133afad-2619a859 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_12568117-fa63-7dc0-841f-f016b01ade10-2619a859, #w-node-fe9191a1-d883-43cc-c676-8583e11f783f-2619a859, #w-node-fe9191a1-d883-43cc-c676-8583e11f7841-2619a859, #w-node-fe9191a1-d883-43cc-c676-8583e11f7843-2619a859, #w-node-fe9191a1-d883-43cc-c676-8583e11f7847-2619a859, #w-node-fe9191a1-d883-43cc-c676-8583e11f7849-2619a859, #w-node-fe9191a1-d883-43cc-c676-8583e11f784b-2619a859, #w-node-fe9191a1-d883-43cc-c676-8583e11f784f-2619a859, #w-node-fe9191a1-d883-43cc-c676-8583e11f7851-2619a859, #w-node-fe9191a1-d883-43cc-c676-8583e11f7853-2619a859, #w-node-daf28d00-4f40-68f6-43b7-517fc04081e7-2619a859, #w-node-daf28d00-4f40-68f6-43b7-517fc04081e9-2619a859, #w-node-daf28d00-4f40-68f6-43b7-517fc04081eb-2619a859, #w-node-_0b5f6ea8-458a-31ef-7ef3-b30fd87bc0e4-2619a85c, #w-node-_397081fa-d9d9-3912-3471-97d7082767f5-2619a85c, #w-node-baad27a8-6043-7413-ddf1-0e57a0e9bf61-2619a85c, #w-node-_6d1d7b97-52ee-1d90-ca3a-4593956e8837-2619a85c, #w-node-_64e92c71-68df-f498-9195-9588e3f1f383-2619a85c, #w-node-_8e64d6ee-3d4b-5bc5-76d5-8d7e10fdf13a-2619a85d, #w-node-f52c747b-faf3-7130-b687-8129ef9ee7c4-2619a85d, #w-node-b04ecea5-7397-3edd-2513-27cc10cce007-2619a864, #w-node-b04ecea5-7397-3edd-2513-27cc10cce008-2619a864, #w-node-b04ecea5-7397-3edd-2513-27cc10cce009-2619a864, #w-node-b04ecea5-7397-3edd-2513-27cc10cce00c-2619a864, #w-node-b04ecea5-7397-3edd-2513-27cc10cce00f-2619a864, #w-node-_47d35af6-69fd-6bb8-107e-2e9dad88894f-2619a866, #w-node-_47d35af6-69fd-6bb8-107e-2e9dad888956-2619a866, #w-node-_47d35af6-69fd-6bb8-107e-2e9dad88895d-2619a866, #w-node-_2616000c-9d0a-6525-20bb-73cccf45e118-2619a867 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9b2f9b60-9afd-84ed-f6e7-7d2cd9580f94-2619a867 {
  order: 1;
}

#w-node-_217e3778-1c32-e827-59db-a4829dfa2597-2619a867 {
  order: 1;
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-acbbf866-6206-171b-c8fc-2c4f9011d40c-2619a867 {
  order: 9999;
}

#w-node-_63a363c8-adae-e194-c951-f24b1e91a1bc-2619a867, #w-node-_63a363c8-adae-e194-c951-f24b1e91a1bd-2619a867, #w-node-_63a363c8-adae-e194-c951-f24b1e91a1be-2619a867, #w-node-_63a363c8-adae-e194-c951-f24b1e91a1c1-2619a867, #w-node-_63a363c8-adae-e194-c951-f24b1e91a1c4-2619a867 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bc8188af-70a8-c1b0-9cab-4db2e2051624-2619a869 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_740b534d-622f-87d0-f7ca-957a327711d1-2619a86b, #w-node-_8710fd84-ccfe-090c-3ce9-1d5dc594b23f-2619a86b, #w-node-_99e2d332-2940-bcfa-1e3c-70538e7b4c80-2619a86b, #w-node-_305f1c19-c1a8-ca90-3236-7902541f11a1-2619a86b, #w-node-_292bf87d-120f-879e-2f48-8195510bc8e2-2619a86b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#portfolio_grid.w-node-a76b498e-cec3-221c-528a-73b25dbed4ec-2619a86c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-d3e39a6c-fb3f-c9ce-db8c-108f450a1b0a-2619a86c, #w-node-f99e5f6d-051e-3ea3-840f-645004985c31-2619a86c, #w-node-_4858cf28-8770-f37b-94bb-3f221b915734-2619a86c, #w-node-_67969350-349c-7ba1-00e4-30023ef1dcef-2619a86c, #w-node-_43b87d2d-c2aa-9999-0415-56ebb4732f01-2619a86c, #w-node-_1c80b022-38df-6f7c-8d66-53c34972d499-2619a86c, #w-node-_3322a515-bb83-0405-dc37-1939e9800d0c-2619a86c, #w-node-e410619b-41f0-cce2-892e-d073e76fd16b-2619a86c, #w-node-_67904ee2-1ced-1cfc-d130-624f36903c58-2619a86c, #w-node-e3295686-7abe-7232-f13d-ec97a0591a58-2619a86c, #w-node-be9ff4c3-1e29-4db8-d487-f40c6b2e01c7-2619a86c, #w-node-_5b1c048a-d95f-f12c-60c4-c449f579a894-2619a86c, #w-node-_5b1c048a-d95f-f12c-60c4-c449f579a898-2619a86c, #w-node-fb13c2f0-9f46-76f7-798d-a3230b5876ea-2619a86c, #w-node-_14ad5213-b294-5bdd-7421-0c22e83b5923-2619a86c, #w-node-d8976cfe-0364-634d-79e1-c64bb419c49d-2619a86c, #w-node-_4d4c2ab9-c820-9a30-3c2c-36d07353f79a-2619a86c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_50898f1e-30f5-22c2-7c50-8cab48a42d4f-2619a896, #w-node-_6ff55292-d3d9-a1d5-4a41-7c10c5c0c603-2619a896, #w-node-_92d0a255-3cee-cb39-b8e3-85f64ee1222c-2619a896, #w-node-beb45f57-ee6b-1472-4564-b43975a06909-2619a896 {
  justify-self: stretch;
}

@media screen and (min-width: 1280px) {
  #w-node-_4858cf28-8770-f37b-94bb-3f221b915734-2619a86c, #w-node-_67969350-349c-7ba1-00e4-30023ef1dcef-2619a86c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_217e3778-1c32-e827-59db-a4829dfa2597-2619a867 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_54e677b5-baed-21f7-dfe6-081db99fc329-2619a854 {
    order: 0;
  }

  #w-node-a3c1a7e9-80a4-9b14-4179-85184590052b-2619a854 {
    order: 2;
  }

  #w-node-_7f1838fc-f9a6-b12d-ca3d-e2298c8fc9a9-2619a854 {
    order: 1;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3322a515-bb83-0405-dc37-1939e9800d0c-2619a86c, #w-node-_5b1c048a-d95f-f12c-60c4-c449f579a894-2619a86c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a3c1a7e9-80a4-9b14-4179-85184590052b-2619a854 {
    order: 9999;
  }

  #w-node-_7f1838fc-f9a6-b12d-ca3d-e2298c8fc9a9-2619a854 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7baf4532-49db-bbab-12f1-c2e0e66f7fc0-824c25a7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #portfolio_grid.w-node-a76b498e-cec3-221c-528a-73b25dbed4ec-2619a86c {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  #w-node-_5b1c048a-d95f-f12c-60c4-c449f579a894-2619a86c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fb13c2f0-9f46-76f7-798d-a3230b5876ea-2619a86c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fleuron';
  src: url('../fonts/fleuronregular-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Uncut Sans';
  src: url('../fonts/Uncut-Sans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Uncut Sans';
  src: url('../fonts/Uncut-Sans-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'Uncut Sans';
  src: url('../fonts/Uncut-Sans-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'Uncut Sans';
  src: url('../fonts/Uncut-Sans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}