:root {
  --silver: #c5c5c5;
  --gainsboro: #e2e2e2;
  --black-2: #1a1a1a;
  --white: white;
  --black: #272727;
  --dim-grey: #6c6c6c;
}

.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 {
  background-color: var(--silver);
  color: #000;
  font-family: Matter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  letter-spacing: -3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

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

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

p {
  margin-bottom: 0;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

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

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

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

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

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

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

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

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

.text-color-white {
  color: #fff;
}

.overflow-hidden {
  overflow: hidden;
}

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

.form_input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.text-style-link {
  color: #000;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: inline-block;
}

.text-size-large {
  margin-top: -2px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.text-size-large.text-color-white {
  color: var(--gainsboro);
}

.heading-style-h2 {
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

.page-wrapper {
  background-color: silver;
}

.form_message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.section-hero {
  z-index: 100;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding-top: 12rem;
  padding-bottom: 2.5rem;
  display: flex;
  position: relative;
}

.navbar {
  background-color: #0000;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
}

.nav-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5rem;
  display: grid;
}

.nav-logo {
  background-color: var(--black-2);
  color: var(--silver);
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 100%;
  padding-left: 0;
  transition: color .3s;
  display: flex;
}

.nav-logo:hover {
  color: var(--white);
}

.nav-link {
  background-color: var(--black-2);
  color: var(--silver);
  text-transform: uppercase;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  font-size: .8rem;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link.first {
  padding-left: 4rem;
}

.nav-menu {
  background-color: var(--black-2);
  justify-content: flex-end;
  align-items: center;
  width: 15vw;
  height: 100%;
  display: flex;
}

.image-wrapper.hero {
  z-index: -1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-wrapper.tab {
  z-index: 5;
  width: 18rem;
  max-width: none;
  max-height: none;
  position: relative;
}

.image-container.hero {
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 30rem;
  display: flex;
  position: relative;
}

.image-cover {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image {
  z-index: 1;
  width: 20rem;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.spacer {
  padding-top: 10rem;
  padding-bottom: 2rem;
}

.spacer.last {
  background-color: var(--black-2);
  background-color: #1a1a1a;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.link {
  opacity: .8;
  color: #fff;
  border: 1px #fff;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0;
  font-size: .875rem;
  text-decoration: none;
  transition: opacity .25s;
  display: block;
}

.link:hover {
  opacity: 1;
}

.wrapper-info {
  justify-content: space-between;
  margin-top: 2rem;
  display: flex;
}

.wrapper-info.bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.line {
  background-color: #ffffff40;
  flex: none;
  width: 100%;
  height: 1px;
}

.line.text-link {
  background-color: var(--black-2);
}

.line.text-link.white {
  background-color: var(--gainsboro);
  height: 4px;
}

.social-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  font-size: .875rem;
  display: flex;
}

.social-wrapper.left-aligned {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  align-items: flex-start;
}

.social-wrapper.right-aligned {
  align-items: flex-end;
}

.social-icons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.social-link {
  opacity: .8;
  width: 2rem;
  height: 2rem;
  transition: opacity .25s;
}

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

.title-wrapper.hero {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 35rem;
  height: auto;
  display: block;
}

.title-wrapper.subhero {
  max-width: 26rem;
}

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

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

.grid.subhero {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: end;
}

.grid.about {
  grid-column-gap: 1.25rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: center start;
  margin-bottom: 6rem;
}

.grid.footer {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-right: 1.25rem;
}

.nav-menu-wrapper {
  background-color: var(--black-2);
  justify-content: flex-end;
  align-items: center;
  width: 15vw;
  height: 100%;
  display: flex;
}

.heading-hero {
  text-transform: uppercase;
  font-size: 3.5rem;
}

.crystal-shadow {
  z-index: 0;
  border-radius: 100%;
  width: 90%;
  height: 20rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 1rem;
  box-shadow: 0 40px 60px 40px #0003;
}

.crystal-shadow.contact {
  width: 70%;
  bottom: auto;
  box-shadow: 0 40px 100px 150px #0003;
}

.hero-crystal {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.social-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.section {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: block;
  position: relative;
}

.section.about {
  align-items: flex-end;
  min-height: 90vh;
  padding-top: 12.5rem;
  padding-bottom: 10rem;
}

.section.tab {
  display: flex;
}

.section.contact {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 100vh;
  padding-top: 11.25rem;
  display: flex;
}

.section.footer {
  z-index: 30;
  background-color: var(--silver);
  padding-top: 15rem;
}

.image-author {
  border-radius: 50%;
  width: 3rem;
}

.container.numbers {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  display: flex;
}

.line-horizontal {
  background-color: var(--black-2);
  width: 100%;
  height: 1px;
}

.line-horizontal.light {
  background-color: var(--dim-grey);
}

.numbers-section {
  flex-direction: row;
  flex: 0 auto;
  height: auto;
  display: flex;
}

.numbers-column {
  border-left: 1px #000;
  width: 25%;
  padding-left: 1.5rem;
}

.numbers-wrapper {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  display: flex;
  overflow: visible;
}

.video-teaser-wrapper {
  align-items: center;
  display: flex;
  overflow: hidden;
}

.video-teaser-left {
  background-color: var(--black-2);
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6.625rem;
  display: flex;
}

.video-teaser-right {
  background-color: var(--gainsboro);
  justify-content: flex-end;
  align-items: center;
  min-width: 10rem;
  height: 6.625rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-teaser-image {
  width: auto;
  height: 8rem;
  position: relative;
  inset: auto -4px auto auto;
  transform: rotate(-90deg);
}

.text-number {
  font-size: 7rem;
  line-height: 1;
}

.dark-bg {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.tab-holder {
  z-index: 5;
  position: absolute;
  inset: 0%;
}

.tab-container {
  width: 100%;
  height: 100%;
  margin-top: -42px;
  position: relative;
}

.tab-cta-holder {
  position: relative;
}

.tab-cta-holder.first {
  object-position: 100% 50%;
  position: absolute;
  inset: 5% auto auto 7%;
}

.tab-cta-holder.second {
  object-position: 100% 50%;
  position: absolute;
  inset: 44% 0% auto auto;
}

.tab-cta-holder.third {
  object-position: 50% 0%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto auto 23% 25%;
}

.tab-cta {
  border: 1px solid var(--white);
  background-color: #ffffff4d;
  border-radius: 50px;
  width: 1.5rem;
  height: 1.5rem;
  transition: background-color .3s;
  position: relative;
}

.tab-cta:hover {
  background-color: #fff9;
}

.answer-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--gainsboro);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 14.2rem;
  padding: 1.5rem;
  line-height: 1.35;
  display: flex;
  position: absolute;
}

.answer-container.first {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  height: auto;
  inset: 4px 34px auto auto;
}

.answer-container.second {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  width: 14rem;
  height: auto;
  inset: 4px auto auto 34px;
}

.answer-container.third {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  height: auto;
  inset: 34px 0 auto auto;
}

.answer-heading {
  text-transform: none;
}

.plus-icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 4px;
  display: flex;
  position: relative;
}

.plus-icon-line {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  position: static;
}

.plus-icon-line.second {
  width: 1px;
  height: auto;
  position: absolute;
  top: 4px;
  bottom: 4px;
}

.tab-content-wrapper {
  z-index: 5;
  position: absolute;
  inset: auto 0% 2.5rem;
}

.tab-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--silver);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container-horizontal {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.line-vertical {
  background-color: var(--black);
  flex: 0 auto;
  width: 1px;
  height: auto;
}

.tab-intro-wrapper {
  z-index: 5;
  align-items: center;
  max-width: 20rem;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 2.5rem;
}

.contact-wrapper {
  z-index: auto;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.contact-image-container {
  z-index: 10;
  justify-content: center;
  align-items: center;
  max-width: 26.875rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  top: auto;
  bottom: -8.5rem;
}

.contact-crystal {
  z-index: 5;
  height: 100%;
  position: relative;
}

.contact-text-container {
  z-index: 5;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  color: var(--gainsboro);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  bottom: -8.5rem;
}

.contact-heading {
  font-size: 8rem;
  line-height: .9;
}

.contact-link {
  color: var(--gainsboro);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--gainsboro);
}

.newsletter-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 34rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.newsletter-container {
  z-index: 5;
  color: var(--gainsboro);
  text-align: center;
  width: 100%;
  max-width: 32rem;
  position: relative;
}

.newsletter-image {
  background-image: url('../images/adrien-olichon-R2OM3BvN-Uo-unsplash_1adrien-olichon-R2OM3BvN-Uo-unsplash.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  position: absolute;
  inset: auto 0%;
}

.newsletter-form {
  align-items: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 0;
  display: flex;
}

.form {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.newsletter-text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--gainsboro);
  background-color: #0000;
  height: 100%;
  margin-bottom: 0;
  padding: .75rem .75rem .75rem 0;
  font-size: 2.25rem;
}

.newsletter-text-field:active {
  color: var(--white);
}

.newsletter-text-field:focus {
  border-bottom-color: var(--white);
  color: var(--white);
}

.newsletter-text-field:focus-visible {
  color: var(--white);
}

.newsletter-text-field[data-wf-focus-visible] {
  color: var(--white);
}

.newsletter-submit-button {
  border-top: 1px none var(--gainsboro);
  border-bottom: 1px solid var(--gainsboro);
  text-transform: uppercase;
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.5rem;
  transition: background-color .3s;
}

.newsletter-submit-button:hover {
  background-color: #e2e2e266;
  border-top-style: none;
}

.footer-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 15rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.footer-wrapper.bottom {
  align-items: center;
  margin-top: 1.25rem;
}

.footer-logo-heading {
  letter-spacing: -4px;
  font-size: 11vw;
  font-weight: 300;
  line-height: .8;
}

.footer-link-wrapper {
  flex-direction: column;
  display: flex;
}

.footer-link-wrapper.bottom {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  align-items: center;
}

.footer-link {
  color: var(--black-2);
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: .8rem;
  text-decoration: none;
}

.footer-link.bottom {
  margin-bottom: 0;
}

.footer-link-heading {
  margin-bottom: .5rem;
}

.contact-image-wrapper {
  width: 100%;
  overflow: visible;
}

.contact-form-input {
  width: 100%;
}

.column-large {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.h3-heading {
  color: #fff;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
}

.contact-character-info {
  color: #717384;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
}

.paragraph-x-small {
  color: #9c9eab;
  white-space: pre-wrap;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.subheading-regular {
  color: #dedfe3;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.subheading-regular.text-color-neutral-white {
  color: #f5f5f5;
}

.text-color-blue {
  color: #aaa;
}

.contact-text-field {
  color: #dedfe3;
  background-color: #22242f;
  border: 1px solid #22242f;
  border-radius: 24px;
  min-height: 64px;
  margin-bottom: 0;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-text-field:active {
  border-color: #333647;
}

.contact-text-field:focus {
  border-color: #45485f;
}

.contact-text-field::placeholder {
  color: #717384;
}

.success-message {
  text-align: center;
  background-color: #86c1a0;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-links-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-top: 64px;
}

.contact-submit-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  background-color: #313131;
  border-radius: 99px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.contact-submit-button:hover {
  background-color: #a1a1a1;
}

.contact-icon {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.contact-form {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact-header {
  grid-column-gap: 44px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 128px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-checkbox {
  outline-offset: 0px;
  border-style: none;
  border-width: 0;
  border-radius: 8px;
  outline: 2px solid #333647;
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 0;
}

.contact-checkbox.w--redirected-checked {
  background-color: #0000;
  background-image: url('../images/Check.svg');
  background-size: 16px;
}

.contact-field-label {
  color: #dedfe3;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.section-large {
  background-color: #000;
  width: 70%;
  padding: 100px 5%;
}

.contact-checkbox-field {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-left: 8px;
  display: flex;
}

.error-message {
  text-align: center;
  background-color: #ed5a5a;
  border-radius: 99px;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-checkbox-span {
  color: #7e8ef1;
  text-decoration: underline;
}

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

.contact-checkbox-wrapper {
  color: #717384;
  align-items: center;
  padding: 8px 24px;
  display: flex;
}

.contact-card {
  background-color: #111218;
  border-radius: 32px;
  width: 100%;
  padding: 32px 24px 24px;
}

.contact-map {
  width: 100%;
  height: 100%;
}

.paragraph-regular {
  color: #9c9eab;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.button-outline {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #dedfe3;
  text-align: center;
  background-color: #0000;
  border: 2px solid #333647;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: color .3s, border-color .3s;
  display: inline-flex;
}

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

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

.contact-map-wrapper {
  background-color: #22242f;
  border-radius: 32px;
  min-height: 320px;
  overflow: hidden;
}

.grid-contact-form {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact-text-area-small {
  color: #dedfe3;
  background-color: #22242f;
  border: 1px solid #22242f;
  border-radius: 24px;
  min-height: 120px;
  margin-bottom: 0;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-text-area-small:active, .contact-text-area-small:focus {
  border-color: #333647;
}

.contact-text-area-small::placeholder {
  color: #717384;
}

.contact-icon-wrapper {
  border: 2px solid #22242f;
  border-radius: 99px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
}

.contact-link-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #c8c9d0;
  cursor: pointer;
  background-color: #111218;
  border-radius: 24px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
}

.column-regular {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.page-intro-splitscreen-wrapper {
  z-index: 1;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.page-intro-text-wrapper {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: -5vh;
  display: flex;
}

.wrap-v-large {
  z-index: 5;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: relative;
}

.feature-outline-r {
  grid-column-gap: 24px;
  grid-row-gap: 140px;
  color: #000;
  background-color: gray;
  border: 1px solid #f5f5f5;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-outline-r:hover {
  background-color: #fff;
  box-shadow: 0 24px 64px #d9d9d97a;
}

.caption {
  letter-spacing: -.02em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.page-intro-splitscreen-top {
  background-color: #000;
  width: 100%;
  height: 0%;
}

.page-padding {
  padding-left: 4rem;
  padding-right: 4rem;
}

.section-page-intro {
  background-color: silver;
  justify-content: center;
  align-items: center;
  min-height: 200svh;
  overflow: clip;
}

.container-large-2 {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section-large-2 {
  padding: 120px 5%;
  position: relative;
}

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

.paragraph-regular-2 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.section-after-intro-text {
  z-index: 3;
  color: silver;
  background-color: #000;
  margin-top: 21vh;
  padding-top: 10em;
  padding-bottom: 7.5em;
  position: relative;
}

.page-intro-title-wrapper {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.feature-shape-b {
  flex: none;
  width: 200px;
  height: 200px;
  position: absolute;
  inset: -32px -64px auto auto;
}

.wrap-v-x-small {
  z-index: 5;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.page-intro-wrapper {
  z-index: 0;
  justify-content: center;
  align-items: center;
  height: 100svh;
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
  position: sticky;
  top: 0;
}

.h5-heading {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.page-intro-title {
  letter-spacing: -.06em;
  text-transform: uppercase;
  font-size: 10vw;
  font-weight: 900;
  line-height: .8;
}

.page-intro-title.is-webdesign {
  margin-left: 1.16em;
  font-weight: 500;
}

.page-intro-title.is-animation {
  margin-left: 3em;
  font-weight: 500;
}

.page-intro-title.is-skills {
  margin-left: .89em;
  font-weight: 500;
}

.page-intro-title.is-webdesign {
  margin-left: 1.16em;
}

.page-intro-title.is-animation {
  margin-left: 3em;
}

.page-intro-title.is-skills {
  margin-left: .89em;
}

.page-intro-content {
  z-index: 0;
  position: relative;
}

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

.page-intro-title-small {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 1.5vw;
  font-weight: 400;
}

.page-intro-title-small.is-best-in-class {
  align-self: flex-start;
  margin-left: 7.9em;
}

.page-intro-title-small.is-made-in-webflow {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 5.6em;
  display: flex;
}

.feature-noise {
  z-index: 1;
  mix-blend-mode: overlay;
  position: absolute;
  inset: 0%;
}

.heading {
  text-align: center;
}

.page-intro-splitscreen-bottom {
  background-color: #000;
  width: 100%;
  height: 0%;
}

.nav-logo-2 {
  color: #c5c5c5;
  background-color: #1a1a1a;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 100%;
  padding-left: 0;
  transition: color .3s;
  display: flex;
}

.nav-logo-2:hover {
  color: #fff;
}

.footer-link-2 {
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: .8rem;
  text-decoration: none;
}

.footer-link-2.bottom {
  margin-bottom: 0;
}

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

.overline {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.testimonial-card-e {
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  transition: all .3s;
  display: flex;
}

.span-red-500 {
  color: #e56161;
}

.testimonial-slide-b {
  margin-right: 24px;
}

.testimonal-quote {
  color: #6173e5;
  background-color: #eeeffc;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 56px;
  display: flex;
}

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

.paragraph-large.text-weight-bold {
  white-space: normal;
  font-weight: 700;
}

.h6-heading {
  color: #000;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.4;
}

.h6-heading.text-weight-medium {
  text-align: left;
  font-weight: 500;
}

.section-regular {
  margin-top: 55px;
  padding: 80px 5%;
  position: relative;
}

.caption-m {
  color: #353b41;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.caption-m.text-color-gray-600 {
  color: #6d767e;
}

.testimonial-slider-b {
  background-color: #0000;
  width: 100%;
  max-width: 996px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 102px;
  padding-right: 102px;
}

.hidden-element {
  display: none;
}

.testimonial-star-wrapper {
  grid-column-gap: 4px;
  margin-bottom: 16px;
  display: flex;
}

.testimonial-right-arrow-b {
  color: #000;
  background-color: #fff;
  border: 1px solid #eaedf0;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.icon-large {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.wrap-v-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

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

.testimonial-left-arrow-b {
  color: #000;
  background-color: #fff;
  border: 1px solid #eaedf0;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.title-wrapper-2 {
  z-index: 5;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 454px;
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.h2-heading {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.2;
}

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

.paragraph-small.text-color-gray-600 {
  color: #6d767e;
}

.customer-logo {
  width: 44px;
}

.testimonial-customer-wrap {
  flex-direction: column;
  align-items: center;
  margin-top: 56px;
  display: flex;
}

.text-span, .text-span-2, .text-span-3 {
  font-size: 18px;
}

.wrap-v-regular {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.cta-card-outline {
  grid-column-gap: 24px;
  grid-row-gap: 256px;
  color: #000;
  background-color: #a5a5a5;
  border: 1px solid #f5f5f5;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 32px;
  text-decoration: none;
  transition: box-shadow .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-card-outline:hover {
  background-color: #fff;
  box-shadow: 0 24px 64px #d9d9d97a;
}

.paragraph-regular-3 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.grid-three-column-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.h3-heading-2 {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
}

.cta-shape {
  z-index: 0;
  pointer-events: none;
  flex: none;
  width: 344px;
  height: 344px;
  position: absolute;
  inset: 0% -172px auto auto;
}

.button-2 {
  color: #eeebdc;
  text-align: center;
  letter-spacing: .03rem;
  background-color: #000;
  border: .15em solid #0000;
  border-radius: 999rem;
  padding: 1.2rem 1.7rem;
  font-size: 1rem;
  font-weight: 600;
}

.button-2.is-bright {
  color: #000;
  background-color: #eeebdc;
}

.button-2.is-bright.is-secondary {
  color: #eeebdc;
  background-color: #0000;
  border-color: #eeebdc;
  font-size: 1rem;
}

.section-after-intro-text-2 {
  z-index: 3;
  color: #eeebdc;
  background-color: #000;
  margin-top: 21vh;
  padding-top: 10em;
  padding-bottom: 7.5em;
  position: relative;
}

.intro-content {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 58rem;
  min-height: 100svh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7.5em;
  padding-bottom: 7.5em;
  display: flex;
}

.page-intro-title-wrapper-2 {
  grid-column-gap: .5vh;
  grid-row-gap: .5vh;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.intro-pre-title {
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 1.4em;
  line-height: .9;
}

.header-button {
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-style: solid;
  border-width: 1px;
  border-radius: 999em;
  padding: 1.1em 2em 1em;
  font-size: .65em;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all .35s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
}

.header-button:hover {
  padding-left: 3.5em;
  padding-right: 3.5em;
}

.copy-medium {
  font-size: 1.25rem;
  line-height: 1.4;
}

.image-placeholder {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1.8em;
  width: 100%;
}

.heading-style-h3 {
  letter-spacing: -.005em;
  text-transform: none;
  font-size: 3rem;
  line-height: 1.1;
}

.header-right {
  color: #757575;
}

.video-preview-wrapper {
  aspect-ratio: 16 / 9;
  color: #fffdf6;
  background-color: #000;
  border-radius: 1em;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-intro {
  position: relative;
}

.intro-title {
  text-transform: uppercase;
  font-size: 4em;
  line-height: .9;
}

.heading-style-h1 {
  text-align: left;
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 900;
  line-height: .85;
}

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

.heading-style-h6 {
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.1;
}

.spacer-sm-start {
  padding-top: 2.25rem;
}

.youtube-play-icon {
  height: 3.9em;
  margin-right: -.2em;
}

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

.section-page-intro-2 {
  background-color: silver;
  justify-content: center;
  align-items: center;
  min-height: 200svh;
  overflow: clip;
}

.made-in-webflow-brand {
  max-width: 2.3em;
}

.intro-copy-text {
  padding-left: 3em;
  padding-right: 3em;
  font-size: 1.2em;
}

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

.youtube-play-button {
  background-color: #e61313;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 7em;
  padding-top: .4em;
  padding-bottom: .4em;
  font-size: 1.1em;
  display: flex;
  position: absolute;
  box-shadow: 0 .7rem 2.5rem #00000047;
}

.copy-tiny-2 {
  font-size: .9rem;
  line-height: 1.4;
}

.video-preview-img {
  opacity: .72;
  object-fit: contain;
  border-radius: 1em;
  width: 100%;
  height: 100%;
  transition: transform .3s cubic-bezier(.165, .84, .44, 1);
}

.video-preview-img:hover {
  transform: scale(1.03);
}

.header-left {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  align-items: center;
  display: flex;
}

.header-inner {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
}

.nav-main {
  z-index: 999;
  background-color: #0000;
  border-bottom: 1px solid #757575;
  position: absolute;
  inset: 0% 0% auto;
}

.spacer-xl-start {
  padding-top: 7.5rem;
}

.section-after-intro-text-3 {
  z-index: 3;
  color: #eeebdc;
  background-color: #000;
  margin-top: 21vh;
  padding-top: 10em;
  padding-bottom: 7.5em;
  position: relative;
}

.paragraph-regular-4 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.h3-heading-3 {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
}

.icon-link {
  color: #141414;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.grid-three-column-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.button-link {
  grid-column-gap: 16px;
  color: #000;
  letter-spacing: -.02em;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  display: flex;
}

.icon-x-small {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.paragraph-regular-5 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.h3-heading-4 {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
}

.grid-three-column-4 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 1rem;
  }

  .hide-tablet {
    display: none;
  }

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

  .section-hero {
    padding-top: 12rem;
  }

  .nav-link {
    color: var(--black-2);
    background-color: #0000;
    height: auto;
    padding: 2rem 2.5rem;
    font-size: 2rem;
  }

  .nav-link:hover {
    color: var(--black);
  }

  .nav-link.first {
    padding-left: 2.5rem;
  }

  .nav-menu {
    background-color: var(--white);
    width: 100%;
    padding-top: 5rem;
  }

  .menu-button {
    background-color: var(--black-2);
    color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 100%;
    padding: 2rem 1.5rem;
    display: block;
  }

  .menu-button.w--open {
    z-index: 999;
    background-color: var(--black-2);
  }

  .menu-icon-wrapper {
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-line {
    background-color: var(--silver);
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .image-wrapper.hero {
    inset: auto 0% 25%;
  }

  .image-wrapper.tab {
    width: 16rem;
  }

  .image-container.hero {
    width: 20rem;
    height: 20rem;
  }

  .hero-image {
    width: 16rem;
  }

  .spacer.last {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .wrapper-info.bottom {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .social-wrapper.right-aligned {
    align-items: flex-start;
  }

  .grid.hero {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    min-height: auto;
  }

  .grid.subhero {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu-wrapper {
    background-color: #0000;
    justify-content: flex-end;
  }

  .heading-hero {
    font-size: 3rem;
  }

  .crystal-shadow {
    width: 90%;
  }

  .section.footer {
    padding-top: 10rem;
  }

  .numbers-column.first {
    padding-left: 0;
  }

  .text-number {
    font-size: 5rem;
  }

  .tab-intro-wrapper {
    align-items: flex-start;
    padding-top: 8.5rem;
  }

  .contact-heading {
    font-size: 6rem;
  }

  .footer-wrapper {
    flex-direction: column;
    margin-top: 10rem;
  }

  .footer-logo-heading {
    font-size: 16vw;
  }

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

  .contact-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-contact-form {
    grid-template-columns: 1fr;
  }

  .page-padding {
    padding-left: 6vw;
    padding-right: 6vw;
  }

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

  .header-button {
    font-size: 1em;
  }

  .header-button:hover {
    padding-left: 1.6em;
    padding-right: 1.6em;
  }

  .header-button:active {
    transform: scale(.94);
  }

  .header-inner {
    padding-top: 2em;
  }

  .grid-three-column-3, .grid-three-column-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

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

  .text-size-large {
    font-size: 1.25rem;
  }

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

  .nav-link {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav-link.first {
    padding-left: 1.25rem;
  }

  .image-wrapper.tab {
    position: absolute;
    top: 25rem;
  }

  .spacer.last {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .wrapper-info.bottom {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .social-wrapper {
    align-items: flex-start;
  }

  .social-wrapper.left-aligned {
    align-items: center;
  }

  .section.tab, .section.contact {
    align-items: flex-start;
    overflow: hidden;
  }

  .numbers-section {
    flex-direction: row;
  }

  .text-number {
    font-size: 3.5rem;
  }

  .tab-intro-wrapper {
    max-width: none;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: static;
  }

  .contact-heading {
    font-size: 4.8rem;
  }

  .newsletter-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .h3-heading {
    font-size: 42px;
  }

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

  .contact-header {
    margin-bottom: 60px;
  }

  .page-intro-text-wrapper {
    margin-top: -4vh;
  }

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

  .page-intro-title {
    font-size: 13vw;
  }

  .page-intro-title.is-webdesign {
    margin-left: 0;
  }

  .page-intro-title.is-skills, .page-intro-title.is-webdesign {
    margin-left: 0;
  }

  .page-intro-title.is-skills, .page-intro-title.is-webdesign {
    margin-left: 0;
  }

  .page-intro-title.is-animation {
    flex: 1;
    margin-left: 0;
  }

  .page-intro-title.is-skills {
    margin-left: 0;
  }

  .grid-three-column {
    grid-template-columns: 1fr;
  }

  .page-intro-title-small {
    font-size: 2.6vw;
  }

  .page-intro-title-small.is-best-in-class {
    margin-left: 0;
  }

  .page-intro-title-small.is-made-in-webflow {
    margin-right: 0;
  }

  .testimonial-card-e {
    padding-left: 44px;
    padding-right: 44px;
  }

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

  .testimonial-slider-b {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-right-arrow-b, .testimonial-left-arrow-b {
    width: 42px;
    height: 42px;
  }

  .h2-heading {
    font-size: 44px;
  }

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

  .h3-heading-2 {
    font-size: 40px;
  }

  .intro-title {
    font-size: 2.8em;
  }

  .heading-style-h1 {
    font-size: 3rem;
  }

  .intro-copy-text {
    padding-left: 0;
    padding-right: 0;
  }

  .header-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-inner {
    grid-column-gap: 1.3em;
    grid-row-gap: 1.3em;
    flex-flow: column;
    justify-content: center;
    padding-top: 4.5em;
  }

  .h3-heading-3 {
    font-size: 40px;
  }

  .grid-three-column-3 {
    grid-template-columns: 1fr;
  }

  .h3-heading-4 {
    font-size: 40px;
  }

  .grid-three-column-4 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .max-width-large {
    max-width: none;
  }

  .nav-logo {
    width: 5rem;
  }

  .menu-button {
    justify-content: center;
    align-items: center;
    width: 4rem;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon-wrapper {
    flex: none;
  }

  .image-wrapper.tab {
    width: 10rem;
  }

  .image-container.hero {
    width: 100%;
    height: auto;
  }

  .hero-image {
    width: 14rem;
  }

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

  .grid.subhero {
    grid-template-columns: 1fr;
    width: 100%;
    overflow: visible;
  }

  .grid.about {
    width: 100%;
  }

  .grid.footer {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    width: 100%;
  }

  .heading-hero {
    font-size: 2rem;
  }

  .section.tab {
    min-height: 100dvh;
  }

  .section.contact {
    min-height: auto;
    padding-top: 0;
  }

  .numbers-section {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    display: flex;
  }

  .numbers-column {
    width: 45%;
    padding-left: 0;
  }

  .numbers-column.first {
    width: 100%;
  }

  .line-vertical {
    width: 100%;
    height: 1px;
  }

  .contact-image-container {
    max-width: 90%;
  }

  .contact-heading {
    font-size: 2.8rem;
  }

  .newsletter-container {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .newsletter-text-field {
    padding-bottom: 12px;
    font-size: 1rem;
  }

  .newsletter-submit-button {
    font-size: 1rem;
  }

  .text-block {
    white-space: normal;
  }

  .contact-card {
    padding-left: 5%;
    padding-right: 5%;
  }

  .page-intro-text-wrapper {
    margin-top: -3vh;
  }

  .nav-logo-2 {
    width: 5rem;
  }

  .cta-card-outline {
    grid-row-gap: 188px;
  }

  .header-button, .header-button-wrapper {
    width: 100%;
  }

  .header-left {
    font-size: .8em;
  }
}

#w-node-_16dfcd36-2bb9-f58a-6ceb-82987100f8d5-e18cbf67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-b2ebc227-4eea-6cd3-3b59-75e0103e3377-e18cbf67 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b7c6c98f-f089-7043-1b00-392ae9bcefd5-e18cbf67, #w-node-_77b65daf-81a9-9460-e051-46d84f326b61-e18cbf67, #w-node-_95103e70-b27f-e5f9-4bc7-c0d6d794c329-e18cbf67, #w-node-_7e08d3b6-afe3-4d48-71d1-ac05eb756a24-e18cbf67, #w-node-_646ff7cc-05db-6954-e4d3-70489d5c377c-e18cbf67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_90dbe325-e8a7-1dbb-d7f6-8b7c0aa2cc54-e18cbf67 {
  justify-self: auto;
}

#w-node-_096b8a15-eeee-65b6-a51b-53e2785341c3-e18cbf67, #w-node-_0804d319-aaf0-3a84-ffb2-cd4bc7309a80-e18cbf67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_84c2c589-9590-d510-2eb2-3f6f0f0f7319-e18cbf67, #w-node-_1e4acbe1-8d1f-4cf0-5b9f-8bee3dce40aa-e18cbf67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-b78fd9af-c95d-c24b-dfd9-54775aca4c67-e18cbf67 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-ab815e50-a726-e9df-97fa-f45bde351426-e18cbf67, #w-node-aa96f526-2f88-bd0a-f0cc-2b930f04c21c-e18cbf67, #w-node-ad876920-a7f4-94ba-af63-c0a05d47728f-e18cbf67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9724b4a1-8759-cc53-c53f-1be642c50929-e18cbf67 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6654b340-683f-b740-6d50-c453152f1e31-e18cbf67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8de8e64c-f73b-34a8-2812-2ee7e76406e5-f98cab87 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_90dbe325-e8a7-1dbb-d7f6-8b7c0aa2cc54-e18cbf67 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_1e4acbe1-8d1f-4cf0-5b9f-8bee3dce40aa-e18cbf67 {
    justify-self: auto;
  }

  #w-node-b78fd9af-c95d-c24b-dfd9-54775aca4c67-e18cbf67, #w-node-_9724b4a1-8759-cc53-c53f-1be642c50929-e18cbf67 {
    grid-column: span 4 / span 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b2ebc227-4eea-6cd3-3b59-75e0103e3377-e18cbf67, #w-node-_90dbe325-e8a7-1dbb-d7f6-8b7c0aa2cc54-e18cbf67 {
    grid-column: span 1 / span 1;
  }

  #w-node-b78fd9af-c95d-c24b-dfd9-54775aca4c67-e18cbf67, #w-node-_9724b4a1-8759-cc53-c53f-1be642c50929-e18cbf67 {
    grid-column: span 4 / span 4;
  }
}


@font-face {
  font-family: 'Matter';
  src: url('../fonts/Matter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Matter';
  src: url('../fonts/Matter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Matter';
  src: url('../fonts/Matter-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}