/* ============================================
   WANG&CO — AKQA-INSPIRED NAVBAR
   ============================================ */

.wc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.wc-navbar.is-scrolled {
  border-bottom-color: #e8e8e8;
}

.wc-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding: 16px 80px;
  max-width: 1600px;
  margin: 0 auto;
}

.wc-navbar__logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111111;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.wc-navbar__logo:hover {
  opacity: 0.65;
}

.wc-navbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.wc-navbar__link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #757575;
  text-decoration: none;
  transition: color 0.55s ease;
  white-space: nowrap;
}

.wc-navbar__link:hover {
  color: #111111;
}

.wc-navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.wc-navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #111111;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.wc-navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.wc-navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.wc-navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.wc-navbar__mobile {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  padding: 24px 80px 32px;
  flex-direction: column;
  gap: 20px;
}

.wc-navbar__mobile:not([hidden]) {
  display: flex;
}

.wc-navbar__mobile-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.wc-navbar__mobile-link:hover {
  color: #757575;
}

body {
  padding-top: 88px;
}

@media (max-width: 767px) {
  .wc-navbar__inner {
    padding: 0 24px;
    height: auto;
  }

  .wc-navbar__nav {
    display: none;
  }

  .wc-navbar__hamburger {
    display: flex;
  }

  .wc-navbar__mobile {
    padding: 20px 24px 28px;
  }

  body {
    padding-top: 64px;
  }
}

/* ============================================
   WANG&CO — PORTFOLIO GRID
   ============================================ */

.wc-portfolio-section {
  background: #f8f7f5;
}

.wc-portfolio-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 80px 120px;
}

.wc-portfolio-header {
  margin-bottom: 64px;
}

.wc-portfolio-header .section-subheading {
  margin-bottom: 12px;
}

.wc-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}

.wc-portfolio-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.wc-portfolio-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8e6e2;
  margin-bottom: 24px;
}

.wc-portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.wc-portfolio-item:hover .wc-portfolio-img {
  transform: scale(1.04);
  opacity: 0.92;
}

.wc-portfolio-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wc-portfolio-meta {
  padding: 0px;
}

.wc-portfolio-client {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #757575;
  margin-bottom: 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

.wc-portfolio-item:hover .wc-portfolio-client {
  color: #111111;
}

.wc-portfolio-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #757575;
  margin: 0;
  transition: color 0.3s ease;
}

.wc-portfolio-item:hover .wc-portfolio-desc {
  color: #111;
}

@media (max-width: 900px) {
  .wc-portfolio-inner {
    padding: 72px 40px 88px;
  }

  .wc-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .wc-portfolio-inner {
    padding: 56px 24px 72px;
  }
}



:root {
  --background--default: #f0f0f0;
  --royal-blue: #5d76f4;
  --foreground--light--body: #ebebeb;
  --gainsboro-2: #e6e6e6;
  --background--dark: #010101;
  --primary: #0d0d0dcc;
  --stroke--dark--default: #1d1d1d;
  --transparent: #0000;
  --shadow: #5c8ef233;
  --shadow-1: #5c8ef233;
  --shadow-3: #5c8ef233;
}

.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-form-formrecaptcha {
  margin-bottom: 8px;
}

.w-users-userformpagewrap {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 340px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.w-users-userloginformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformheader {
  text-align: center;
}

.w-users-userformbutton {
  text-align: center;
  width: 100%;
}

.w-users-userformfooter {
  justify-content: space-between;
  margin-top: 12px;
  display: flex;
}

.w-users-userformerrorstate {
  margin-left: 20px;
  margin-right: 20px;
  position: absolute;
  top: 100%;
  left: 0%;
  right: 0%;
}

.w-users-usersignupformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformsuccessstate {
  display: none;
}

.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-users-usersignupverificationmessage {
  display: none;
}

.w-users-userresetpasswordformwrapper,
.w-users-userupdatepasswordformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-useraccountwrapper {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-users-blockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-users-blockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  margin-bottom: 20px;
  padding: 20px;
}

.w-users-useraccountformsavebutton {
  text-align: center;
  margin-right: 8px;
}

.w-users-useraccountformcancelbutton {
  text-align: center;
  color: #333;
  background-color: #d3d3d3;
}

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

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

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

body {
  background-color: var(--background--default);
  color: #333;
  cursor: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}

p {
  margin-bottom: 0;
}

label {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.preloader {
  z-index: 10000;
  background-color: #000;
  justify-content: center;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader-content {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  place-items: center stretch;
  width: 100%;
  max-width: 275px;
  display: grid;
}

.preloader-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
}

.preloader-indicator {
  width: 100%;
}

.indicator-wrapper {
  background-color: #889ea833;
  height: 3px;
  display: flex;
}

.indicator-fill {
  background-color: #ff6f44;
  width: 0%;
  height: 100%;
}

.nav-link {
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  display: flex;
}

.nav-link.w--current {
  color: #000;
}

.dropdown-link {
  color: #000;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid #889ea833;
  width: 100%;
  padding: 20px;
  font-size: 12px;
  text-decoration: none;
  position: relative;
}

.dropdown-link.bottom {
  border-bottom-style: none;
}

.dropdown {
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.lottie-animation {
  justify-content: center;
  align-items: center;
  width: 15px;
  margin-left: 6px;
  margin-right: -21px;
  display: flex;
}

.brand {
  color: #000;
  letter-spacing: -.03em;
  align-items: center;
  margin-right: auto;
  padding-left: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
  transition: all .3s;
  display: flex;
}

.brand:hover {
  transform: translate(3px, -3px);
}

.menu-items {
  justify-content: center;
  display: flex;
}

.social-dropdown-list.w--open {
  background-color: #0000;
  justify-content: center;
  width: 100%;
  padding-top: 30px;
  display: flex;
}

.navigation-wrapper {
  z-index: 10;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}

.hover-line {
  height: 1px;
  position: absolute;
  inset: auto 0% -1px;
  overflow: hidden;
}

.social-drop-wrapper {
  grid-column-gap: 6px;
  grid-row-gap: 16px;
  background-color: #fff;
  border: 1px #889ea833;
  border-radius: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  justify-items: center;
  padding: 6px;
  display: grid;
  position: relative;
  box-shadow: 0 12px 36px -8px #292b4e1f;
}

.outline-social-icon {
  border: 1px solid #889ea833;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 9px;
  display: flex;
}

.outline-social-icon.large {
  width: 34px;
  height: 34px;
}

.social-circle {
  cursor: pointer;
  border: 1px #889ea833;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  position: relative;
}

/* nav-button → primary alias */
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #111111;
  border: 1.5px solid #111111;
  border-radius: 0;
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}

.nav-button:hover {
  background-color: #333;
  border-color: #333;
}

.dropdown-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  background-color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 250px;
  min-width: 250px;
  display: grid;
  position: relative;
  box-shadow: 0 12px 36px -8px #292b4e1f;
}

.button-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 500;
}

