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

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

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 {
  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 {
  font-size: 22px;
  line-height: 1.3em;
}

.small-text {
  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: flex;
}

.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 {
  color: var(--white);
  background-color: #0000;
}

.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;
  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(--dark);
  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: flex;
  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 {
  text-transform: uppercase;
  font-family: Fleuron, sans-serif;
  font-size: 64px;
  line-height: 1em;
}

.display-heading.portfolio-link-title {
  flex: 1;
  height: 58px;
}

.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 {
  background-color: #0000;
  height: 347px;
}

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

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

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

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

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

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

.nav-link {
  color: var(--white);
  margin-left: 0;
  margin-right: 0;
  padding: 8px 0;
  transition: all .3s ease;
  display: block;
  position: relative;
  font-weight: 400;
}

.nav-link:hover {
  opacity: .7;
  transform: translateY(-1px);
}

.nav-link.w--current {
  color: var(--white);
  font-weight: 500;
}

.nav-link.w--current::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transform: scaleX(1);
  transition: transform .3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.breadcrumbs {
  align-items: center;
  display: flex;
}

.justify-between {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  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);
}

.curve-pattern-circle {
  z-index: 1;
  background-color: var(--dark);
  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 {
  width: 100%;
  max-width: 696px;
}

.container---m.align-bottom {
  align-self: flex-end;
}

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

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

.large-heading.metric-number {
  text-align: center;
  width: 100%;
}

.medium-heading {
  font-size: 34px;
  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 {
  flex: 0 1 auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  gap: 32px;
}

.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, .hover-link.muted {
  opacity: .5;
}

.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: 452px;
}

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

.lined-image {
  position: relative;
  overflow: hidden;
}

.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 {
  mix-blend-mode: multiply;
  width: 100%;
  display: block;
}

.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;
  display: flex;
}

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

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

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

.circular-text-block {
  z-index: 1;
  background-color: var(--dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 668px;
  height: 668px;
  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;
  display: flex;
}

.metric {
  border: 1px solid var(--white);
  background-color: var(--dark);
  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: .4;
  width: 100%;
  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;
  align-items: start;
  margin-bottom: 48px;
}

.team-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  margin-bottom: 48px;
}

.team-member {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.team-member:last-child {
  margin-bottom: 0;
}

.team-member img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  margin-bottom: 24px;
}

.team-member img:hover {
  transform: scale(1.05);
  border-color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.grayscale-image {
  filter: grayscale();
  transition: filter 0.3s ease;
}

.team-member:hover .grayscale-image {
  filter: grayscale(0%);
}

.text-muted {
  opacity: .5;
}

.small-details-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  justify-items: start;
}

.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: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
}

.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: space-between;
  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;
}

.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: 64px;
  overflow: hidden;
}

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

.subtitle-wrapper-line {
  background-color: var(--white);
  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;
}

/* Newsletter success message styling */
.form-success, .form-error {
  color: #10B981;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-success:hover, .form-error:hover {
  background-color: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}


@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;
    padding: 16px 0;
  }

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

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

  .mobile-logo-icon {
    height: 50px;
  }

  .mobile-logo-text {
    max-height: 36px;
    margin-left: -6px;
  }

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

  .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-image {
    max-height: 72px;
    display: block;
  }

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

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

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

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

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

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

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

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

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

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

  /* Mobile navigation improvements */
  .navbar-row {
    padding: 12px 0;
  }

  .nav-menu-mobile-logo {
    flex: 1;
    justify-content: flex-start;
  }

  .menu-button {
    margin-left: auto;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }

  .menu-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Mobile logo sizing for 767px and below */
  .mobile-logo-icon {
    height: 40px;
  }

  .mobile-logo-text {
    max-height: 26px;
    margin-left: -4px;
  }

  /* Mobile optimization for team grid */
  .team-grid {
    grid-template-columns: 1fr;
    grid-row-gap: 48px;
    align-items: center;
    margin-bottom: 48px;
  }

  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin-bottom: 48px;
  }

  .team-member:last-child {
    margin-bottom: 0;
  }

  .team-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--border);
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
  }

  .team-member img:hover {
    transform: scale(1.05);
    border-color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }

  /* Mobile optimization for table layouts */
  .table-row {
    grid-template-columns: 1fr;
    grid-row-gap: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
  }

  .table-cell:first-child {
    font-weight: bold;
    font-size: 18px;
    color: var(--white);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .table-cell:nth-child(2) {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .table-cell:last-child {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
  }

  /* Mobile optimization for content sections */
  .sidebar-layout {
    grid-row-gap: 48px;
  }

  .container---m {
    padding: 0 16px;
  }

  .large-text {
    font-size: 18px;
    line-height: 1.6;
  }

  /* Mobile optimization for links and buttons */
  .hover-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .hover-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }

  /* Mobile optimization for navigation */
  .nav-menu {
    background-color: var(--dark);
    padding-bottom: 24px;
  }

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

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .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 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

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

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

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

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

  /* Mobile optimization for back to top button */
  .back-to-top-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .back-to-top-button:hover {
    background-color: rgba(0, 0, 0, 1);
    transform: translateY(-2px);
  }

  .back-to-top-button img {
    width: 24px;
    height: 24px;
  }
}

