:root {
  --black-3: #16161a;
  --goldenrod: #e5bf42;
  --purple: #76099812;
  --techno-mauve: #2a2b47;
  --purple-darder: #6c048d;
  --goldenrod-2: #e5bf4266;
  --black-4: #0d0d11;
  --black: #1010138a;
  --dark-goldenrod: #a2831f;
  --lemon-chiffon: #f8ebc066;
  --goldenrod-3: #e5bf421a;
  --gold: #ecdd1b;
  --black-2: #060607c2;
}

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

body {
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 5rem;
  font-weight: 700;
}

h2 {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.1;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
}

p {
  padding-top: 20px;
  padding-bottom: 40px;
}

a {
  color: var(--goldenrod);
  text-decoration: none;
}

blockquote {
  border-left: 5px solid var(--goldenrod);
  color: #06060799;
  width: 100%;
  max-width: 70%;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 24px;
  font-style: italic;
  line-height: 1.3;
}

.hover-link-wrapper {
  z-index: 100;
  opacity: 1;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin-left: auto;
  margin-right: 0;
  padding: 0;
  display: flex;
  position: absolute;
  inset: auto auto 5vw 0%;
}

.hover-link-wrapper.video-link-wrapper {
  margin-left: -24px;
  position: relative;
  inset: 0 0 0 0;
}

.hover-link-wrapper.right {
  inset: auto 0% 5vw auto;
}

.home-hero {
  z-index: 10;
  background-color: var(--black-3);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hover-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #fff0;
  border: 1px solid #f5f3ed4a;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  text-decoration: none;
  display: flex;
}

.stripe-wrapper {
  z-index: 5;
  justify-content: center;
  width: 100vw;
  min-width: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: absolute;
  inset: 0% auto;
  overflow: hidden;
}

.transparent-fill {
  width: 100%;
}

.xxl-heading {
  letter-spacing: -.05em;
  margin-right: 1px;
  line-height: 1;
}

.button-text {
  z-index: 10;
  position: relative;
}

.grid-wrapper {
  z-index: 5;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
  grid-auto-columns: minmax(5vw, 1fr);
  grid-auto-flow: row;
  place-content: space-between;
  place-items: stretch start;
  width: 100%;
  display: grid;
  position: relative;
}