.navbar {
  background-color: #fff0;
  justify-content: center;
  height: 80px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.dropdown-list {
  background-color: #0000;
}

.dropdown-list.w--open {
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-top: 12px;
  display: flex;
}

.dropdown-corner {
  background-color: #fff;
  width: 12px;
  height: 12px;
  position: absolute;
  inset: -5px auto auto;
  transform: rotate(45deg);
}

.nav-menu {
  justify-content: center;
  align-items: center;
  max-width: 400px;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
}

.hover-line-fill {
  background-color: #a3acc2;
  width: 100%;
  height: 100%;
}

.navigation-content {
  z-index: 10;
  color: #fff;
  border-bottom: 1px solid #fff0;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.nav-right {
  z-index: 10;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  display: grid;
  position: relative;
}

.social-toggle {
  border: 1px solid #889ea833;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 9px;
  display: flex;
}

.slider-arrow {
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  padding-left: 100px;
  display: flex;
  top: 0;
  bottom: 80px;
  left: -100px;
}

/* outline-button → secondary alias */
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background-color: transparent;
  border: 1.5px solid #111;
  border-radius: 0;
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.outline-button:hover {
  background-color: #111;
  color: #fff;
}

.section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 100px 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.gray {
  background-color: #f7f7f7;
}

.section.cta {
  background-color: #f7f7f7;
  padding-top: 200px;
  padding-bottom: 200px;
}

.section.black {
  color: var(--foreground--light--body);
  background-color: #010101;
}

.section.black.tall {
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.section.black.full {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.section.grid {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #f0f0f0e3, var(--background--default) 83%, var(--background--default)), url('../images/background.svg');
  background-position: 0 0, 50%;
  background-attachment: scroll, scroll;
}

.section.overflow-off {
  overflow: visible;
}

.underline-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid #fffc;
  padding-bottom: 6px;
  padding-left: 0;
  font-size: 9px;
  text-decoration: none;
  position: relative;
}

.underline-link.dark {
  color: #626d86;
  border-bottom-color: #889ea833;
}

.logo {
  letter-spacing: .1em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

.container {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.container.wide {
  flex-wrap: nowrap;
  max-width: 1560px;
  padding-right: 10%;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 120%;
}

.section-heading.double {
  outline-offset: 0px;
  letter-spacing: 3px;
  text-transform: uppercase;
  outline: 3px #333;
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 800;
  line-height: 52px;
}

.section-heading.form {
  margin-bottom: 0;
}

.section-heading.xl {
  font-size: 64px;
}

._2-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 45% 55%;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-subheading {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #757575;
}

.paragraph {
  max-width: 600px;
  margin-bottom: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

._4-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 980px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.service-tabs {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 3px none var(--gainsboro-2);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 30px;
  display: grid;
}

.service-tabs._2-grid {
  grid-column-gap: 0px;
  border-width: 3px;
  border-color: var(--gainsboro-2);
  text-align: left;
  border-radius: 0;
  grid-template-columns: 90px 1fr;
  justify-content: stretch;
  justify-items: stretch;
}

.service-logo {
  filter: saturate(0%);
  height: 60px;
  margin-left: 0;
  margin-right: auto;
}

.service-logo.small {
  filter: none;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}

.service-logo.small-copy {
  filter: none;
  height: 40px;
}

.tab-text {
  letter-spacing: .5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
}

.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

.section-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 10px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  max-width: 720px;
  margin-bottom: 56px;
  display: grid;
}

/* ============================================
   PRIMARY BUTTON — canonical class
   ============================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #fff;
  background-color: #111111;
  border: 1.5px solid #111111;
  border-radius: 0;
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.button:hover {
  background-color: #333;
  border-color: #333;
}

/* SECONDARY — border only, no fill */
.button.is-secondary {
  background-color: transparent;
  color: #111111;
  border-color: #111111;
}

.button.is-secondary:hover {
  background-color: #111111;
  color: #fff;
}

.button-wrapper {
  margin-top: 10px;
}

.nav-container {
  color: #000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-links {
  letter-spacing: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
}

.nav-links.w--current {
  letter-spacing: 4px;
  margin-left: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
}

.nav-links.white {
  color: #000;
  letter-spacing: 4px;
  border-bottom: 3px #fff;
  margin-left: 40px;
  padding: 10px 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s cubic-bezier(.6, -.28, .735, .045);
}

.nav-links.white:hover {
  border-bottom-style: none;
  transform: translate(3px, -3px);
}

.nav-links.white.w--current {
  border: 1px #000;
  border-bottom-width: 2px;
  justify-content: center;
  padding: 10px 5px;
  font-weight: 700;
  display: flex;
}

.nav-menu-1 {
  justify-content: flex-end;
  align-items: center;
  height: 50px;
  display: flex;
}

.navbar-main {
  z-index: 888;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffff7d;
  border-bottom: 1px solid #0000001c;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 8vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  overflow: visible;
}

.treat-paragraph {
  text-align: center;
  max-width: 680px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
}

.footertag {
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: static;
  inset: auto 0% 0%;
}

.nav-menu-2 {
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.label {
  letter-spacing: 1px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
}

.footer-nav {
  color: #131313;
  letter-spacing: 2px;
  margin-left: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  text-decoration: none;
  display: none;
}

.media-footer {
  height: 30px;
  margin-left: 40px;
}

.project-grid {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 40% 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
}

.project-grid.set-2 {
  grid-template-columns: 1fr 40%;
}

.project-text-div {
  grid-column-gap: 16px;
  grid-row-gap: 10px;
  text-align: left;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  padding-left: 10%;
  display: flex;
}

.project-text-div.set-2 {
  padding-left: 0%;
  padding-right: 10%;
}

.project-image-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 700px;
  display: flex;
  position: relative;
}

.project-image-wrapper.set-2 {
  justify-content: flex-end;
}

.portfolio-cover {
  z-index: 10;
  object-fit: contain;
  width: 100%;
  max-width: none;
  height: auto;
  position: static;
  left: 30%;
}

.portfolio-cover.short {
  object-fit: cover;
  height: 400px;
}

.footer-menu {
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  display: none;
}

.pop-up_bg {
  z-index: 10000;
  background-color: #0000006b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.pop-up {
  z-index: 10001;
  color: var(--background--dark);
  background-color: #fff;
  width: 100%;
  max-width: 680px;
  height: auto;
  max-height: 100%;
  padding: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.contact_pop-up {
  z-index: 10000;
  justify-content: center;
  align-items: center;
  display: none;
  position: relative;
}

.checkbox_label {
  background-color: var(--foreground--light--body);
  border-radius: 1000px;
  padding: 12px 24px;
  font-weight: 500;
}

.back-arrow {
  filter: invert();
  cursor: pointer;
  transition: all .2s;
}

.back-arrow:hover {
  transform: translate(5px, -5px);
}

.form {
  flex-direction: column;
  align-items: flex-start;
  display: block;
}

.project_div {
  width: 100%;
}

.scroll-snap-wrapper {
  width: 100%;
  height: 100vh;
  display: none;
  position: relative;
  overflow: visible;
}

.footer {
  background-color: var(--background--dark);
  color: var(--foreground--light--body);
  width: 100%;
  height: 100%;
}

.search-result-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image {
  display: block;
}

.text-block-26 {
  text-decoration: none;
}

.link-block {
  color: #000;
  text-decoration: none;
}

.section-7 {
  background-color: #3d3d3d;
  width: 100%;
  height: 100vh;
}

.section-7._2-grid {
  background-color: #d3d3d3;
}

.persona {
  background-color: #000000;
  border: 1px solid #ffffff52;
  border-radius: 300px;
  width: 23vh;
  height: 23vh;
  padding: 24px;
  position: relative;
  box-sizing: border-box;
}

.track-vertical {
  flex-direction: column;
  display: flex;
  position: absolute;
}

.track-overlay {
  z-index: 1;
  background-image: linear-gradient(#f9f5ff, #0000 50%, #f9f5ff);
  position: absolute;
  inset: 0%;
}

.track-overlay.unclickable {
  background-image: linear-gradient(180deg, var(--background--dark), transparent 50%, var(--background--dark));
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.infinite-rotation-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.vertical-scroll-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 43ch;
  position: relative;
}

.text-rotation-wrapper {
  display: flex;
}

.main-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.heading-large {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.25;
}

.heading-large.rotate-text {
  color: #dcdfea;
  white-space: nowrap;
  font-weight: 600;
}

.div-block-3 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.form-container-default {
  background-color: #0000;
  border-radius: 20px;
  max-width: 1080px;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  transform: translate(0);
}

.multi-step-form-wrapper---brix {
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.multi-step-form-wrapper---brix.preview-page {
  max-width: 800px;
}

.h2 {
  color: #fff;
  text-align: center;
  min-width: 0;
  max-width: 720px;
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
}

.step-title---brix {
  margin-bottom: 8px;
  font-weight: 700;
}

.heading-3 {
  color: #fff;
  text-align: center;
  min-width: 0;
  margin-bottom: 40px;
  font-size: 72px;
  line-height: 68px;
}

.multi-step-form-error-message---brix {
  border-radius: 16px;
  margin-top: 140px;
  padding: 24px;
}

.item {
  overflow: visible;
}

.item._2 {
  border-right: 1px solid #d9dbe9;
  padding-right: 20px;
}

.item._1 {
  border-right: 1px solid #d9dbe9;
}

.multi-step-form-label---brix {
  color: #170f49;
  border-radius: 16px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.paragraph-2 {
  margin-bottom: 0;
}

.form-content---brix {
  border-top: 1px #d9dbe9;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.section-8 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-8.cloneables-listing {
  background-image: linear-gradient(to top, #000000a6, #fff0), url('../images/2.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0 20px;
  display: flex;
}

.multi-step-form-button---brix {
  color: #4a3aff;
  background-color: #fff;
  border-radius: 500px;
  width: auto;
  padding: 20px 40px;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s;
  display: inline-block;
  inset: 682px auto auto;
}

.multi-step-form-button---brix:hover {
  transform: translate(0, -2px);
}

.multi-step-form-button---brix.left---brix {
  border: 1px solid #4a3aff;
  left: -40px;
}

.multi-step-form-button---brix.left---brix.preview-page {
  color: #cfcfcf;
  background-color: #0000;
  border-style: none;
  border-color: #dbdbdb;
  margin-top: 10px;
  display: block;
  position: static;
}

.multi-step-form-button---brix.right---brix {
  color: #fff;
  background-color: #4a3aff;
  font-weight: 700;
  right: -40px;
}

.multi-step-form-button---brix.right---brix.preview-page {
  background-image: url('../images/Search.svg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  display: flex;
  position: absolute;
  inset: 10px 10px auto auto;
}

.multi-step-form-block---brix {
  width: 100%;
  min-height: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.submit-button {
  background-color: #4a3aff;
  background-image: url('../images/Arrow.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 500px;
  width: 60px;
  height: 60px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: all .2s;
  position: absolute;
  inset: 10px 10px 0% auto;
  box-shadow: 0 3px 12px #4a3aff2e;
}

.submit-button:hover {
  transform: translate(0, -2px);
  box-shadow: 0 4px 10px #4a3aff4d;
}

.submit-content-wrapper---brix {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin: auto;
  display: flex;
}

.completed-form-illustrations---brix {
  width: 100px;
  height: 100px;
  margin-bottom: 18px;
}

.display-none {
  display: none;
}

.text-field {
  color: #000;
  background-color: #0000;
  border: 1px #000;
  margin-bottom: 0;
  padding-left: 0;
}

.text-field::placeholder {
  color: #000;
}

.multi-step-form---brix {
  background-color: #0000;
  border-radius: 34px;
  padding-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.slider---brix {
  background-color: #0000;
  max-width: 750px;
  height: 80px;
  padding: 0;
  position: relative;
}

.first-step-grid---brix {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-radius: 60px;
  grid-template-rows: 100%;
  grid-template-columns: 1fr 1fr 1fr 40px;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 15px 40px 10px;
}

.slide---brix {
  margin-right: 80px;
}

.mask---brix {
  width: 100%;
  height: 80px;
  padding: 0;
  overflow: hidden;
}

.multi-step-foirm---success-message---brix {
  background-color: #fff;
  border-radius: 16px;
  min-height: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  position: static;
  box-shadow: 38px 38px 34px #4a3aff03, 0 1px 26px #14142b05, 0 16px 26px #13124205;
}

.mouse-scroll-icon {
  z-index: 3;
  opacity: .4;
  width: 24px;
}

.mac-container-2 {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  padding-top: 12vh;
  display: flex;
  position: static;
  top: 2vh;
  overflow: hidden;
}

.sticky-div-2 {
  z-index: 1;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

.mouse-scroll {
  z-index: 3;
  opacity: .4;
  cursor: none;
  width: auto;
  padding-top: 24px;
  padding-left: 32px;
  padding-right: 32px;
  position: fixed;
  inset: auto auto 32px;
}

.scroll-track {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 85vh;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.display-hero {
  z-index: 1;
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 5px;
  padding-right: 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8vh;
  line-height: 1;
  position: relative;
}

.avatar-wrapper {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  border-radius: 500px;
  flex-wrap: wrap;
  flex: 0 auto;
  place-content: center;
  align-items: center;
  width: 30vh;
  height: auto;
  display: flex;
  position: static;
  top: 120px;
  overflow: visible;
}

.mac-zoom {
  opacity: 0;
  object-fit: contain;
  flex: none;
  width: 240%;
  min-width: 0;
  max-width: none;
  height: 240%;
  display: block;
  position: static;
}

.glow-animate {
  opacity: .6;
  filter: none;
  background-image: url('../images/Blur.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30vh;
  min-width: 0;
  height: 30vh;
  position: absolute;
}

.glow-static {
  filter: none;
  background-image: url('../images/Blur.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30vh;
  height: 30vh;
  display: block;
  position: absolute;
}

.hero-h1 {
  z-index: 1;
  color: #000;
  letter-spacing: 2px;
  margin-top: 5px;
  margin-bottom: 12px;
  padding-left: 5px;
  padding-right: 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3vh;
  line-height: 1;
  position: relative;
}

.link-2 {
  z-index: 10;
  color: #fff;
  cursor: none;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.heading-container-2 {
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.chat-3 {
  z-index: 22;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #d1d3dbb0;
  border: 1px solid #bebebe;
  border-radius: 24px 24px 24px 0;
  flex: none;
  width: auto;
  padding: 12px 16px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.chat-4 {
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  display: none;
}

.section-x {
  z-index: 1;
  background-color: var(--background--default);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 250vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.center-container-2 {
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
  margin-top: -10vh;
  display: flex;
  gap: 8px;
  position: absolute;
  top: auto;
}

.blue-box {
  border: 4px solid #1685ff;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  line-height: 14px;
  display: flex;
  position: relative;
}

.chat-5 {
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  display: block;
}

.heading-4 {
  max-width: 800px;
  font-family: 'Cormorant Garamond', serif;
}

.tag-2 {
  color: #fff;
  text-align: center;
  background-color: #1685ff;
  justify-content: center;
  align-items: center;
  margin-left: -1px;
  padding: 4px 8px;
  font-size: 12px;
  display: flex;
  position: absolute;
  top: -24px;
  left: -3px;
}

.lightbox-link-b {
  border-radius: 14px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 17vw;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ms-drawer-top {
  color: #121331;
  border-radius: 16px 16px 0 0;
  justify-content: space-between;
  align-items: center;
  padding: 11px 10px 10px;
  font-weight: 400;
  display: flex;
}

.ms-drawer-top:hover {
  background-color: #ebebeb;
}

.ms-radio-group {
  margin-bottom: 12px;
}

.ms-radio-button-tab {
  color: #121331;
  border: 1px solid #12133140;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 700;
}

.ms-radio-row {
  grid-column-gap: 3%;
  grid-row-gap: 3%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.ms-hide {
  display: none;
}

.ms-input-label {
  color: #121331;
  margin-bottom: 5px;
  font-weight: 700;
}

.ms-checkbox-wrap {
  align-items: flex-start;
  padding-top: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

/* form submit = primary button */
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #111111;
  border: 1.5px solid #111111;
  border-radius: 0;
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  width: 100%;
  margin-top: 12px;
  transition: background-color 0.25s ease;
}

.form-submit:hover {
  background-color: #333;
  border-color: #333;
}

.navbar_menu-button {
  padding: 0;
}

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

.navbar_menu.is-page-height-tablet {
  background-color: var(--primary);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-image: none;
  background-size: auto;
  border: 2px solid #1d1d1d;
  border-radius: 8px;
  justify-content: flex-start;
  width: 30rem;
  height: auto;
  padding: .2rem;
  position: relative;
  overflow: hidden;
}

.navbar_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .3fr 1fr .3fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1560px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

/* ============================================
   LEGACY BUTTON ALIASES — all merge into .button
   ============================================ */
.button-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #fff;
  background-color: #111111;
  border: 1.5px solid #111111;
  border-radius: 0;
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: background-color 0.25s ease;
}

.button-2:hover {
  background-color: #333;
  border-color: #333;
}


.button-2.is-navbar-button {
  background-color: #111111;
  border-color: #111111;
}

.button-2.is-navbar-button:hover {
  background-color: #333;
  border-color: #333;
}

.button-2.is-navbar-button.hide-tablet {
  background-color: #111111;
  border-color: #111111;
  text-decoration: none;
}

.button-2.is-portfolio {
  z-index: 1;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #0d0d0d;
  border-style: none;
  align-items: center;
  padding-top: .88rem;
  padding-bottom: .88rem;
  display: flex;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.navbar_logo-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--stroke--dark--default);
  background-color: var(--primary);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: var(--foreground--light--body);
  border-radius: 8px;
  align-items: center;
  padding: 20px 24px 16px;
  display: flex;
}

.navbar_component {
  z-index: 88;
  background-color: #0000;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 40px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar_button-wrapper {
  grid-column-gap: 1rem;
  display: flex;
}

.button_text-small {
  padding-top: .1rem;
  padding-bottom: .09rem;
  font-size: .88rem;
}

.button_circle {
  z-index: 0;
  background-color: #61d180;
  border-radius: 50%;
  width: .6rem;
  height: .6rem;
}

.button_circle.menu_button-circle {
  background-color: #61d180;
  border-color: #61d180;
  margin-bottom: 0;
}

.navbar_link {
  color: #fff;
  text-align: center;
  border-radius: .38rem;
  flex: 1;
  padding: 12px 24px;
  font-size: 16px;
  transition: background-color .2s;
}

.navbar_link:hover {
  background-color: #1d1d1d;
}

.navbar_link.w--current {
  color: #fff;
  background-color: #1d1d1d;
}

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

.portfolio_wrapper {
  background-image: url('../images/noise_1noise.webp'), linear-gradient(#f7f7f7, #14141400);
  background-position: 0 0, 0 0;
  background-size: 800px 800px, auto;
  border-radius: 2rem;
  width: 100%;
  padding-top: 80px;
  overflow: hidden;
  transform: none;
}

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

.portfolio_item {
  z-index: 0;
  aspect-ratio: 16 / 8;
  cursor: pointer;
  border-radius: .5rem;
  width: 40vw;
  position: relative;
  overflow: hidden;
}

.portfolio_item.mobile-only {
  display: none;
}

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

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

.section_portfolio {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-size-medium {
  font-size: 1.13rem;
}

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

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

.portfolio_list-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: 5vw;
  display: flex;
}

.portfolio_list-wrapper.is-bottom {
  margin: 2.5rem 5vw 2.5rem 0;
}

.padding-global-portfolio {
  width: 100%;
}

.portfolio_image-overlay-layer {
  z-index: 0;
  background-color: #fff0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.portfolio_image {
  width: 100%;
  height: auto;
}

.portfolio_image.fh {
  height: 100%;
}

.portfolio_list {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  display: flex;
}

.portfolio_list._4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.portfolio_list.mobile-only {
  display: none;
}

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

.portfolio_item_lite {
  z-index: 0;
  aspect-ratio: 16 / 8;
  cursor: pointer;
  border-radius: .5rem;
  width: 40vw;
  position: relative;
  overflow: hidden;
}

.code-embed {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.code-embed-3 {
  position: relative;
}

.div-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.progress-bar-desktop {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.progress-bar {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1328px;
  padding-left: 180px;
  padding-right: 180px;
  text-decoration: none;
  display: flex;
}

.bar {
  grid-column-gap: 8px;
  background-color: #f2f2f2;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 12px;
  display: flex;
}

.dash-1 {
  background-color: #ffc800;
  justify-content: center;
  align-items: center;
  width: .0001px;
  height: 12px;
  text-decoration: none;
  display: flex;
}

.div {
  grid-column-gap: 12px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 320px;
  text-decoration: none;
  display: flex;
}

.step {
  grid-row-gap: 4px;
  box-shadow: 0 0 32px 0 var(--shadow);
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
  display: flex;
}

.heading {
  color: #162338;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
  text-decoration: none;
}

.step-1 {
  grid-row-gap: 4px;
  box-shadow: 0 0 32px 0 var(--shadow-1);
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
  display: flex;
}

.step-3 {
  grid-row-gap: 4px;
  box-shadow: 0 0 32px 0 var(--shadow-3);
  background-color: #fff;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
  display: flex;
}

.description-1 {
  color: #757575;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  text-decoration: none;
  overflow: hidden;
}

.description-2,
.description-3 {
  color: #757575;
  text-align: center;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  text-decoration: none;
  overflow: hidden;
}

.dash-2 {
  background-color: #ffc800;
  justify-content: center;
  align-items: center;
  width: .0001px;
  height: 12px;
  text-decoration: none;
  display: flex;
}

.section-9 {
  padding: 40px;
}

.mask {
  overflow: visible;
}

.slider {
  background-color: #e0e0e0;
  border: 20px solid #fff;
  width: 50%;
}

.slider._2 {
  background-color: #ffe0e0;
}

.slider-2 {
  height: 400px;
}

.position-text {
  font-size: 14px;
}

.logo-testimonial-new {
  width: 100%;
  max-width: 93px;
}

.testimonial-text {
  font-size: 19px;
  line-height: 143%;
}

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

.max-width-large-2.align-center {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.position-case-study {
  display: flex;
}

.heading-style-h2 {
  color: #162338;
  width: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  display: block;
}

.testimonial11_content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border: 1px solid #a3bff8;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px;
  display: flex;
}

.arrow-left {
  transform: rotate(-180deg);
}

.testimonial11_mask {
  width: 100%;
  overflow: visible;
}

.testimonial11_arrow {
  background-color: #fff;
  border: 1px solid #eff3f9;
  border-radius: 31%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: box-shadow .35s, background-color .35s;
  display: flex;
  inset: auto -30px 40% auto;
  box-shadow: 0 12px 20px #8fbeff33;
}

.testimonial11_arrow.is-left {
  inset: auto auto 40% -30px;
}

.testimonial11_client-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.name-surname {
  font-size: 16px;
}

.testimonial11_divider {
  align-self: stretch;
  width: 1px;
}

.testimonial11_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  display: none;
  inset: auto auto 0% 0%;
}

.testimonial11_client {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.testimonial11_client-info {
  margin-right: auto;
}

.section_testimonial11 {
  background-color: #f5f8fe;
  overflow: hidden;
}

.case-study-link {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #5c8ef2;
  border-left: 1px solid #5c8ef2;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  padding-left: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.testimonial11_slide {
  width: 50%;
  height: 260px;
  min-height: 240px;
  margin-right: .5rem;
  padding-right: .5rem;
}

.testimonial11_slider {
  background-color: #0000;
  height: auto;
  padding-bottom: 0;
  overflow: visible;
}

.code-embed-5 {
  color: var(--royal-blue);
  text-align: left;
}

.div-block-7 {
  color: var(--royal-blue);
}

.text-color-blue {
  color: #245efe;
}

.text-color-gray {
  color: #607080;
}

.text-color-gray.text-weight-bold {
  font-weight: 700;
}

.heading-style-h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.faq_components {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  max-width: 860px;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.padding-bottom.padding-2 {
  padding-bottom: 2rem;
}

.icon-32 {
  width: 2rem;
  height: 2rem;
}

.faq_accordion {
  box-shadow: none;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #d5dce0;
  border-radius: 16px;
  padding: 2rem;
}

.faq_icon {
  transition: all .4s;
}

.faq_body {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  transition: all .4s;
  display: flex;
  overflow: hidden;
}

.list {
  margin-top: .5rem;
  margin-bottom: 0;
  padding-left: 1rem;
}

/* button-3 → primary alias */
.button-3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #111111;
  border: 1.5px solid #111111;
  border-radius: 0;
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}

.button-3:hover {
  background-color: #333;
  border-color: #333;
}

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

.max-width-medium {
  max-width: 660px;
}

.faq_header {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section_faq {
  min-height: 100vh;
}

.faq_answers {
  max-width: 660px;
  margin-top: .75rem;
}

.faq_heading {
  grid-column-gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.li {
  margin-bottom: .5rem;
}

.container-2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.padding-global-2 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.container-3 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-3.narrow {
  max-width: 800px;
}

.wrapper-8px {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.icon-80px {
  height: 80px;
}

.image-3 {
  z-index: -1;
  width: 160px;
  position: absolute;
  inset: 24px auto auto 24px;
}

.h2-medium {
  font-size: 56px;
  line-height: 120%;
}

.image-3-copy {
  z-index: -1;
  width: 160px;
  position: absolute;
  inset: auto 24px 24px auto;
}

.section-10 {
  padding: 80px 24px;
  position: relative;
}

.slider-3 {
  width: 100%;
  height: 60vh;
  transition: opacity .2s;
  position: absolute;
  inset: 0% auto auto 0%;
}

.image-4 {
  z-index: -11;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.heading-5 {
  color: var(--foreground--light--body);
  margin: 25%;
  position: absolute;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.detail {
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.detail.text-color-primary {
  color: #443fde;
}

.icon-regular {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color .2s;
  display: flex;
}

.section-regular {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.margin-bottom-12 {
  margin-bottom: 12px;
}

.testimonial-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  height: 100%;
  display: grid;
}

.testimonial-image-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.testimonial-slider-right-button {
  color: #030407;
  background-color: #fff;
  border: 1px solid #ebebef;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .4s;
  display: flex;
  inset: auto auto 0 60px;
}

.testimonial-slider-right-button:hover {
  background-color: #ebebef;
}

.testimonial-slider-right-button:active {
  background-color: #d6d7e0;
}

.image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.text-color-primary {
  color: #443fde;
}

.testimonial-logo-wrap {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid #ebebef;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  padding: 8px;
  display: flex;
  overflow: auto;
}

.testimonial-slider {
  background-color: #0000;
  width: 100%;
  height: auto;
}

.container-small {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.testimonial-content-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.slide-nav-hidden {
  display: none;
}

.title-wrap-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 470px;
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph-regular {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.paragraph-regular.text-color-gray-600 {
  color: #3e404c;
}

.testimonial-quote {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.icon-extra-large {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-slider-left-button {
  color: #000;
  background-color: #fff;
  border: 1px solid #ebebef;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  inset: auto auto 0 0%;
}

.mask-2 {
  height: auto;
  padding-bottom: 48px;
  overflow: visible;
}

.text-span {
  font-size: 2vh;
}

.image-border {
  border: 1px solid var(--gainsboro-2);
  border-radius: 16px;
  width: 100%;
}

.recaptcha {
  margin-bottom: 40px;
}

.text-span-2 {
  font-size: 12px;
  font-weight: 600;
}

.brand-logo {
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}

.brand-logo.small {
  filter: none;
  height: 32px;
}

._3-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 980px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

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

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

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

.capability_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.capability_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.padding-global-3 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

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

.capability_icon-image {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  max-width: none;
  height: auto;
  display: flex;
}

.cta_image {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: auto;
  display: flex;
}

.cta_image-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  display: flex;
  position: relative;
}

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

.cta_image-arrow {
  width: 3rem;
  height: auto;
  position: absolute;
  inset: auto auto 0% 50%;
  transform: translate(-50%, 50%);
}

.section_capability {
  z-index: 0;
  position: relative;
}

.image-overlay-layer {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.capability_background-image-wrapper {
  z-index: -2;
  background-image: linear-gradient(#00000080, #00000080);
  display: block;
  position: absolute;
  inset: 0%;
}

.body-s {
  font-size: 18px;
}

.image-5 {
  opacity: .41;
  position: absolute;
  inset: -192px auto auto;
}

.background-video {
  z-index: 0;
  opacity: .24;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.testimonial_rating-wrapper {
  color: #f1bd42;
  display: flex;
}

.testimonial_rating-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .25rem;
  display: flex;
}

/* button-4 → primary alias */
.button-4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #fff;
  background-color: #111111;
  border: 1.5px solid #111111;
  border-radius: 0;
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease;
  position: relative;
}

.button-4:hover {
  background-color: #333;
  border-color: #333;
}

.button-4.is-navbar-button {
  background-color: #111111;
  border-color: #111111;
}

.button-4.is-navbar-button:hover {
  background-color: #333;
}

.button-4.is-navbar-button.menu_button {
  background-color: #111111;
  border-color: #111111;
  color: #fff;
  border-radius: 0;
}

.button-4.is-navbar-button.menu_button:hover {
  background-color: #333;
}

.button_text-regular {
  font-size: 1rem;
}

.button_text-regular.is-menu-button-text {
  padding-top: .1rem;
  padding-bottom: .1rem;
}

.text-span-3 {
  font-size: 24px;
}

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

.form-block {
  margin-top: 16px;
}

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

.div-block-9 {
  border-top: 100px solid #000;
  border-left: 200px solid #0000;
  border-right: 50px solid #0000;
  width: 0;
  height: 0;
}

@media screen and (min-width: 1440px) {
  .slide._2 {
    background-image: url('../images/222.gif');
  }

  .contact_pop-up {
    display: none;
  }

  .ms-checkbox-wrap {
    font-size: 16px;
  }

  .portfolio_item {
    aspect-ratio: 16 / 8;
    height: auto;
  }

  .portfolio_item_lite {
    aspect-ratio: 16 / 8;
  }

  .image-4 {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
  }

  .form-block {
    font-size: 18px;
  }
}

@media screen and (min-width: 1920px) {
  .section {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .scroll-track,
  .mac-zoom {
    max-width: none;
  }

  .testimonial-image-wrap {
    justify-content: center;
    align-items: center;
  }

  .testimonial-content-wrap {
    flex-flow: column;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .nav-link {
    background-color: #fff;
    border: 1px #889ea833;
    border-top-style: solid;
    min-height: 60px;
  }

  .dropdown-link {
    border-top: 1px solid #889ea833;
    border-bottom-style: none;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    display: flex;
  }

  .menu-items {
    flex-direction: column;
    box-shadow: 0 18px 36px -8px #292b4e12;
  }

  .social-drop-wrapper {
    border-style: solid;
  }

  .menu-icon {
    width: 28px;
  }

  .menu-button {
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 19px 0;
    display: none;
  }

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

  .dropdown-wrapper {
    width: 100%;
    min-width: auto;
    box-shadow: 0 18px 36px -8px #292b4e1f;
  }

  .menu-icon-wrapper {
    border: 1px #000;
    border-left: 1px solid #889ea833;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 0 0 24px;
    display: flex;
  }

  .dropdown-list {
    position: absolute;
  }

  .dropdown-list.w--open {
    padding-top: 0;
  }

  .dropdown-corner {
    border-top: 1px solid #889ea833;
    border-left: 1px solid #889ea833;
    top: -6px;
  }

  .nav-menu {
    background-color: #0000;
    flex-direction: row;
    justify-content: flex-end;
    align-self: auto;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
  }

  .navigation-content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .slider-arrow {
    width: 160px;
    height: 160px;
  }

  .section {
    padding: 80px 24px;
  }

  .logo {
    color: var(--foreground--light--body);
  }

  .service-tabs._2-grid {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-logo {
    margin-left: auto;
  }

  .div-block {
    width: 100%;
  }

  .pop-up {
    padding: 40px;
  }

  .vertical-scroll-wrapper {
    width: auto;
    height: 2.8125rem;
    overflow: hidden;
  }

  .text-rotation-wrapper {
    flex-direction: column;
  }

  .heading-large {
    font-size: 2.25rem;
  }

  .div-block-3 {
    max-width: 720px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .form-container-default {
    padding-left: 0;
    padding-right: 0;
  }

  .item._2 {
    border-right: 1px solid #d9dbe9;
    padding-right: 20px;
  }

  .item._1 {
    border-right: 1px solid #d9dbe9;
  }

  .multi-step-form---brix {
    padding-left: 0;
    padding-right: 0;
  }

  .slider---brix {
    max-width: 680px;
  }

  .first-step-grid---brix {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 30px;
  }

  .scroll-track {
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .display-hero {
    font-size: 7vh;
  }

  .mac-zoom {
    width: auto;
    height: 520px;
  }

  .hero-h1 {
    font-size: 2.5vh;
  }

  .chat-3 {
    display: none;
  }

  .center-container-2 {
    margin-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    top: auto;
  }

  .lightbox-link-b {
    height: 25vw;
  }

  .menu-icon_line-bottom {
    background-color: #fff;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar_menu-button {
    padding: 0;
  }

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

  .menu-icon-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
  }

  .navbar_menu {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1rem 5% 2.5rem;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .navbar_menu.is-page-height-tablet {
    background-color: #0d0d0de6;
    width: auto;
    height: auto;
    margin-top: 16px;
    padding: 5%;
    position: absolute;
    left: auto;
    right: 16px;
  }

  .navbar_container {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #0d0d0de6;
    border: 2px solid #1d1d1d;
    border-radius: .5rem;
    grid-template-columns: .25fr 1fr;
    padding: .2rem;
    display: flex;
    position: relative;
  }

  .button-2.is-navbar-button.hide-tablet {
    position: static;
  }

  .button-2.is-portfolio {
    display: none;
  }

  .menu-icon_line-top {
    background-color: #fff;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_logo-link {
    background-color: var(--transparent);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-style: none;
    padding: 12px 16px 8px;
  }

  .navbar_component {
    padding: 16px;
    position: fixed;
  }

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

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_link {
    text-align: center;
    margin-bottom: .5rem;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

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

  .portfolio_item {
    width: 100%;
    height: auto;
  }

  .portfolio_item.mobile-only {
    display: block;
  }

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

  .padding-section-large {
    padding-bottom: 6rem;
  }

  .portfolio_list-wrapper {
    justify-content: center;
    align-items: flex-start;
    margin-left: 0;
    padding-bottom: 16px;
    overflow: auto;
  }

  .portfolio_list-wrapper.is-bottom {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .portfolio_list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: stretch start;
    width: 100%;
    display: none;
  }

  .portfolio_list.mobile-only {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-auto-columns: 1fr;
    display: grid;
    overflow: auto;
  }

  .portfolio_item_lite {
    width: 100%;
  }

  .testimonial-text,
  .testimonial11_component {
    text-align: center;
  }

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

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

  .padding-global {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2.2rem;
    display: block;
    overflow: visible;
  }

  .testimonial11_content {
    height: auto;
  }

  .arrow-left {
    width: .7rem;
  }

  .testimonial11_mask {
    width: 100%;
    height: auto;
  }

  .testimonial11_arrow {
    box-shadow: none;
    background-color: #fff0;
    border-style: none;
    transition: none;
    bottom: 43%;
    right: 3%;
  }

  .testimonial11_arrow:hover {
    box-shadow: none;
  }

  .testimonial11_arrow.is-left {
    bottom: 43%;
    left: 3%;
  }

  .testimonial11_client {
    flex-flow: column;
  }

  .testimonial11_client-info {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .section_testimonial11 {
    height: auto;
    padding-top: 0;
  }

  .testimonial-arrow {
    width: .7rem;
  }

  .testimonial11_slide {
    height: auto;
    margin-right: 2.5rem;
    padding-right: 0;
  }

  .testimonial11_slider {
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .faq_heading {
    width: 100%;
  }

  .container-3 {
    max-width: 728px;
  }

  .section-regular {
    padding-top: 64px;
    padding-bottom: 64px;
    overflow: hidden;
  }

  .testimonial-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .testimonial-image-wrap {
    justify-content: center;
  }

  .mask-2 {
    padding-bottom: 80px;
  }

  .capability_list {
    grid-column-gap: 2rem;
  }

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

  .button-4.is-navbar-button.menu_button {
    opacity: 1;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {

  .nav-link,
  .dropdown-link {
    min-height: 54px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .nav-right {
    grid-column-gap: 18px;
  }

  .slider-arrow {
    width: 140px;
    height: 140px;
    padding-left: 80px;
    left: -80px;
  }

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

  .section-heading {
    font-size: 32px;
  }

  .section-heading.xl {
    font-size: 56px;
  }

  ._4-grid,
  .project-grid {
    flex-direction: column;
    display: flex;
  }

  .project-grid.set-2 {
    flex-direction: column-reverse;
  }

  .project-text-div {
    padding-left: 0%;
  }

  .project-text-div.set-2 {
    padding-right: 0%;
  }

  .project-image-wrapper.set-2 {
    justify-content: flex-start;
  }

  .portfolio-cover {
    left: auto;
    right: 0;
  }

  .project_div {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .vertical-scroll-wrapper {
    height: 2.34375rem;
    overflow: hidden;
  }

  .text-rotation-wrapper {
    margin-left: 0%;
  }

  .heading-large {
    font-size: 1.875rem;
  }

  .form-container-default {
    padding-left: 24px;
    padding-right: 24px;
  }

  .h2 {
    font-size: 16px;
  }

  .heading-3 {
    margin-bottom: 20px;
    font-size: 56px;
    line-height: 62px;
  }

  .multi-step-form-error-message---brix {
    margin-top: 170px;
  }

  .item {
    background-color: #fff;
    border-radius: 40px;
    padding: 8px 20px;
  }

  .multi-step-form-label---brix {
    display: none;
  }

  .form-content---brix {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-8.cloneables-listing {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 120px;
  }

  .multi-step-form-button---brix {
    top: 990px;
  }

  .multi-step-form-button---brix.left---brix {
    left: -32px;
  }

  .multi-step-form-button---brix.left---brix.preview-page {
    top: 960px;
  }

  .multi-step-form-button---brix.right---brix {
    right: -32px;
  }

  .multi-step-form-button---brix.right---brix.preview-page {
    margin-top: -70px;
    margin-left: auto;
    margin-right: auto;
    position: static;
    top: 960px;
  }

  .multi-step-form-block---brix {
    min-height: auto;
  }

  .submit-button {
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .submit-content-wrapper---brix {
    margin-top: 32px;
  }

  .multi-step-form---brix {
    padding-left: 32px;
    padding-right: 32px;
  }

  .first-step-grid---brix {
    grid-row-gap: 20px;
    background-color: #fff0;
    border-radius: 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    height: auto;
    padding: 0;
  }

  .slide---brix {
    height: 300px;
    padding-bottom: 8px;
  }

  .mask---brix {
    height: auto;
  }

  .avatar-wrapper {
    width: 240px;
    height: 240px;
  }

  .mac-zoom {
    display: none;
  }

  .glow-animate {
    width: 240px;
    height: 240px;
  }

  .glow-static {
    background-image: url('../images/Blur.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 240px;
    height: 240px;
  }

  .center-container-2 {
    text-align: center;
    align-items: center;
  }

  .lightbox-link-b {
    height: 54vw;
  }

  .button-2.is-navbar-button {
    padding: .25rem 1rem;
  }

  .button-2.is-portfolio {
    inset: auto auto 0% 0%;
    transform: translate(10%, -10%);
  }

  .button-2.is-portfolio.is-right {
    inset: auto 0% 0% auto;
    transform: translate(-10%, -10%);
  }

  .navbar_logo-link {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

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

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

  .portfolio_list-wrapper.is-bottom {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .portfolio_list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

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

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

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

  .testimonial11_arrow {
    inset: 0% 0% 0% auto;
  }

  .testimonial11_arrow.is-left {
    inset: 0% auto 0% 0%;
  }

  .testimonial11_divider {
    display: none;
  }

  .testimonial11_client {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .testimonial11_client-info {
    margin-bottom: 1rem;
  }

  .testimonial11_slide {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial11_slider {
    padding-bottom: 0;
  }

  .heading-style-h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

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

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

  .faq_header {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .padding-global-2 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  ._3-grid {
    flex-direction: column;
    display: flex;
  }

  .capability_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .padding-global-3 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .button-4.is-navbar-button {
    padding: .25rem 1rem;
  }
}

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

  .nav-button {
    display: none;
  }

  .menu-button {
    padding-left: 15px;
    padding-right: 15px;
  }

  .menu-icon-wrapper {
    padding-left: 18px;
  }

  .nav-menu {
    justify-content: flex-end;
  }

  .slider-arrow {
    width: 120px;
    height: 120px;
    padding-left: 60px;
    top: auto;
    bottom: 140px;
    left: -60px;
  }

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

  .logo {
    color: var(--foreground--light--body);
    font-size: 16px;
  }

  .section-heading.double {
    font-size: 28px;
    line-height: 28px;
  }

  .section-heading.form {
    font-size: 32px;
  }

  .section-subheading {
    font-size: 12px;
  }

  .paragraph {
    font-size: 16px;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .nav-menu-1 {
    display: flex;
  }

  .nav-menu-2 {
    justify-content: center;
    width: 100%;
  }

  .pop-up {
    max-height: 90vh;
    padding: 24px;
    overflow: auto;
  }

  .back-arrow {
    top: 32px;
    right: 24px;
  }

  .project_div {
    padding-top: 0;
    padding-bottom: 0;
  }

  .scroll-snap-wrapper {
    overflow: visible;
  }

  .persona {
    width: 150px;
    height: 150px;
  }

  .div-block-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .form-container-default {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .h2 {
    margin-bottom: 0;
  }

  .heading-3 {
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 50px;
  }

  .multi-step-form-error-message---brix {
    margin-top: 32px;
  }

  .multi-step-form-label---brix {
    font-size: 16px;
  }

  .section-8.cloneables-listing {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 20px;
  }

  .multi-step-form-button---brix {
    font-size: 16px;
  }

  .multi-step-form-button---brix.left---brix {
    margin-bottom: 12px;
    display: block;
    position: static;
    left: auto;
  }

  .multi-step-form-button---brix.left---brix.preview-page {
    margin-bottom: 0;
  }

  .multi-step-form-button---brix.right---brix {
    display: block;
    position: static;
    right: auto;
  }

  .multi-step-form-button---brix.right---brix.preview-page {
    z-index: 10;
    margin-top: -70px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0;
    right: auto;
  }

  .submit-button {
    position: static;
    inset: auto 0% 0%;
  }

  .completed-form-illustrations---brix {
    display: none;
  }

  .multi-step-form---brix {
    padding-left: 0;
    padding-right: 0;
  }

  .slider---brix {
    clear: both;
    width: auto;
    max-width: none;
    height: auto;
  }

  .first-step-grid---brix {
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 100%;
    grid-auto-columns: 1fr;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: grid;
  }

  .slide---brix {
    height: 300px;
  }

  .mask---brix {
    width: auto;
    position: static;
    overflow: hidden;
  }

  .mouse-scroll-icon {
    display: none;
  }

  .mac-container-2 {
    align-items: center;
    padding-top: 0;
    overflow: visible;
  }

  .sticky-div-2 {
    position: static;
  }

  .mouse-scroll {
    display: none;
  }

  .display-hero {
    font-size: 8.3vw;
  }

  .avatar-wrapper,
  .glow-animate,
  .glow-static {
    width: 240px;
    height: auto;
  }

  .heading-container-2 {
    margin-top: 20px;
  }

  .section-x {
    height: 100vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  .ms-radio-button-tab {
    font-size: 14px;
  }

  .ms-checkbox-wrap {
    align-items: flex-start;
    display: flex;
  }

  .navbar_container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .button-2.is-portfolio {
    padding: .68rem;
  }

  .navbar_logo-link {
    padding-left: 8px;
  }

  .navbar_button-wrapper {
    grid-column-gap: 0px;
  }

  .portfolio_wrapper {
    padding: 40px 8px 8px;
  }

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

  .max-width-large.align-center {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .portfolio_list.mobile-only {
    flex-flow: column;
    display: flex;
  }

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

  .padding-global {
    padding-left: 16px;
    padding-right: 16px;
  }

  .heading-style-h2 {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 5px;
    font-size: 28px;
  }

  .testimonial11_client {
    text-align: center;
    justify-content: space-between;
    align-items: center;
  }

  .testimonial11_client-info {
    margin-left: auto;
    margin-right: auto;
  }

  .section_testimonial11 {
    margin-top: 150px;
  }

  .testimonial11_slide {
    width: 100%;
  }

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

  .faq_accordion {
    padding: 1rem;
  }

  .container-3 {
    max-width: none;
  }

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

  .testimonial-image-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .testimonial-logo-wrap {
    width: 72px;
    height: 72px;
    position: static;
  }

  .testimonial-content-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .testimonial-quote {
    font-size: 20px;
  }

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

  .body-s {
    font-size: 14px;
  }

  .div-block-8 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
}

#w-node-_40dfe5b0-0679-b401-5bb8-028b44913744-2dda73af {
  justify-self: center;
}

#w-node-ab6ecc7f-69e1-4972-42ae-bf5e0d812118-2dda73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-ab6ecc7f-69e1-4972-42ae-bf5e0d812120-2dda73af {
  justify-self: center;
}

#w-node-ab6ecc7f-69e1-4972-42ae-bf5e0d81212d-2dda73af {
  justify-self: end;
}

#w-node-fcba089f-f8da-d1f6-eebf-8bd7e28869d7-2dda73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1982716a-6a38-b794-344f-8fcf426021ce-2dda73af {
  justify-self: auto;
}

#w-node-_2c851cc3-2cd9-6f98-bcd6-4c7b21733113-2dda73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_208f595d-e9ab-f26a-9dac-692d72ae41ed-2dda73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_4a2e7c1d-6a2f-e9e8-ce81-c2b40af86a5a-2dda73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8b8be9b-667e-b2e6-9fc4-976b47858164-2dda73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-b778d367-f896-0346-c47b-820ba5a7be71-2dda73af,
#w-node-_9ef74474-da71-829a-fd2c-fcea8572190b-2dda73af,
#w-node-b778d367-f896-0346-c47b-820ba5a7be70-2dda73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8b8be9b-667e-b2e6-9fc4-976b47858165-2dda73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_0a932e78-c803-4e23-30dc-5c94834c8c1b-2dda73af,
#w-node-_74a03ad0-1ff5-aa7c-0541-547a06f22943-2dda73af,
#w-node-_0a5690c6-acb9-e67f-b4f4-38c5d4d555a1-2dda73af,
#w-node-_0a5690c6-acb9-e67f-b4f4-38c5d4d555a2-2dda73af,
#w-node-_0a5690c6-acb9-e67f-b4f4-38c5d4d555a3-2dda73af,
#w-node-_0a5690c6-acb9-e67f-b4f4-38c5d4d555a4-2dda73af,
#w-node-_0a5690c6-acb9-e67f-b4f4-38c5d4d555a5-2dda73af,
#w-node-_0a5690c6-acb9-e67f-b4f4-38c5d4d555a6-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5a0-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5a7-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5ae-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5be-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5c5-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5cc-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5d3-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5dc-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5e3-2dda73af,
#w-node-_12ae2050-8788-021b-e38d-2e753241f5ea-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00db-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e2-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e3-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e0-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e1-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e4-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e5-2dda73af,
#w-node-f8b0dea3-9179-9272-70fd-a13a765844a2-2dda73af,
#w-node-f8b0dea3-9179-9272-70fd-a13a765844a9-2dda73af,
#w-node-_52f4a4be-95d3-477d-c4cd-bd3bdd4e9dd8-2dda73af,
#w-node-_22cfaa22-7667-7603-825f-0901101ac553-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de0114-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de011b-2dda73af,
#w-node-_3c9ce56e-416e-e8ba-61d0-48a87f7078a4-2dda73af,
#w-node-_67df1048-cae5-cd97-470f-829aa1309683-2dda73af,
#w-node-_67df1048-cae5-cd97-470f-829aa130968a-2dda73af,
#w-node-_67df1048-cae5-cd97-470f-829aa1309691-2dda73af,
#w-node-dcb02e53-e2d9-cb95-8d84-5a1c8731e985-2dda73af,
#w-node-aafbd022-e865-de38-8464-17d815cc5b82-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00fd-2dda73af,
#w-node-_9047c3f8-af52-9fee-f59c-778b18571469-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de0104-2dda73af,
#w-node-df19892b-d389-c8fb-a7de-573f1251404c-2dda73af,
#w-node-d5c2e20d-26c2-a701-f6be-29ffa6e2638b-2dda73af,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00f6-2dda73af,
#w-node-f1934cf6-66eb-32bf-5558-4dc1653edf5c-2dda73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_60c0ae6b-ed6e-0178-6536-107e164f74f8-20bcfccb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_60c0ae6b-ed6e-0178-6536-107e164f7504-20bcfccb {
  justify-self: end;
}

#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00db-ada6e8c8,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e2-ada6e8c8,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e3-ada6e8c8,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e0-ada6e8c8,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e1-ada6e8c8,
#w-node-_76f5b8d5-29f7-8cf0-4e9e-9c113fc86c5b-ada6e8c8,
#w-node-_76f5b8d5-29f7-8cf0-4e9e-9c113fc86c5c-ada6e8c8,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e4-ada6e8c8,
#w-node-_8f8c3569-9d2f-3bd5-1419-529721de00e5-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d26f9-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2707-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d272f-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2712-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2719-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2736-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2700-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d273e-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2745-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d274c-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2753-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d275a-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2761-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2768-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d276f-ada6e8c8,
#w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2776-ada6e8c8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_06a8ac69-b2bf-eb02-2aa1-97dbb21d4392-b21d4390 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_06a8ac69-b2bf-eb02-2aa1-97dbb21d4398-b21d4390 {
  justify-self: center;
}

#w-node-_06a8ac69-b2bf-eb02-2aa1-97dbb21d439f-b21d4390 {
  justify-self: end;
}

#w-node-d21b27f0-066f-7fa2-aaec-3bcec53bdd7f-c53bdd7d {
  justify-self: center;
}

@media screen and (max-width: 991px) {

  #w-node-_12ae2050-8788-021b-e38d-2e753241f5c5-2dda73af,
  #w-node-_52f4a4be-95d3-477d-c4cd-bd3bdd4e9dd8-2dda73af,
  #w-node-_8f8c3569-9d2f-3bd5-1419-529721de0114-2dda73af,
  #w-node-_8f8c3569-9d2f-3bd5-1419-529721de011b-2dda73af,
  #w-node-_3c9ce56e-416e-e8ba-61d0-48a87f7078a4-2dda73af,
  #w-node-aafbd022-e865-de38-8464-17d815cc5b82-2dda73af,
  #w-node-_9047c3f8-af52-9fee-f59c-778b18571469-2dda73af,
  #w-node-df19892b-d389-c8fb-a7de-573f1251404c-2dda73af,
  #w-node-f1934cf6-66eb-32bf-5558-4dc1653edf5c-2dda73af,
  #w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2707-ada6e8c8,
  #w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2712-ada6e8c8,
  #w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2719-ada6e8c8,
  #w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2745-ada6e8c8,
  #w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2753-ada6e8c8,
  #w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2761-ada6e8c8,
  #w-node-f64a9dec-7aa5-4323-6df0-38e3b24d2776-ada6e8c8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype'), url('../fonts/Gilroy-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-BoldItalic.ttf') format('truetype'), url('../fonts/Gilroy-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-BlackItalic.ttf') format('truetype'), url('../fonts/Gilroy-HeavyItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-Heavy.ttf') format('truetype'), url('../fonts/Gilroy-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gilroy-UltraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/JosefinSans-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/FontsFree-Net-Gilroy-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gotham-BookItalic.otf') format('opentype'), url('../fonts/Gotham-UltraItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gotham-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gotham-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gotham-Light.otf') format('opentype'), url('../fonts/Gotham-XLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond', serif;
  src: url('../fonts/Gotham-XLightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}