@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: 20px;
  }

  /* Extra small mobile optimization */
  .team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--border);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
  }

  .team-member img:hover {
    transform: scale(1.05);
    border-color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }

  .table-row {
    padding: 16px;
    margin-bottom: 12px;
  }

  .table-cell:first-child {
    font-size: 16px;
  }

  .table-cell:nth-child(2) {
    font-size: 15px;
  }

  .table-cell:last-child {
    font-size: 13px;
  }

  .container---m {
    padding: 0 12px;
  }

  .large-text {
    font-size: 16px;
  }

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

  .team-grid {
    grid-row-gap: 36px;
  }

  .sidebar-layout {
    grid-row-gap: 36px;
  }

  /* Extra small mobile specific improvements */
  .section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

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

  .nav-links {
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
  }

  .nav-link-wrapper {
    min-height: 56px;
  }

  .nav-link {
    min-height: 48px;
    padding: 8px 12px;
    font-size: 16px;
  }

  .hover-link {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .back-to-top-button {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }

  .back-to-top-button img {
    width: 20px;
    height: 20px;
  }

  /* Improve mobile table readability */
  .table-row {
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* Better mobile spacing for content */
  .rows.gap-0-75 {
    grid-row-gap: 16px;
  }

  .rows.gap-1 {
    grid-row-gap: 20px;
  }

  .rows.gap-1-5 {
    grid-row-gap: 24px;
  }

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

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

  /* Extra small mobile logo sizing */
  .mobile-logo-icon {
    height: 36px;
  }

  .mobile-logo-text {
    max-height: 24px;
    margin-left: -3px;
  }
}

#w-node-a3c1a7e9-80a4-9b14-4179-85184590052b-b2e5d5eb, #w-node-a45de1ce-b407-c59c-19ed-f583ab4c24f1-b2e5d5eb, #w-node-d3f2682d-bde7-1909-6432-36a91f426b45-b2e5d5eb, #w-node-_6bf87a75-7d7e-b8eb-cc3a-1b039be6acea-b2e5d5eb, #w-node-_6bf87a75-7d7e-b8eb-cc3a-1b039be6acec-b2e5d5eb, #w-node-_6bf87a75-7d7e-b8eb-cc3a-1b039be6acee-b2e5d5eb, #w-node-_31760318-9089-52b3-428c-17619c7b8557-b2e5d5eb, #w-node-_31760318-9089-52b3-428c-17619c7b8559-b2e5d5eb, #w-node-_31760318-9089-52b3-428c-17619c7b855b-b2e5d5eb, #w-node-_68b0c4e3-9339-e706-4c62-100bdc08a585-55b37658, #w-node-f83fe751-51b6-0303-951a-a0213dc71ac0-55b37658, #w-node-_0c4eb128-da3e-563f-7917-5d63c6c4e4dd-b2e5d5ec, #w-node-fc5278ec-fe10-6c8c-d6a9-63422b15c501-b2e5d5ec, #w-node-f6279253-4e33-3ad6-c325-0eeb3152a97f-b2e5d5ec, #w-node-_564bd1a0-20f0-85c4-5744-0d88aa29f434-b2e5d5ec, #w-node-_1d7e68d5-20e8-12cd-0a77-a1b53133afab-b2e5d5ec, #w-node-_1d7e68d5-20e8-12cd-0a77-a1b53133afad-b2e5d5ec, #w-node-_12568117-fa63-7dc0-841f-f016b01ade10-b2e5d5ec, #w-node-fe9191a1-d883-43cc-c676-8583e11f783f-b2e5d5ec, #w-node-fe9191a1-d883-43cc-c676-8583e11f7841-b2e5d5ec, #w-node-fe9191a1-d883-43cc-c676-8583e11f7843-b2e5d5ec, #w-node-fe9191a1-d883-43cc-c676-8583e11f7847-b2e5d5ec, #w-node-fe9191a1-d883-43cc-c676-8583e11f7849-b2e5d5ec, #w-node-fe9191a1-d883-43cc-c676-8583e11f784b-b2e5d5ec, #w-node-fe9191a1-d883-43cc-c676-8583e11f784f-b2e5d5ec, #w-node-fe9191a1-d883-43cc-c676-8583e11f7851-b2e5d5ec, #w-node-fe9191a1-d883-43cc-c676-8583e11f7853-b2e5d5ec, #w-node-daf28d00-4f40-68f6-43b7-517fc04081e7-b2e5d5ec, #w-node-daf28d00-4f40-68f6-43b7-517fc04081e9-b2e5d5ec, #w-node-daf28d00-4f40-68f6-43b7-517fc04081eb-b2e5d5ec, #w-node-_0b5f6ea8-458a-31ef-7ef3-b30fd87bc0e4-b2e5d5ee, #w-node-_397081fa-d9d9-3912-3471-97d7082767f5-b2e5d5ee, #w-node-_41cdcf2c-f197-3f8d-598f-377290f48c3b-b2e5d5ee, #w-node-_6d1d7b97-52ee-1d90-ca3a-4593956e8837-b2e5d5ee, #w-node-_64e92c71-68df-f498-9195-9588e3f1f383-b2e5d5ee, #w-node-_8e64d6ee-3d4b-5bc5-76d5-8d7e10fdf13a-b2e5d5ef, #w-node-f52c747b-faf3-7130-b687-8129ef9ee7c4-b2e5d5ef, #w-node-fda655db-1e3d-4e79-1a8a-91f4404308ad-b2e5d5f0, #w-node-fda655db-1e3d-4e79-1a8a-91f4404308af-b2e5d5f0, #w-node-_1e74d75a-df64-51c3-6248-c01ab89e5b76-b2e5d5f0, #w-node-_1e74d75a-df64-51c3-6248-c01ab89e5b78-b2e5d5f0, #w-node-_19e3bfc8-a9da-77f7-f1a3-b93161432647-b2e5d5f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0b28affe-8671-0aa5-3adf-1267dc4b98e0-b2e5d5f0 {
  justify-self: stretch;
}