.wrapper {
  z-index: 10;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.wrapper.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.background-cover {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.subtitle {
  z-index: 10;
  color: var(--goldenrod);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
}

.subtitle.white {
  color: #fff;
  width: 100%;
  font-weight: 400;
}

.clip {
  position: relative;
  overflow: hidden;
}

.button {
  border: 1px solid var(--purple);
  background-color: var(--purple);
  color: var(--techno-mauve);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 24px;
  font-size: 11px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button:hover {
  border-color: var(--purple-darder);
  background-color: var(--techno-mauve);
  color: #fff;
}

.button.white-outline {
  border-style: solid;
  border-color: var(--goldenrod-2);
  background-color: var(--goldenrod);
  background-image: linear-gradient(to bottom, #a2831f, var(--goldenrod));
  color: var(--black-4);
}

.button.white-outline:hover {
  border-color: var(--black);
  background-color: var(--goldenrod-2);
  color: #fff;
}

.button.white-outline.small {
  padding: 10px 15px;
  font-size: 10px;
}

.button.white-outline.hide-mobile {
  background-image: linear-gradient(to bottom, var(--dark-goldenrod), var(--goldenrod));
}

.hero-content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  max-width: 60%;
  font-size: 1rem;
  display: flex;
  position: relative;
}

.pin-stripe {
  background-color: var(--black-3);
  width: 1px;
}

.stripe-container {
  opacity: .13;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

.stacked-description {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.stacked-description.horizontal {
  grid-column-gap: 12px;
  grid-template-columns: auto auto;
  grid-auto-flow: column;
  width: 100%;
}

.nav-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  position: relative;
}

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

.body-display {
  color: var(--lemon-chiffon);
  font-size: 16px;
  line-height: 1.6em;
}

.team-social-icon {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 10px;
  display: flex;
}

.team-social-icon.outline {
  border: 1px solid #e2e7f1;
}

.post-list-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 20px;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 100%;
  min-height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.3;
  text-decoration: none;
  display: grid;
}

.hero__slide-nav {
  display: none;
}

.hero__slide-image {
  width: 100vw;
  height: 100vh;
}

.hero__slides {
  display: flex;
}

.slide__image-wrapper {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider__arrows {
  display: none;
}

.hero-slider {
  color: #fff;
  background-color: #0000;
  min-height: 100vh;
}

.mask__slides {
  flex-flow: column wrap;
  display: flex;
}

.overlay {
  background-color: #0000004d;
  position: absolute;
  inset: 0%;
}

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

.subtitle-wrapper {
  margin-bottom: 18px;
  overflow: hidden;
}

.section {
  z-index: 10;
  background-color: var(--black-3);
  flex-direction: column;
  justify-content: center;
  padding: 100px 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.video-section {
  z-index: 10;
  color: #fff;
  padding-top: 240px;
  padding-bottom: 160px;
}

.section.dark {
  background-color: #16171d;
  background-image: linear-gradient(225deg, #000, #0a0a1800);
}

.section.full {
  padding: 0;
}

.section.white {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 0;
}

.section.white.last {
  margin-bottom: 100px;
}

.section.white.first {
  margin-top: 100px;
}

.section.dark-copy {
  background-color: #16171d;
  background-image: linear-gradient(225deg, #000, #0a0a1800);
}

.section.no-padding {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.card-circle {
  background-color: var(--purple);
  border-radius: 100%;
  width: 6vw;
  max-width: 800px;
  height: 6vw;
  max-height: 800px;
  position: absolute;
  inset: -6vw -6vw auto auto;
}

.card-circle.dark {
  background-color: #00000080;
}

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

.feature-card-info {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tripple-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  margin-bottom: 60px;
  display: grid;
}

.card-button-wrapper {
  padding-top: 9px;
  display: flex;
}

.intro-wrapper {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.services-card {
  grid-column-gap: 0px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding: 36px;
  display: grid;
}

.card-hover-item {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  border-top: 1px #f3f6fc;
  border-bottom: 1px #f3f6fc;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: space-between;
  place-items: flex-start stretch;
  padding: 0;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.large-heading {
  color: var(--techno-mauve);
  line-height: .9;
  position: relative;
}

.large-heading.white {
  color: #fff;
}

.button-2 {
  border: 1px solid var(--goldenrod-3);
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #090b19;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 28px;
  font-size: 11px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-2:hover {
  color: #090b19;
  background-color: #e2e7f1;
  border-color: #e2e7f1;
}

.button-2.grey-outline {
  border-color: var(--goldenrod-2);
  color: var(--goldenrod);
  background-color: #090b1900;
}

.button-2.grey-outline:hover {
  background-color: var(--goldenrod);
  color: var(--black-4);
  border-color: #e5bf4200;
}

.button-2.grey-outline.small:hover {
  background-image: linear-gradient(to bottom, var(--dark-goldenrod), var(--goldenrod));
}

.icon {
  z-index: 10;
  background-color: var(--purple);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  padding-left: 4px;
  display: flex;
  position: relative;
}

.icon.white {
  filter: invert();
  background-color: #76099800;
  width: 80px;
  min-width: 80px;
  height: 80px;
  min-height: 80px;
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 0;
  padding-right: 0;
}

.heading {
  z-index: 10;
  color: var(--techno-mauve);
  margin-top: 0;
  position: relative;
}

.heading.white {
  color: #fff;
}

.feature-card-description {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

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

.dual-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .85fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.client-quote-credit {
  border-left: 2px solid #fff;
  margin-left: -24px;
  padding-left: 24px;
}

.image-overlay {
  z-index: 1;
  background-color: #090b194d;
  position: absolute;
  inset: 0%;
}

.image-overlay.dark-overylay {
  background-color: #090b1973;
}

.image-overlay.light-overlay {
  background-color: #090b1926;
}

.image-overlay.gradient {
  background-color: #090b1926;
  background-image: linear-gradient(#000, #07070700 34%);
}

.video-info {
  grid-column-gap: 16px;
  grid-row-gap: 100px;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-left: 24px;
  display: grid;
}

.background-banner {
  position: absolute;
  inset: auto 0%;
}

.background-banner.video-banner {
  background-image: url('../images/Equipe-topaz-denoise-enhance-faceai.jpg');
  background-position: 50%;
}

.background-banner.projects-banner {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  inset: 0%;
}

.large-heading-2 {
  font-size: 4.4rem;
  line-height: .9;
}

.section-bottom-cover {
  z-index: 20;
  background-color: var(--black-3);
  height: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

.square-gradient {
  z-index: 2;
  opacity: 1;
  mix-blend-mode: multiply;
  background-image: radial-gradient(circle closest-corner, #2b2b2b00 22%, #2b2b2b4d 58%, #000000e3);
  width: 200vw;
  height: 200vw;
  position: absolute;
  bottom: -10%;
  left: -130%;
  transform: rotate(45deg);
}

.square-gradient.second {
  background-image: radial-gradient(circle farthest-side, #2b2b2b0f 80%, #0000009c 99%);
  position: absolute;
  top: 6%;
  bottom: 0%;
  left: -130%;
  transform: rotate(-45deg);
}

.membre {
  margin-bottom: 6vw;
  position: absolute;
  inset: auto 0% 0% auto;
}

.logo-technologue {
  min-width: 200px;
  position: relative;
  inset: auto auto 0% 0%;
}

.projects-search-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  height: 75px;
  display: grid;
}

.mega-menu-list-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--goldenrod-2);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.nav-link-2 {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-link-2.w--current {
  color: var(--gold);
}

.nav-link-2.submenu {
  border-top: 1px solid #000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mega-menu {
  z-index: 25;
  background-image: linear-gradient(to bottom, #040405f7, var(--black-4));
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  margin-left: -20px;
  margin-right: -20px;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.mega-menu.show {
  display: flex;
}

.navigation-cover {
  flex: 1;
  justify-content: space-between;
  height: 100%;
  margin-left: -1px;
  margin-right: -5px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.menu-collection-list-item {
  border-bottom: 1px solid var(--goldenrod-3);
}

.subtitle-2 {
  z-index: 10;
  color: var(--goldenrod);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 400;
  position: relative;
}

.left-navbar {
  letter-spacing: -.03em;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-start;
  min-width: 275px;
  max-width: 1000px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.brand {
  color: #090b19;
  text-transform: uppercase;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: stretch;
  font-size: 22px;
  display: flex;
}

.button-3 {
  color: var(--techno-mauve);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #2a2b4705;
  border: 1px solid #76099812;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 24px;
  font-size: 11px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-3:hover {
  background-color: var(--techno-mauve);
  color: #fff;
  border-color: #6c048d;
}

.nav-menu {
  z-index: 10;
  border: 1px #f3f6fc00;
  justify-content: flex-end;
  width: 50%;
  display: flex;
}

.list-item-arrow {
  filter: invert();
  width: 18px;
  min-width: 18px;
}

.team-social-wrapper {
  grid-column-gap: 9px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.dropdown-lottie {
  display: none;
}

.wrapper-2 {
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  position: relative;
}

.wrapper-2.navbar-wrapper {
  justify-content: space-between;
  max-width: 98%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.wrapper-2.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.stacked-description-2 {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.stacked-description-2.horizontal {
  grid-column-gap: 12px;
  grid-template-columns: auto auto;
  grid-auto-flow: column;
  width: 100%;
}

.mega-menu-overlay {
  z-index: 20;
  background-color: #090b1980;
  display: none;
  position: fixed;
  inset: 0%;
}

.large-menu-wrapper {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 49px;
  flex-direction: column;
  grid-template-rows: 75px auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 25px;
  display: grid;
  position: relative;
}

.full-menu-button-2 {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 80px;
  margin-right: -.5px;
  padding: 26px;
  display: flex;
}

.full-menu-button-2.hide {
  display: none;
}

.navigation-links {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(244px, 1fr));
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: flex;
  position: relative;
}

.mega-category-list {
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
}

.mega-category-list.middle {
  border-right: 1px solid var(--goldenrod-3);
  border-left: 1px solid var(--goldenrod-3);
}

.mega-social-wrapper {
  justify-content: flex-end;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.menu-wrapper {
  border: 1px #f3f6fc00;
  flex: none;
  justify-content: flex-end;
  align-items: stretch;
  padding-right: 20px;
  display: flex;
  position: relative;
  overflow: visible;
}

.nav-link-hover-button {
  width: 100%;
  height: 46px;
  position: absolute;
}

.top-gradient {
  z-index: 2;
  background-image: linear-gradient(to bottom, var(--black-4) 28%, #2a2b4700);
  opacity: 1;
  mix-blend-mode: multiply;
  width: 100vw;
  height: 80px;
  position: absolute;
  inset: 0% 0% auto;
}

.logo {
  width: 340px;
  max-height: 80px;
  display: block;
}

.slogan {
  z-index: 10;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  position: relative;
}

.header {
  background-color: #ddd0;
  justify-content: center;
  height: 100px;
  margin-bottom: -100px;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.square-gradient-section {
  z-index: 2;
  opacity: 1;
  mix-blend-mode: multiply;
  background-image: radial-gradient(circle closest-corner, #2b2b2b00 22%, #2b2b2b4d 58%, #000000e3);
  width: 200vw;
  height: 200vw;
  position: absolute;
  bottom: -10%;
  left: -130%;
  transform: rotate(45deg);
}

.square-gradient-section.second {
  background-image: radial-gradient(circle farthest-side, #2b2b2b0f 80%, #0000009c 99%);
  position: absolute;
  top: 6%;
  bottom: 0%;
  left: -130%;
  transform: rotate(-45deg);
}

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

.service-menu-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--dark-goldenrod);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.body-display-2 {
  color: #6e7488;
  line-height: 1.6em;
}

.subtitle-3 {
  z-index: 10;
  color: #090b19;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  position: relative;
}

.pin-stripe-2 {
  background-color: #f3f6fc;
  width: 1px;
}

.pin-stripe-2.white {
  background-color: #ffffff1f;
}

.stripe-container-2 {
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

.menu-list-item {
  grid-column-gap: 18px;
  grid-row-gap: 16px;
  border-top: 1px none var(--dark-goldenrod);
  border-bottom: 1px solid var(--dark-goldenrod);
  color: var(--dark-goldenrod);
  letter-spacing: -.03em;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  padding: 24px 29px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25em;
  text-decoration: none;
  transition: padding .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);
  display: grid;
}

.menu-list-item:hover {
  color: #090b19;
}

.menu-list-item.w--current {
  color: #090b19;
  padding-left: 36px;
}

.hover-link-2 {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #fff0;
  border: 1px solid #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  text-decoration: none;
  display: flex;
}

.logos-headline {
  color: #6e7488;
  align-items: center;
  display: flex;
}

.page-hero {
  z-index: 10;
  color: #fff;
  justify-content: center;
  min-height: 700px;
  padding-top: 180px;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.horizontal-line {
  background-color: #e2e7f1;
  flex: 1;
  height: 1px;
  margin-left: 18px;
}

.horizontal-line.white {
  background-color: #ffffff1f;
}

.inner-page-hero-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 120px;
  display: flex;
}

.hero-background-image {
  height: 100%;
  position: relative;
  inset: 0%;
}

.hero-background-image.services-background {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.hero-background-image.services-background.split {
  background-color: #060607d6;
}

.button-4 {
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #090b19;
  border: 1px solid #090b19;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 28px;
  font-size: 11px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-4:hover {
  color: #090b19;
  background-color: #e2e7f1;
  border-color: #e2e7f1;
}

.button-4.white-outline {
  background-color: #090b1900;
  border-style: solid;
  border-color: #ffffffbf;
  font-family: Inter, sans-serif;
}

.button-4.white-outline:hover {
  color: #fff;
  background-color: #090b19;
  border-color: #090b19;
}

.button-4.grey-outline {
  color: #090b19;
  background-color: #090b1900;
  border-color: #e2e7f1;
}

.button-4.grey-outline:hover {
  color: #fff;
  background-color: #090b19;
  border-color: #090b19;
}

.button-4.grey-outline.small {
  margin-top: 60px;
}

.team-collection-item {
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.team-collection-item:nth-child(2n) {
  margin-top: 80px;
  margin-bottom: 80px;
}

.team-collection-item:last-child {
  margin-top: 160px;
}

.team-collection-item.two-column-item:nth-child(2n) {
  margin-top: 80%;
  margin-bottom: -20%;
}

.team-collection-item.two-column-item:last-child {
  margin-top: 0;
  margin-bottom: 0;
}

.list-heading-wrapper {
  grid-column-gap: 7px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  padding-left: 24px;
}

.services-wrapper {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 80px;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 60px;
  display: flex;
}

.services-info {
  grid-column-gap: 0px;
  grid-row-gap: 18px;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.recent-projects-info {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.collection-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.collection-list.two-columns {
  grid-column-gap: 3vw;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  grid-auto-flow: row;
  align-content: stretch;
  align-items: stretch;
}

.checklist-icon {
  background-color: #fff;
  border: 1px solid #e2e7f1;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
}

.sticky-services-menu {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  white-space: nowrap;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.sticky-services-menu.extra-top-margin {
  flex-direction: column;
  display: flex;
  top: 148px;
}

.service-description {
  padding-right: 24px;
}

.large-heading-3 {
  line-height: 1.15em;
}

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

.paragraph-light {
  color: #ffffff80;
  margin-top: 20px;
  font-size: 15px;
}

.footer-grid-long {
  grid-template-rows: auto;
  grid-template-columns: 4fr 1fr;
  width: 100%;
}

.footer-grid-long.wrapper {
  border-bottom: 1px solid var(--goldenrod-2);
  padding-bottom: 100px;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  padding-right: 40px;
  display: flex;
}

.container {
  width: 10%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.button-5 {
  color: #5e4dcd;
  background-color: #ffd2dd;
  border-radius: 10px;
  padding: 20px 30px;
  font-size: 16px;
}

.footer-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

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

.footer-title {
  color: var(--goldenrod);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-size: 15px;
}

.title-wrap-large {
  flex-direction: column;
  margin-bottom: 32px;
  display: flex;
}

.footer-title-large {
  color: #fff;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-05 {
  background-color: var(--black-4);
  padding: 132px 5vw 40px;
  position: relative;
}

.flex-v {
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
}

.flex-v.side {
  max-width: 400px;
}

.title-project {
  padding-bottom: 20px;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.section-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 5vw;
  display: flex;
  position: relative;
}

.section-2.no-top-padding {
  padding-top: 0;
}

.project-description {
  grid-column-gap: 24px;
  grid-row-gap: 60px;
  color: var(--goldenrod-2);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 80px 60px;
  display: grid;
  position: relative;
}

.project-description.top-grey-border {
  flex: 1;
  max-width: 70%;
}

.success-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  background-color: #ffffffd9;
  border: 1px solid #e2e7f1;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  padding: 60px;
  display: grid;
}

.body-display-3 {
  color: #6e7488;
  font-size: 16px;
  line-height: 1.6em;
}

.field-label {
  letter-spacing: 4px;
  text-transform: uppercase;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
}

.field-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.project-features {
  flex: 1;
  min-width: 320px;
  max-width: 30%;
  padding-top: 0;
  position: relative;
}

.project-description-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.utility-message {
  background-color: #0000;
  height: 100%;
  margin-top: auto;
  padding: 0;
}

.list-item-arrow-2 {
  width: 18px;
  min-width: 18px;
}

.subtitle-4 {
  z-index: 10;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
}

.error-message {
  color: #090b19;
  background-color: #e2e7f1;
  margin-top: 0;
  padding: 12px 18px;
}

.text-field {
  border: 1px solid var(--goldenrod);
  background-color: var(--black-3);
  color: #fff;
  border-radius: 2px;
  flex: 1;
  min-height: 54px;
  margin-bottom: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  color: var(--black-3);
  background-color: #fff;
  border-color: #d4ddee;
}

.text-field::placeholder {
  color: var(--goldenrod);
}

.text-field.large {
  min-height: 140px;
}

.submit-button {
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #090b19;
  border-radius: 100px;
  min-width: 160px;
  padding: 16px 32px;
  font-size: 12px;
}

.square-lines {
  opacity: .33;
  mix-blend-mode: multiply;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.div-overlay-full-yellow {
  background-color: var(--goldenrod);
  width: 200%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.carousel {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.image-wrapper {
  opacity: .6;
  margin-right: 5px;
  padding: 1vh 5px;
  transition: opacity .2s;
  display: flex;
}

.image-wrapper.slick-center {
  opacity: 1;
}

.image {
  object-fit: contain;
  max-height: 76vh;
}

.swiper-component {
  width: 100%;
  position: relative;
}

.swiper-component.slider1 {
  max-height: 800px;
}

.swiper {
  width: 100%;
}

.swiper.swiper2 {
  transform: translate(0, -40px)scale(.8);
}

.swiper-wrapper {
  justify-content: flex-start;
  align-items: center;
  min-height: 500px;
  display: flex;
}

.swiper-slide {
  flex: none;
  width: 33.3333%;
  margin-right: 20px;
}

.swiper-slide.swiper-slide-active {
  z-index: 1;
  position: relative;
  transform: scale(1.3);
}

.slider-square {
  text-align: left;
  transition: color .35s;
}

.slider-square_img {
  transform-origin: 50% 0;
  width: 100%;
  min-width: 33vw;
  min-height: 260px;
  max-height: 500px;
  padding-top: 66%;
  transition: transform .35s;
  position: relative;
  overflow: hidden;
}

.slider-square_photo {
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  max-height: 90vh;
  position: absolute;
  inset: 0%;
}

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

.image-hero.split {
  min-width: 50vw;
  max-width: 50%;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}

.collection-list-2 {
  grid-column-gap: 4vw;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.card-circle-2 {
  background-color: #f3f6fc;
  border-radius: 100%;
  width: 6vw;
  max-width: 800px;
  height: 6vw;
  max-height: 800px;
  position: absolute;
  inset: -6vw -6vw auto auto;
}

.card-circle-2.overlay {
  background-color: #090b1959;
}

.project-image {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.project-info-top {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.project-info-top.team-info {
  flex-direction: row;
  justify-content: space-between;
  font-size: .7em;
}

.subtitle-5 {
  z-index: 10;
  color: #090b19;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  position: relative;
}

.subtitle-5.white {
  color: #fff;
  text-align: right;
  flex: 1;
  margin-top: 20px;
  margin-left: 20px;
}

.project-card-info {
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 36px 7%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.background-image {
  z-index: 1;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.project-item {
  grid-column-gap: 18px;
  grid-row-gap: 24px;
  color: #fff;
  flex-direction: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  margin-bottom: 30px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.project-info-bottom {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.team-description {
  margin-bottom: 20px;
}

.full-menu-button {
  opacity: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 80px;
  margin-right: -.5px;
  padding: 26px;
  display: flex;
}

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

.rich-text {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.rich-text.last {
  margin-bottom: 100px;
}

.rich-text p {
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.rich-text h2 {
  margin-bottom: 20px;
}

.rich-text.max {
  min-width: 650px;
  max-width: 40vw;
  margin-left: 0;
  font-size: 1.3rem;
}

.spacer {
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.spacer.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.attribution {
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.block-quote {
  min-width: 320px;
  max-width: 70%;
  font-size: 24px;
  font-style: italic;
  line-height: 1.3;
}

.block-quote-2 {
  min-width: 320px;
}

.slider {
  background-color: #0000;
  height: auto;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
}

.mask, .slide-one {
  height: auto;
}

.slide-inner-flex {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.slide-two {
  background-color: #0004ff;
  height: 500px;
}

.image-slider {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.no-padding {
  padding-top: 10px;
  padding-bottom: 0;
}

.banner-wrapper {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-cover-wrapper {
  z-index: 15;
  width: 66.66%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
  overflow: visible;
}

.banner-content {
  justify-content: center;
  align-items: center;
  max-width: 960px;
  min-height: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-intro {
  z-index: 20;
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  color: #fff;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: grid;
  position: relative;
}

.image-cover {
  z-index: 20;
  background-color: #fff;
  justify-content: center;
  width: 0%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.large-heading-4 {
  line-height: 1.15em;
}

.subtitle-6 {
  z-index: 10;
  color: #090b19;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  position: relative;
}

.subtitle-6.white {
  color: #fff;
}

.button-6 {
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #090b19;
  border: 1px solid #090b19;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 28px;
  font-size: 11px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-6:hover {
  color: #090b19;
  background-color: #e2e7f1;
  border-color: #e2e7f1;
}

.button-6.white-outline {
  background-color: #090b1900;
  border-style: solid;
  border-color: #ffffffbf;
  font-family: Inter, sans-serif;
}

.button-6.white-outline:hover {
  color: #fff;
  background-color: #090b19;
  border-color: #090b19;
}

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

.dropdown-menu {
  background-color: var(--black-2);
  border-radius: 6px;
  height: auto;
  margin-top: 80px;
  margin-left: -50px;
  margin-right: -50px;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
  transform: translate(0, 20px);
}

.dropdown-menu.show {
  height: auto;
}

.sub-nav-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  margin-top: 40px;
  margin-left: 0;
  margin-right: 0;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  display: flex;
  position: relative;
}

.sub-nav-link.w--current {
  color: var(--gold);
}

.sub-nav-link.submenu {
  white-space: pre-wrap;
  margin-top: 0;
}

.dropdown-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 20px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.dropdown-link.w--current {
  color: var(--gold);
}

.dropdown-link.submenu {
  border-top: 1px solid #000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.subnav-button {
  z-index: 10;
  color: var(--goldenrod);
  align-self: stretch;
  padding: 10px 20px;
  transition: color .2s, background-color .2s;
  position: relative;
}

.subnav-button:hover {
  background-color: var(--black-3);
  color: #fff;
}

.icon-4 {
  margin-right: 5px;
}

.nav-link-surtitle {
  color: #fff;
  font-size: 10px;
  display: inline-block;
}

.lightbox-img {
  border-radius: 6px;
  width: 100%;
  overflow: hidden;
}

.text-copyright {
  opacity: .6;
  color: var(--lemon-chiffon);
  margin-top: 10px;
  font-size: 15px;
}

@media screen and (min-width: 1280px) {
  .nav-link.w--current {
    color: var(--goldenrod);
  }

  .brand, .full-menu-button-2 {
    flex: none;
  }
}

@media screen and (min-width: 1440px) {
  .left-navbar {
    flex: 0 auto;
  }
}

@media screen and (min-width: 1920px) {
  .grid-wrapper {
    align-items: stretch;
    width: 90%;
  }
}

@media screen and (max-width: 991px) {
  .xxl-heading {
    font-size: 64px;
  }

  .subtitle {
    font-weight: 500;
  }

  .subtitle.white {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 200;
  }

  .button.white-outline.small {
    margin-left: auto;
    margin-right: 0;
  }

  .hero-content-wrapper {
    max-width: none;
  }

  .pin-stripe.hide-tablet {
    display: none;
  }

  .stacked-description.horizontal {
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 20px;
    display: flex;
  }

  .nav-link {
    padding: 20px 12px;
    font-size: 12px;
    text-decoration: none;
  }

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

  .post-list-item {
    height: auto;
    font-size: 16px;
  }

  .dropdown {
    border-bottom: 1px solid #e2e7f1;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .section.video-section {
    padding-top: 180px;
    padding-bottom: 120px;
  }

  .section.dark, .section.dark-copy {
    overflow: hidden;
  }

  .services-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .tripple-grid {
    grid-row-gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  .services-card {
    padding: 36px 24px;
  }

  .dual-wrapper {
    grid-template-columns: 1fr;
  }

  .projects-search-wrapper {
    order: 1;
    grid-template-columns: 1fr;
  }

  .nav-link-2 {
    padding: 20px 12px;
    font-size: 12px;
    text-decoration: none;
  }

  .nav-link-2.w--current {
    color: #090b19;
  }

  .mega-menu {
    padding-top: 50px;
  }

  .mega-menu.show {
    display: flex;
  }

  .content-menu {
    overflow: hidden;
  }

  .left-navbar {
    z-index: 40;
    justify-content: space-between;
    width: 100%;
  }

  .nav-menu {
    display: none;
  }

  .dropdown-lottie {
    filter: invert();
    justify-content: center;
    align-items: center;
    width: 18px;
    margin-left: 10px;
    display: flex;
  }

  .large-menu-wrapper {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    padding-top: 75px;
    padding-bottom: 0;
    display: flex;
  }

  .full-menu-button-2.hide {
    display: flex;
  }

  .mega-category-list {
    display: block;
  }

  .menu-wrapper {
    padding-right: 0;
  }

  .slogan {
    font-weight: 500;
  }

  .square-gradient-section, .square-gradient-section.second {
    height: auto;
  }

  .inner-page-hero-wrapper {
    grid-template-columns: 1fr;
  }

  .team-collection-item:nth-child(odd) {
    margin-top: 0;
  }

  .team-collection-item:nth-child(2n) {
    margin-top: 60%;
    margin-bottom: -40%;
  }

  .services-wrapper, .collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-services-menu {
    position: relative;
    top: 0;
  }

  .sticky-services-menu.extra-top-margin {
    top: 0;
  }

  .footer-column {
    padding-right: 20px;
  }

  .section-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .project-description {
    padding: 36px 24px;
  }

  .project-description.top-grey-border {
    max-width: 100%;
  }

  .project-features {
    max-width: none;
    padding-top: 0;
  }

  .project-description-wrapper {
    grid-row-gap: 48px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
  }

  .div-overlay-full-yellow {
    width: 100%;
  }

  .swiper-slide {
    width: 50%;
  }

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

  .project-item {
    min-height: 375px;
    max-height: 550px;
  }

  .full-menu-button {
    opacity: 1;
    filter: invert();
  }

  .rich-text.max {
    min-width: auto;
    max-width: 75vw;
  }

  .image-cover-wrapper {
    width: 50%;
  }

  .banner-content {
    min-height: 325px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sub-nav-link {
    padding: 20px 12px;
    font-size: 12px;
    text-decoration: none;
  }

  .sub-nav-link.w--current {
    color: #090b19;
  }

  .dropdown-link {
    padding: 20px 12px;
    font-size: 12px;
    text-decoration: none;
  }

  .dropdown-link.w--current {
    color: #090b19;
  }
}

@media screen and (max-width: 767px) {
  .hover-link-wrapper.video-link-wrapper {
    display: flex;
  }

  .xxl-heading {
    font-size: 54px;
  }

  .grid-wrapper {
    grid-row-gap: 120px;
  }

  .pin-stripe.hide-horizontal-mobile {
    display: none;
  }

  .nav-link {
    border-bottom: 1px solid #f3f6fc;
    justify-content: flex-start;
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .tripple-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .projects-search-wrapper {
    height: 65px;
  }

  .nav-link-2 {
    border-bottom: 1px solid #f3f6fc;
    justify-content: flex-start;
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-link-2.bottom {
    border-bottom-style: none;
  }

  .left-navbar {
    width: 100%;
    min-width: auto;
    padding-left: 0;
  }

  .brand {
    padding-left: 18px;
  }

  .list-item-arrow {
    width: 14px;
    min-width: 14px;
  }

  .wrapper-2.navbar-wrapper {
    border-style: none;
    border-color: #000;
  }

  .large-menu-wrapper {
    grid-template-rows: 65px auto;
  }

  .navigation-links {
    grid-template-columns: 1fr;
  }

  .mega-social-wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }

  .menu-wrapper {
    display: none;
  }

  .square-gradient-section.second {
    width: 200vw;
    height: 200vw;
  }

  .menu-list-item {
    grid-template-columns: auto 1fr;
  }

  .page-hero {
    min-height: 550px;
  }

  .inner-page-hero-wrapper {
    grid-row-gap: 60px;
    grid-template-rows: auto auto auto;
  }

  .team-collection-item {
    flex-direction: column;
    flex: 1;
    min-width: 40%;
    min-height: 500px;
    display: flex;
  }

  .team-collection-item:nth-child(2n) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .team-collection-item.two-column-item:nth-child(2n) {
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .services-wrapper {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .services-info {
    grid-template-columns: 1fr;
  }

  .collection-list {
    grid-row-gap: 36px;
    grid-template-columns: 1fr;
  }

  .collection-list.two-columns {
    grid-row-gap: 24px;
    flex-flow: wrap;
    grid-template-columns: 1fr;
    display: flex;
  }

  .service-examples-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid-long {
    grid-template-rows: auto auto;
    grid-template-columns: 4fr;
  }

  .footer-column {
    padding-right: 0;
  }

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

  .project-description {
    grid-row-gap: 36px;
    grid-template-columns: 1fr;
  }

  .field-wrapper {
    grid-template-columns: 1fr;
  }

  .list-item-arrow-2 {
    width: 14px;
    min-width: 14px;
  }

  .image {
    max-height: 40vh;
  }

  .swiper-slide {
    width: 100%;
  }

  .collection-list-2 {
    grid-row-gap: 36px;
    grid-template-columns: 1fr;
  }

  .project-item {
    width: 100%;
    height: auto;
  }

  .rich-text.max {
    max-width: 100vw;
  }

  .slide-one {
    height: 50vw;
  }

  .slide-two {
    height: 35vw;
  }

  .image-cover-wrapper {
    width: 100%;
  }

  .sub-nav-link {
    border-bottom: 1px solid #f3f6fc;
    justify-content: flex-start;
    padding-left: 18px;
    padding-right: 18px;
  }

  .sub-nav-link.bottom {
    border-bottom-style: none;
  }

  .dropdown-link {
    border-bottom: 1px solid #f3f6fc;
    justify-content: flex-start;
    padding-left: 18px;
    padding-right: 18px;
  }

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

@media screen and (max-width: 479px) {
  body {
    background-color: var(--black-3);
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  h3 {
    font-size: 1.8em;
  }

  h4 {
    font-size: 1.5rem;
  }

  blockquote {
    max-width: 100%;
    font-size: 18px;
  }

  .hover-link-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 6vw;
    padding: 0;
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding-top: 0;
  }

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

  .grid-wrapper {
    grid-row-gap: 100px;
    position: absolute;
  }

  .wrapper.interieur {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .background-cover {
    flex: 0 auto;
    align-items: flex-start;
    position: relative;
  }

  .button.white-outline.small {
    letter-spacing: 3px;
    white-space: nowrap;
    flex: none;
    font-size: 9px;
  }

  .hero-content-wrapper {
    margin-bottom: 40px;
    padding-top: 20px;
    font-size: .8rem;
  }

  .stacked-description {
    grid-template-columns: 1fr;
  }

  .stacked-description.horizontal {
    justify-content: flex-start;
    align-items: center;
  }

  .body-display {
    color: #fff3cb7d;
  }

  .post-list-item {
    grid-template-columns: 36px;
    display: flex;
  }

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

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

  .section.dark {
    background-image: linear-gradient(225deg, #030303f5, #0a0a1800);
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section.dark-copy {
    background-image: linear-gradient(225deg, #030303f5, #0a0a1800);
  }

  .section.no-padding {
    padding-bottom: 0;
  }

  .tripple-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 0;
  }

  .services-card {
    padding: 0 0 30px;
  }

  .client-quote-credit {
    margin-left: 0;
    padding-left: 18px;
  }

  .video-info {
    grid-row-gap: 48px;
    padding-left: 0;
  }

  .background-banner.video-banner {
    background-position: 58%;
  }

  .large-heading-2 {
    font-size: 36px;
  }

  .square-gradient {
    background-image: radial-gradient(circle closest-corner, #2b2b2b00, #2b2b2b4d 25%, #000000e3);
    inset: -32% 20% auto -122%;
  }

  .square-gradient.second {
    background-image: radial-gradient(circle farthest-side, #2b2b2b0f 37%, #0000009c 99%);
    top: 60%;
    left: -102%;
  }

  .membre {
    margin-bottom: 130px;
    margin-left: 1rem;
    margin-right: 1rem;
    inset: auto 0% 0% auto;
  }

  .logo-technologue {
    width: 100px;
    min-width: 33vw;
    margin-right: 1rem;
  }

  .mega-menu-list-wrapper {
    grid-template-rows: auto;
    grid-auto-rows: auto;
    align-items: start;
  }

  .subtitle-2 {
    font-size: 8px;
  }

  .brand {
    flex: 1;
    align-items: stretch;
    padding-left: 0;
  }

  .wrapper-2.navbar-wrapper {
    max-width: none;
  }

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

  .stacked-description-2.horizontal {
    grid-template-columns: minmax(230px, 1fr) repeat(auto-fit, .25px);
    justify-content: space-between;
    display: flex;
  }

  .large-menu-wrapper {
    padding-top: 90px;
  }

  .full-menu-button-2 {
    margin-right: -13.5px;
  }

  .logo {
    width: 250px;
  }

  .header {
    height: 65px;
    padding-left: 5vw;
  }

  .hide-mobile {
    display: none;
  }

  .square-gradient-section {
    background-image: radial-gradient(circle closest-corner, #2b2b2b00, #2b2b2b4d 25%, #000000e3);
    height: 200vw;
    inset: -21% 0% auto auto;
  }

  .square-gradient-section.second {
    background-image: radial-gradient(circle farthest-side, #2b2b2b0f 37%, #0000009c 99%);
    top: 55%;
    left: -102%;
  }

  .service-menu-list {
    grid-auto-rows: 1fr;
  }

  .menu-list-item {
    grid-template-columns: auto 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .logos-headline {
    flex-direction: row;
    align-items: center;
  }

  .page-hero {
    flex-direction: column-reverse;
    justify-content: flex-start;
    min-height: 670px;
    padding: 0 0 40px;
  }

  .horizontal-line {
    width: 100%;
    min-height: 1px;
    margin-top: 0;
    margin-left: 6px;
  }

  .horizontal-line.white {
    margin-top: 0;
  }

  .inner-page-hero-wrapper {
    grid-row-gap: 60px;
    padding-bottom: 0;
  }

  .hero-background-image.services-background.split {
    height: 50%;
  }

  .team-collection-item {
    flex-direction: column;
    min-width: 100%;
    min-height: 350px;
  }

  .list-heading-wrapper {
    grid-template-columns: auto 1fr;
    width: 100%;
    padding-left: 18px;
  }

  .collection-list {
    grid-row-gap: 24px;
  }

  .large-heading-3 {
    font-size: 36px;
  }

  .footer-05 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

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

  .project-description {
    grid-row-gap: 24px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .image {
    max-height: 65vw;
  }

  .swiper.swiper2 {
    transform: none;
  }

  .swiper-wrapper {
    min-height: 400px;
    transform: none;
  }

  .slider-square_img {
    min-width: 60vw;
  }

  .slider-square_photo {
    max-height: 600px;
  }

  .image-hero {
    min-height: 375px;
  }

  .image-hero.split {
    width: 100%;
    min-width: auto;
    max-width: none;
    min-height: 375px;
  }

  .collection-list-2 {
    grid-row-gap: 24px;
  }

  .project-card-info {
    padding: 18px 12px;
  }

  .rich-text.max {
    font-size: 1.1rem;
  }

  .slider {
    margin-bottom: 0;
  }

  .banner-content {
    min-height: auto;
    padding: 48px 12px;
  }

  .banner-intro {
    grid-row-gap: 24px;
  }
}

#w-node-_60b9cff3-4d6b-5707-6f7e-efca65e31ae1-bac45640 {
  grid-area: 2 / 2 / 4 / 3;
  place-self: end;
}

#w-node-_60b9cff3-4d6b-5707-6f7e-efca65e31ae4-bac45640 {
  grid-area: 2 / 2 / 3 / 3;
  justify-self: start;
}

#w-node-_60b9cff3-4d6b-5707-6f7e-efca65e31aec-bac45640 {
  justify-self: start;
}

#w-node-ccede518-f0d0-4c2b-2963-947c75f36cfd-bac45640 {
  grid-area: 3 / 2 / 3 / 2;
}

#w-node-b54e0b43-0ef5-c50e-4bdb-e43dca6971dc-bac45640 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_60b9cff3-4d6b-5707-6f7e-efca65e31af1-bac45640 {
  grid-area: 1 / 3 / 4 / 4;
}

#w-node-_8cb3de6f-cbed-5cfa-a36e-6c24d1b929fa-bac45640 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8cb3de6f-cbed-5cfa-a36e-6c24d1b92a01-bac45640 {
  grid-area: 1 / 3 / 2 / 4;
  place-self: center end;
}

#w-node-b7aaa227-75a3-080e-f542-5121a3741d13-bac45640 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b7aaa227-75a3-080e-f542-5121a3741d1a-bac45640 {
  grid-area: 1 / 3 / 2 / 4;
  place-self: center end;
}

#w-node-db0418a8-33c2-c935-7e7f-90946a23fac3-bac45640 {
  justify-self: start;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18c9f-bac45640 {
  grid-area: 1 / 1 / 2 / 3;
  justify-self: stretch;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18ca0-bac45640, #w-node-b8f9e5d6-168b-3d18-c17e-67768c28109c-bac45640, #w-node-a7c51300-57dc-6eba-166f-3b8856d18ca3-bac45640, #w-node-a7c51300-57dc-6eba-166f-3b8856d18ca8-bac45640, #name-3.w-node-a7c51300-57dc-6eba-166f-3b8856d18caa-bac45640, #w-node-a7c51300-57dc-6eba-166f-3b8856d18cac-bac45640, #field.w-node-a7c51300-57dc-6eba-166f-3b8856d18cae-bac45640 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18caf-bac45640 {
  justify-self: start;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18cb9-bac45640 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18cc0-bac45640 {
  place-self: center start;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18cc2-bac45640 {
  place-self: center end;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18cc4-bac45640 {
  place-self: center start;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18cc6-bac45640 {
  place-self: center end;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18cc8-bac45640 {
  place-self: center start;
}

#w-node-a7c51300-57dc-6eba-166f-3b8856d18cca-bac45640 {
  place-self: center end;
}

#w-node-_6d94e436-222f-8019-4831-8102bf9aa637-bac45640 {
  place-self: center start;
}

#w-node-_6d94e436-222f-8019-4831-8102bf9aa639-bac45640 {
  place-self: center end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d48-acf69d40 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center start;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d5f-acf69d40 {
  grid-area: 1 / 2 / 2 / 4;
  place-self: center stretch;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d60-acf69d40 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d66-acf69d40 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d68-acf69d40 {
  place-self: center start;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d6b-acf69d40 {
  justify-self: end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d70-acf69d40, #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d73-acf69d40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d75-acf69d40 {
  place-self: center end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d76-acf69d40, #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d79-acf69d40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d7b-acf69d40 {
  place-self: center end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d7c-acf69d40, #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d7f-acf69d40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d83-acf69d40 {
  place-self: center end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d84-acf69d40 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d86-acf69d40 {
  align-self: center;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d89-acf69d40 {
  justify-self: end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d8e-acf69d40, #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d91-acf69d40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d93-acf69d40 {
  justify-self: end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d97-acf69d40 {
  place-self: center end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d98-acf69d40, #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d9b-acf69d40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d9d-acf69d40 {
  justify-self: end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69da1-acf69d40 {
  place-self: center end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69da2-acf69d40 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69da4-acf69d40 {
  place-self: center start;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69da7-acf69d40 {
  justify-self: end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69dac-acf69d40, #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69daf-acf69d40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69db1-acf69d40 {
  place-self: center end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69db2-acf69d40, #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69db5-acf69d40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69db7-acf69d40 {
  place-self: center end;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69db8-acf69d40, #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69dbb-acf69d40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_05f7f175-d13f-d404-3cb7-ea4facf69dbd-acf69d40 {
  place-self: center end;
}

#w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f9092f4-016db93e {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f9092fc-016db93e {
  justify-self: start;
}

#w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f909301-016db93e {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-ae1d469c-ef81-db0d-05a0-4827af89b3e1-016db93e {
  place-self: center;
}

#w-node-affc1e0e-97c7-531a-84bb-cac8f2377ec5-0972ab7d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-affc1e0e-97c7-531a-84bb-cac8f2377ecc-0972ab7d {
  grid-area: 1 / 3 / 2 / 4;
  place-self: center end;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f94e-0972ab7d {
  grid-area: 1 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f954-0972ab7d {
  align-self: center;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f956-0972ab7d {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f959-0972ab7d {
  align-self: center;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f95b-0972ab7d {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f95e-0972ab7d {
  align-self: center;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f960-0972ab7d {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f962-0972ab7d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f965-0972ab7d {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f968-0972ab7d {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96b-0972ab7d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96c-0972ab7d {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f973-0972ab7d {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f976-0972ab7d {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-b44aa8ff-a7ed-b7d2-2c5e-c3513c5dbc35-3c5dbc30 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-b44aa8ff-a7ed-b7d2-2c5e-c3513c5dbc3e-3c5dbc30 {
  justify-self: start;
}

#w-node-_6733c138-7c03-8d39-ce52-18c18a9d22be-158b9e5e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-af578892-30d3-83a3-af2b-71062ebe0cce-2ebe0ccd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-af578892-30d3-83a3-af2b-71062ebe0cd5-2ebe0ccd {
  align-self: stretch;
}

#w-node-af578892-30d3-83a3-af2b-71062ebe0cde-2ebe0ccd, #w-node-af578892-30d3-83a3-af2b-71062ebe0ce0-2ebe0ccd, #w-node-af578892-30d3-83a3-af2b-71062ebe0ce2-2ebe0ccd, #w-node-af578892-30d3-83a3-af2b-71062ebe0ce4-2ebe0ccd, #w-node-_77979786-2dbc-344c-97e5-0b5b84039572-2ebe0ccd, #w-node-ba1c8afa-6e91-2c0f-33b5-d93bfb345c92-2ebe0ccd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ba1c8afa-6e91-2c0f-33b5-d93bfb345c99-2ebe0ccd {
  align-self: stretch;
}

#w-node-ba1c8afa-6e91-2c0f-33b5-d93bfb345ca2-2ebe0ccd, #w-node-ba1c8afa-6e91-2c0f-33b5-d93bfb345ca4-2ebe0ccd, #w-node-ba1c8afa-6e91-2c0f-33b5-d93bfb345ca6-2ebe0ccd, #w-node-ba1c8afa-6e91-2c0f-33b5-d93bfb345ca8-2ebe0ccd, #w-node-ba1c8afa-6e91-2c0f-33b5-d93bfb345cab-2ebe0ccd, #w-node-af578892-30d3-83a3-af2b-71062ebe0ce6-2ebe0ccd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-af578892-30d3-83a3-af2b-71062ebe0ced-2ebe0ccd {
  align-self: stretch;
}

#w-node-af578892-30d3-83a3-af2b-71062ebe0cf6-2ebe0ccd, #w-node-af578892-30d3-83a3-af2b-71062ebe0cf8-2ebe0ccd, #w-node-af578892-30d3-83a3-af2b-71062ebe0cfa-2ebe0ccd, #w-node-af578892-30d3-83a3-af2b-71062ebe0cfc-2ebe0ccd, #w-node-_2813a698-e50c-bde5-e68c-e5894da05a96-2ebe0ccd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2813a698-e50c-bde5-e68c-e5894da05a9d-2ebe0ccd {
  align-self: stretch;
}

#w-node-_2813a698-e50c-bde5-e68c-e5894da05aa6-2ebe0ccd, #w-node-_2813a698-e50c-bde5-e68c-e5894da05aa8-2ebe0ccd, #w-node-_2813a698-e50c-bde5-e68c-e5894da05aaa-2ebe0ccd, #w-node-_2813a698-e50c-bde5-e68c-e5894da05aac-2ebe0ccd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f9092f4-aef7c631 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f9092fc-aef7c631 {
  justify-self: start;
}

#w-node-_1ac7ed91-1384-a70e-6de6-f0c3de3c3a49-aef7c631 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6dc6-aef7c631 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6dcd-aef7c631 {
  align-self: stretch;
}

#w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6dd6-aef7c631, #w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6dd8-aef7c631, #w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6dda-aef7c631, #w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6ddc-aef7c631, #w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6ddf-aef7c631, #w-node-_70663814-59dc-aa0d-3129-3af3dac88a2b-aef7c631 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70663814-59dc-aa0d-3129-3af3dac88a32-aef7c631 {
  align-self: stretch;
}

#w-node-_70663814-59dc-aa0d-3129-3af3dac88a3b-aef7c631, #w-node-_70663814-59dc-aa0d-3129-3af3dac88a3d-aef7c631, #w-node-_70663814-59dc-aa0d-3129-3af3dac88a3f-aef7c631, #w-node-_70663814-59dc-aa0d-3129-3af3dac88a41-aef7c631, #w-node-_70663814-59dc-aa0d-3129-3af3dac88a44-aef7c631, #w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6de4-aef7c631 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6deb-aef7c631 {
  align-self: stretch;
}

#w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6df4-aef7c631, #w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6df6-aef7c631, #w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6df8-aef7c631, #w-node-_82f10f84-5147-29c4-3ecd-2d6530ba6dfa-aef7c631 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f94e-aef7c631 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f954-aef7c631 {
  align-self: center;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f956-aef7c631 {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f959-aef7c631 {
  align-self: center;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f95b-aef7c631 {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f95e-aef7c631 {
  align-self: center;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f960-aef7c631 {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f962-aef7c631 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f965-aef7c631 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f968-aef7c631 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96b-aef7c631 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96c-aef7c631 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f973-aef7c631 {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f976-aef7c631 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f9092f4-4eba5c25 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f9092fc-4eba5c25 {
  justify-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f94e-4eba5c25 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f954-4eba5c25 {
  align-self: center;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f956-4eba5c25 {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f959-4eba5c25 {
  align-self: center;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f95b-4eba5c25 {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f95e-4eba5c25 {
  align-self: center;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f960-4eba5c25 {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f962-4eba5c25 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f965-4eba5c25 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f968-4eba5c25 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96b-4eba5c25 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96c-4eba5c25 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f973-4eba5c25 {
  place-self: center start;
}

#w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f976-4eba5c25 {
  grid-area: 1 / 1 / 2 / 3;
}

@media screen and (min-width: 1920px) {
  #w-node-_60b9cff3-4d6b-5707-6f7e-efca65e31ae1-bac45640 {
    grid-area: 2 / 1 / 3 / 3;
    place-self: end;
  }

  #w-node-_60b9cff3-4d6b-5707-6f7e-efca65e31ae4-bac45640 {
    grid-column-start: 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_8cb3de6f-cbed-5cfa-a36e-6c24d1b929fa-bac45640, #w-node-b7aaa227-75a3-080e-f542-5121a3741d13-bac45640 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a7c51300-57dc-6eba-166f-3b8856d18c9f-bac45640 {
    grid-column-end: 2;
  }

  #w-node-b8f9e5d6-168b-3d18-c17e-67768c28109c-bac45640 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a7c51300-57dc-6eba-166f-3b8856d18cb9-bac45640 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d5f-acf69d40 {
    grid-column: 1 / 2;
  }

  #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d60-acf69d40 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
  }

  #w-node-_05f7f175-d13f-d404-3cb7-ea4facf69d66-acf69d40 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f9092f4-016db93e, #w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f909301-016db93e {
    grid-column-end: 2;
  }

  #w-node-affc1e0e-97c7-531a-84bb-cac8f2377ec5-0972ab7d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f94e-0972ab7d {
    grid-column: 1 / 2;
    grid-row-start: 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f962-0972ab7d {
    grid-column: span 2 / span 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96b-0972ab7d {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-b44aa8ff-a7ed-b7d2-2c5e-c3513c5dbc35-3c5dbc30 {
    grid-column-end: 2;
  }

  #w-node-_6733c138-7c03-8d39-ce52-18c18a9d22be-158b9e5e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f9092f4-aef7c631 {
    grid-column-end: 2;
  }

  #w-node-_1ac7ed91-1384-a70e-6de6-f0c3de3c3a49-aef7c631 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f94e-aef7c631 {
    grid-column: 1 / 2;
    grid-row-start: 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f962-aef7c631 {
    grid-column: span 2 / span 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96b-aef7c631 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_93d7ab9d-c2f7-0880-0e83-08ee7f9092f4-4eba5c25 {
    grid-column-end: 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f94e-4eba5c25 {
    grid-column: 1 / 2;
    grid-row-start: 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f962-4eba5c25 {
    grid-column: span 2 / span 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96b-4eba5c25 {
    grid-area: 3 / 1 / 4 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8cb3de6f-cbed-5cfa-a36e-6c24d1b929fa-bac45640 {
    grid-column: span 1 / span 1;
  }

  #w-node-_8cb3de6f-cbed-5cfa-a36e-6c24d1b92a01-bac45640 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-b7aaa227-75a3-080e-f542-5121a3741d13-bac45640 {
    grid-column: span 1 / span 1;
  }

  #w-node-b7aaa227-75a3-080e-f542-5121a3741d1a-bac45640 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-b8f9e5d6-168b-3d18-c17e-67768c28109c-bac45640, #w-node-a7c51300-57dc-6eba-166f-3b8856d18ca3-bac45640, #w-node-affc1e0e-97c7-531a-84bb-cac8f2377ec5-0972ab7d {
    grid-column: span 1 / span 1;
  }

  #w-node-affc1e0e-97c7-531a-84bb-cac8f2377ecc-0972ab7d {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f962-0972ab7d {
    grid-column: span 1 / span 1;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f965-0972ab7d, #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f968-0972ab7d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96b-0972ab7d {
    grid-column-end: 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96c-0972ab7d {
    grid-column: 1 / 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f976-0972ab7d {
    grid-row: 2 / 3;
    grid-column-end: 2;
  }

  #w-node-_6733c138-7c03-8d39-ce52-18c18a9d22be-158b9e5e, #w-node-_1ac7ed91-1384-a70e-6de6-f0c3de3c3a49-aef7c631, #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f962-aef7c631 {
    grid-column: span 1 / span 1;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f965-aef7c631, #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f968-aef7c631 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96b-aef7c631 {
    grid-column-end: 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96c-aef7c631 {
    grid-column: 1 / 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f976-aef7c631 {
    grid-row: 2 / 3;
    grid-column-end: 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f962-4eba5c25 {
    grid-column: span 1 / span 1;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f965-4eba5c25, #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f968-4eba5c25 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96b-4eba5c25 {
    grid-column-end: 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f96c-4eba5c25 {
    grid-column: 1 / 2;
  }

  #w-node-_89fbd8a0-a668-a8e2-357a-906e0b01f976-4eba5c25 {
    grid-row: 2 / 3;
    grid-column-end: 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ccede518-f0d0-4c2b-2963-947c75f36cfd-bac45640 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