#w-node-_4eae9431-86e5-5477-d022-37a0fd957d94-b2e5d5f0, #w-node-_14ad5213-b294-5bdd-7421-0c22e83b5923-b2e5d5f1, #w-node-d8976cfe-0364-634d-79e1-c64bb419c49d-b2e5d5f1, #w-node-_4d4c2ab9-c820-9a30-3c2c-36d07353f79a-b2e5d5f1, #w-node-b04ecea5-7397-3edd-2513-27cc10cce007-b2e5d5f2, #w-node-b04ecea5-7397-3edd-2513-27cc10cce008-b2e5d5f2, #w-node-b04ecea5-7397-3edd-2513-27cc10cce009-b2e5d5f2, #w-node-b04ecea5-7397-3edd-2513-27cc10cce00c-b2e5d5f2, #w-node-b04ecea5-7397-3edd-2513-27cc10cce00f-b2e5d5f2, #w-node-d8062c41-1b93-4bf9-facf-32d2a7b49187-b2e5d5f3, #w-node-_433a6409-86b9-9605-2a64-32a822d7eed4-b2e5d5f3, #w-node-d4ae11d7-6b24-0be1-3ca3-d6b85205b368-b2e5d5f3, #w-node-a71c2364-488b-f83c-6ef0-500d7db82643-b2e5d5f3, #w-node-afa6b797-fa35-f228-a4cb-47578ba39dc7-b2e5d5f3, #w-node-_2616000c-9d0a-6525-20bb-73cccf45e118-b2e5d5f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_217e3778-1c32-e827-59db-a4829dfa2597-b2e5d5f4 {
  grid-area: 1 / 2 / 2 / 3;
}

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

#w-node-bc8188af-70a8-c1b0-9cab-4db2e2051624-b2e5d5f5, #w-node-_229325f9-4dee-bbac-f5c0-15f0657fed07-b2e5d5f6 {
  grid-area: 1 / 2 / 2 / 3;
}

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

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

#w-node-_47d35af6-69fd-6bb8-107e-2e9dad88894f-b2e5d5fb, #w-node-_47d35af6-69fd-6bb8-107e-2e9dad888956-b2e5d5fb, #w-node-_47d35af6-69fd-6bb8-107e-2e9dad88895d-b2e5d5fb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_217e3778-1c32-e827-59db-a4829dfa2597-b2e5d5f4 {
    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;
}

/* Logo styling */
.navbar-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.desktop-logo-icon {
  height: 200px;
  background: transparent;
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.1);
}

.desktop-logo-text {
  margin-left: -25px;
  height: auto;
  max-height: 72px;
}

.mobile-logo-icon {
  height: 48px;
  background: transparent;
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.1);
}

.mobile-logo-text {
  height: auto;
  max-height: 32px;
  margin-left: -6px;
}

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

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

/* Hide duplicate reveal elements on mobile to prevent visual duplication */
@media screen and (max-width: 991px) {
  .display-heading.reveal {
    display: none;
  }
}

/* Mobile logo optimizations */
@media screen and (max-width: 991px) {
  .nav-menu-mobile-logo {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
  }

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

  .mobile-logo-icon {
    height: 44px;
  }

  .mobile-logo-text {
    max-height: 28px;
    margin-left: -5px;
  }

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

  .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-image {
    max-height: 72px;
    display: block;
  }

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

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

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

  .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;
    display: flex;
  }

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