@font-face {
  font-family: Montserrat Variablefont Wght;
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --hero-background-color: #020202;
  --heading-color: white;
  --paragraph-color: white;
  --text-color: #e3051a;
}

.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(--hero-background-color);
  color: #fff;
  font-family: Instrument Serif, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

h1 {
  color: var(--heading-color);
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Instrument Serif, sans-serif;
  font-size: 130px;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  color: var(--heading-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  color: var(--heading-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  color: var(--heading-color);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  color: var(--heading-color);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

p {
  color: var(--paragraph-color);
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
}

a {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
}

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

li {
  color: #fff;
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

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

blockquote {
  color: #f0f0f0;
  text-transform: none;
  background-image: url('../images/Qoute-Right.svg'), url('../images/Qoute-Left.svg');
  background-position: 100% 100%, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  border: 1px #000;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px 35px;
  font-family: Switzer;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 16px;
}

.white-colors-show-case {
  background-color: #fff;
  border-radius: 300px;
  width: 54px;
  height: 54px;
  box-shadow: 0 0 9px #00000047;
}

.yellow-color-show-case {
  background-color: #7878ec;
  border-radius: 300px;
  width: 54px;
  height: 54px;
}

.yellow-color-show-case.orange {
  background-color: #141414;
}

.color-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.color-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

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

.black-background-padding {
  padding: 40px;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 30px;
}

.container.navbar-container {
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.container.no-paddings {
  padding-top: 0;
  padding-bottom: 0;
}

.container.project-container {
  z-index: 1;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

._100width {
  width: 100%;
}

.border-box {
  color: #999797;
  border: 1px solid #cdcdcd;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.button {
  color: #fff;
  background-color: #000;
  border-radius: 0;
  padding: 12px 32px;
  font-family: Montserrat Variablefont Wght, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: background-position .25s, background-color .45s;
}

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

.button.transparent {
  color: #fff;
  background-color: #fff0;
  transition-property: color, background-color;
}

.button.transparent:hover {
  color: #adadad;
}

.button.white-button {
  color: #000;
  background-color: #ffefcc;
  padding: 10px 50px;
  font-family: Instrument Serif, sans-serif;
  font-size: 29px;
}

.button.white-button:hover {
  background-color: #dfdfdf;
}

.button.cta-button {
  color: #000;
  background-color: #ffefcc;
  margin-bottom: 15px;
  margin-right: 15px;
  padding: 10px 50px;
  font-family: Instrument Serif, sans-serif;
  font-size: 29px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.button.cta-button:hover {
  background-color: #dfdfdf;
}

.style-guide-box-holder {
  background-color: #0c0c0c;
  padding: 20px;
}

.style-guide-box-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #888;
  flex-direction: column;
  display: flex;
}

.colors-buttons {
  grid-column-gap: 90px;
  align-items: center;
  display: flex;
}

.section.hero-section {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin-top: -70px;
  display: flex;
}

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

.section.hero.polityka {
  padding-top: 140px;
}

.button-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: #ddd;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

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

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

.cols-text {
  font-size: 15px;
  font-weight: 400;
}

.paragraph-xl {
  font-family: Switzer variable;
  font-size: 24px;
  line-height: 1.5;
}

.navbar {
  z-index: 20;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  min-height: 70px;
  display: flex;
  position: fixed;
  top: 0;
}

.navbar-holder {
  width: 100%;
  height: 100%;
}

.navbar-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.black-text {
  color: #000;
  font-weight: 600;
}

.utility-page-form > .black-text {
  font-size: clamp(38px, 7vw, 80px);
}

._404 > .black-text {
  font-size: clamp(32px, 5vw, 42px);
}

.featured-logo-wrapper {
  width: 110px;
}

.title-container {
  max-width: 762px;
}

.paragraph-holder {
  max-width: 370px;
  margin-bottom: 170px;
}

.early-access-tag-holder {
  grid-column-gap: 10px;
  align-items: center;
  font-family: IBM Plex Sans Hebrew;
  font-size: 18px;
  display: flex;
}

.early-access-title-holder {
  max-width: 349px;
}

.power-feature-heading {
  font-size: 20px;
}

.hide {
  display: none;
}

.pricing-tag {
  text-transform: uppercase;
  border: 1px solid #fff3;
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 18px;
}

.pricing-header {
  font-size: 42px;
  font-weight: 500;
}

.pricing-list-holder {
  border-top: 1px solid #414142;
  border-bottom: 1px solid #414142;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.checked-list-holder {
  grid-column-gap: 18px;
  align-items: center;
  display: flex;
}

.pricing-footer-holder {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cta-form-holder {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
}

.cta-form-holder.no-paddings {
  grid-column-gap: 30px;
  flex-direction: row;
  padding-top: 13px;
  padding-bottom: 13px;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #333;
  border: 1px solid #aa5252;
  border-radius: 0;
  width: 100%;
  margin-bottom: 0;
  font-size: 24px;
  box-shadow: 0 4px 4px #0000003d, 0 0 14px #0000003d, 0 21px 36px #ff00041f;
}

.error-message::placeholder {
  color: #7d7d7d;
  font-family: IBM Plex Sans Hebrew;
  font-size: 15px;
}

.help-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.help-container {
  border-right: 1px solid #e7e7e7;
  min-width: 270px;
  padding-top: 80px;
  position: relative;
}

.help-content-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  padding-top: 80px;
  display: flex;
}

.help-back-link-holder {
  grid-column-gap: 8px;
  color: #7d7d7d;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  transition: color .4s;
  display: flex;
}

.help-back-link-holder:hover {
  color: #c7482c;
}

.help-icon-holder {
  width: 8px;
}

.help-icon {
  width: 100%;
}

.help-link-holder {
  grid-row-gap: 36px;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.help-link-container {
  z-index: 3;
  grid-column-gap: 16px;
  opacity: .5;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
  left: 2px;
}

.help-link-container.w--current {
  opacity: 1;
  border-right: 3px solid #c7482c;
}

.help-link-icon-holder {
  width: 26px;
}

.help-link-icon {
  width: 100%;
}

.help-center-pragraph-holder {
  max-width: 570px;
}

.figma-file-holder {
  margin-top: 40px;
  margin-bottom: 40px;
}

.figma-file-container {
  grid-column-gap: 32px;
  opacity: 1;
  background-color: #9b9b9b;
  border: 1px solid #000;
  align-items: flex-start;
  padding: 26px;
  display: flex;
  overflow: hidden;
}

.figma-file-container.center {
  white-space: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.figma-file-icon-holder {
  width: 41px;
  min-width: 41px;
  height: 41px;
}

.figla-file-icon {
  filter: invert();
  width: 100%;
}

.figma-file-content-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.figma-header {
  font-size: 24px;
}

.full-width-image-holder {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

.sticky {
  position: sticky;
  top: 85px;
}

.link {
  text-decoration: underline;
  transition: color .375s;
}

.link:hover {
  color: #afafaf;
}

.change-log-block-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

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

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

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

._404 {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  color: #fff;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.menu-button {
  justify-content: center;
  align-items: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
}

.menu-button.w--open {
  z-index: 20;
  background-color: #c8c8c800;
}

.reviews-logos-holder {
  align-items: center;
  padding-bottom: 8em;
  display: flex;
  overflow: hidden;
}

.deploying-app-title-holder {
  max-width: 440px;
  margin-bottom: 20px;
}

.deploying-app-link-holder {
  grid-column-gap: 8px;
  align-items: center;
  margin-top: 32px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  display: flex;
}

.deploying-app-paragraph-holder {
  max-width: 530px;
}

.gradient-line {
  opacity: .5;
  background-image: linear-gradient(to right, #ebebeb00, #ebebeb 17% 81%, #ebebeb00);
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.data-collection-tab-holder {
  padding-top: 58px;
  padding-bottom: 58px;
}

.hero-card {
  perspective: 1500px;
}

.contact-text-field {
  color: #fff;
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  height: 35px;
  margin-bottom: 0;
  padding: 0;
  font-family: Montserrat Variablefont Wght, sans-serif;
  font-size: 17px;
  font-weight: 400;
  transition: border-color .375s;
}

.contact-text-field:hover {
  border-bottom-color: #595550;
}

.contact-text-field:focus {
  border-bottom-color: #c7482c;
}

.submit-button-simple {
  color: #595550;
  letter-spacing: 1px;
  background-color: #141414;
  background-image: url('../images/Arrow-Small.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 200px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  padding: 25px 7px 0 4px;
  font-family: Switzer variable;
  font-size: 24px;
  font-weight: 600;
  transition: background-color .3s;
}

.submit-button-simple:hover {
  background-color: #b9b9b9;
}

.fade-in-overflow---content {
  height: 100%;
}

.project-main-image-holder {
  z-index: 2;
  align-self: center;
  width: 100%;
  max-width: 970px;
  height: 100%;
  max-height: 640px;
  position: relative;
}

.project-main-image {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 640px;
  overflow: hidden;
}

.project-details {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.rich-text-holder {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch end;
  display: flex;
}

.nav-menu-link-holder {
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.nav-links {
  z-index: 3;
  grid-column-gap: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: font-variation-settings .8s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  position: relative;
}

.nav-link-big {
  color: #ffffff9e;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: color .425s;
}

.nav-link-big:hover {
  color: #fff;
}

.nav-link-big.w--current {
  color: var(--heading-color);
  font-style: italic;
  font-weight: 400;
}

.nav-menu-wrapper {
  z-index: 2;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.menu-holder {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.number-2 {
  font-size: 18px;
}

.nav-wrapper {
  z-index: 2;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.footer-title-holder {
  text-align: right;
  margin-bottom: 21px;
}

.footer {
  margin-top: 100px;
}

.footer-top-links {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  display: flex;
}

.footer-top-links._02 {
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-links-holder {
  grid-column-gap: 40px;
  display: flex;
}

.footer-line {
  opacity: .49;
  background-color: #a5a5a5;
  width: 100%;
  height: 1px;
  margin-bottom: 30px;
}

.line {
  background-color: #d9d9d966;
  width: 100%;
  height: 1px;
  margin: 30px auto;
}

.black-line-text-container {
  filter: invert();
  text-align: right;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.work-item {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px #000;
  border-bottom: 1px solid #a5a5a5;
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-family: Bebas Neue;
  display: grid;
}

.work-list-item {
  z-index: 5;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 110px;
  margin-bottom: 65px;
  display: grid;
}

.footer-up-button {
  border: 2px solid #000;
  border-radius: 200px;
  justify-content: center;
  align-items: flex-end;
  width: 80px;
  height: 180px;
  transition: background-color .45s;
  display: flex;
}

.footer-up-button:hover {
  background-color: #cecece;
}

.footer-links-wrapper {
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.menu-text {
  font-family: Montserrat Variablefont Wght, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.project-main-wrapper {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  justify-items: stretch;
  padding-top: 100px;
  padding-left: 70px;
  padding-right: 70px;
  display: flex;
}

.project-image-holder {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.email {
  color: #fff;
  -webkit-text-stroke-color: #fff0;
  background-color: #010101;
  border: 1.5px solid #fff;
  padding-bottom: 21px;
  padding-left: 21px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.email.message {
  border-color: #ffefcc;
  min-width: 500px;
  height: 100%;
  margin-bottom: 0;
  padding-top: 21px;
}

.email._01 {
  border-color: #ffefcc;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.form {
  position: relative;
}

.form-block {
  margin-bottom: 30px;
}

.footer-heading {
  font-family: Instrument Serif, sans-serif;
  font-size: 42px;
}

.footer-link {
  color: #bdbdbd;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.project-template-text-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row-reverse;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: grid;
}

.project-template-heading-holder {
  flex: 1;
}

.project-template-heading {
  margin-bottom: 10px;
  font-size: 70px;
}

.more-paragraph-holder {
  max-width: 770px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.media-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  margin-bottom: 50px;
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
}

.social-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: .25fr .25fr;
  grid-auto-columns: 1fr;
  place-items: start;
  margin-top: 20px;
  display: grid;
}

.social {
  font-size: 82px;
  font-weight: 400;
}

.share-text-holder {
  order: -1;
  align-self: flex-end;
  margin-right: 70px;
}

.share-text {
  color: var(--text-color);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.social-text-holder {
  align-items: stretch;
}

.success-message {
  color: #000;
  background-color: #fff;
  font-size: 32px;
}

.title-2 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.3;
}

.figla-file-icon-2 {
  width: 100%;
}

.full-width-image-3 {
  border-radius: 20px;
  width: 100%;
}

.full-width-image-3.icons {
  filter: invert();
}

.white-text {
  color: #fff;
}

.hero-holder {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-bg-color {
  z-index: 12;
  mix-blend-mode: multiply;
  background-color: #7c0000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

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

.info-holder {
  margin-top: 50px;
}

.info-holder.red {
  max-width: 1057px;
  margin-top: 155px;
}

.info-holder.bottom {
  text-align: right;
  margin-top: 250px;
  margin-bottom: 75px;
}

.info-small-heading-holder {
  margin-left: 140px;
  margin-right: 120px;
}

.info-small-heading {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.info-small-heading.red {
  color: var(--text-color);
  justify-content: center;
  font-family: Inter, sans-serif;
  display: flex;
}

.info-heading-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 90%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.info-heading {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 53px;
  font-weight: 400;
}

.text-span, .text-span-2, .text-span-3 {
  font-family: Instrument Serif, sans-serif;
}

.hero-paragraph-grid {
  z-index: 13;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-end;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3em;
  padding-right: 3em;
  display: grid;
  position: relative;
}

.paragraph-holder-01 {
  margin-top: -348px;
  margin-bottom: 180px;
}

.paragraph-holder-02 {
  margin-top: 217px;
}

.paragraph-holder-03 {
  margin-bottom: 349px;
}

.hero-paragraph {
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.hero-image-holder {
  grid-column-gap: 300px;
  grid-row-gap: 300px;
  flex-direction: column;
  padding-top: 199px;
  padding-bottom: 199px;
  display: flex;
  position: relative;
}

.hero-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13.5rem;
}

.heading-wrapper {
  z-index: 13;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.grid-01 {
  grid-template-rows: auto;
  margin: 80px 135px 65px;
}

.features-heading-holder {
  text-align: left;
  font-family: Inter, sans-serif;
}

.features-ikone-holder {
  justify-content: flex-end;
  transform: rotate(180deg);
}

.features-ikone-holder._01 {
  transform: none;
}

.icon._02 {
  filter: invert();
}

.feature-heading {
  color: #000;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 130px;
}

.text-span-4 {
  font-family: Instrument Serif, sans-serif;
}

.info {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 370px auto auto 0%;
  overflow: hidden;
}

.info._01 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  position: static;
  top: 0;
}

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

.grid-02 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: grid;
}

.project-name-wrapper {
  color: #000;
  flex: 1;
  height: 100%;
}

.project-name-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px #000;
  flex-direction: column;
  display: flex;
}

.project-text-holder {
  flex: 1;
}

.project-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.project-link {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.border {
  border: 1.5px solid #000;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px;
  display: flex;
}

.from-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.form-grid {
  grid-template-rows: auto;
  width: auto;
}

.from-holder._02 {
  margin-left: 30px;
  position: relative;
}

.form-heading {
  color: var(--text-color);
  margin-top: 0;
  font-family: Instrument Serif, sans-serif;
  font-size: 115px;
  line-height: 1;
}

.footer-list-wraper {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  display: flex;
}

.project-title {
  color: var(--hero-background-color);
  margin-top: 0;
  margin-bottom: 0;
}

.project-paragraph-holder {
  color: #fff;
  text-align: center;
  align-self: center;
  width: 100%;
  max-width: 769px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: Inter, sans-serif;
}

.projects-small-text-holder {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-self: center;
  margin-bottom: 80px;
  font-family: Inter, sans-serif;
  font-size: 19px;
  font-weight: 500;
  display: flex;
}

.project-red-text {
  flex: 1;
  align-self: center;
}

.red-text {
  color: #e3051a;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (min-width: 1440px) {
  .container.navbar-container {
    max-width: none;
  }

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

  .navbar {
    background-color: #000;
  }

  .featured-logo-wrapper {
    width: 130px;
  }

  .hero-paragraph-grid {
    max-width: 1270px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .project-title {
    margin-bottom: .5rem;
  }

  .italic-white {
    font-family: Instrument Serif, sans-serif;
    font-style: italic;
  }

  .italic-white.red {
    color: var(--text-color);
  }

  .video {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .image {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  .feature-heading {
    font-size: 70px;
  }

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

  .container {
    padding-left: 7px;
    padding-right: 7px;
  }

  .button.white-button, .button.cta-button {
    padding: 5px 25px;
    font-size: 22px;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .navbar-container {
    grid-column-gap: 80px;
    justify-content: flex-end;
  }

  .featured-logo-wrapper {
    width: 150px;
  }

  .help-holder {
    flex-direction: column;
    display: flex;
  }

  .help-container {
    border-right-style: none;
  }

  .help-link-holder {
    grid-column-gap: 30px;
    flex-direction: row;
  }

  .help-link-container.w--current {
    border-right-style: none;
  }

  .menu-button {
    border-radius: 8px;
    padding: 10px;
    transition: background-color .4s;
  }

  .project-details {
    flex-direction: column;
  }

  .rich-text-holder {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .nav-menu-link-holder {
    grid-row-gap: 20px;
    flex-direction: column;
    padding-left: 10px;
  }

  .nav-links {
    grid-row-gap: 20px;
    flex-direction: row;
    height: auto;
  }

  .nav-menu-wrapper {
    background-color: #fff0;
  }

  .nav-wrapper {
    justify-content: space-between;
  }

  .footer-top-links {
    grid-column-gap: 16px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-top-links._02 {
    grid-template-rows: auto;
  }

  .line {
    width: 80%;
    max-width: 100%;
  }

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

  .project-main-wrapper {
    display: flex;
  }

  .project-image-holder {
    margin-bottom: 30px;
  }

  .project-image {
    max-width: 100%;
  }

  .media-wrapper {
    align-items: flex-start;
    margin: 50px 0 0;
  }

  .social-holder {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .share-text-holder {
    align-self: auto;
    margin-right: 0;
  }

  .info-holder {
    margin-top: 0;
  }

  .info-holder.red {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .info-small-heading-holder, .info-small-heading-holder.red-01 {
    margin-left: 0;
    margin-right: 0;
  }

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

  .hero-paragraph-grid {
    margin-top: 30px;
  }

  .paragraph-holder-01 {
    align-self: auto;
    margin-top: 0;
    margin-left: 30px;
  }

  .paragraph-holder-02 {
    margin-top: 169px;
    margin-left: 30px;
  }

  .paragraph-holder-03 {
    margin-right: 30px;
  }

  .hero-image-holder {
    display: block;
  }

  .hero-heading {
    font-size: 155px;
  }

  .grid-01 {
    margin-left: 0;
    margin-right: 0;
  }

  .info {
    top: 181px;
  }

  .grid-02 {
    flex-direction: column;
    margin-bottom: 0;
    display: flex;
  }

  .project-name-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .border {
    flex-direction: column;
    display: flex;
  }

  .form-heading {
    font-size: 85px;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .feature-heading {
    font-size: 60px;
  }

  .footer-heading {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  blockquote {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 60px 0;
  }

  .container.project-container {
    padding-top: 60px;
  }

  .border-box {
    padding: 2px;
  }

  .button.white-button, .button.cta-button {
    display: block;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .paragraph-xl {
    font-size: 18px;
  }

  .navbar-container {
    justify-content: flex-end;
  }

  .help-link-holder {
    flex-direction: column;
  }

  .footer-top-links {
    justify-content: flex-start;
    display: block;
  }

  .footer-top-links._02 {
    flex-direction: row;
    display: flex;
  }

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

  .project-main-wrapper {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .email.message {
    min-width: 150px;
  }

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

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

  .paragraph-holder-01 {
    margin-bottom: 0;
  }

  .paragraph-holder-02 {
    margin-top: 90px;
    margin-left: 4px;
    overflow: hidden;
  }

  .paragraph-holder-03 {
    margin-bottom: 0;
  }

  .hero-paragraph {
    font-size: 15px;
  }

  .hero-heading {
    font-size: 85px;
  }

  .info {
    top: 55px;
  }

  .features-ikone-wrapper {
    margin-top: 50px;
  }

  .italic-text {
    font-size: 60px;
  }
}

@media screen and (max-width: 479px) {
  p {
    text-transform: uppercase;
    font-size: 15px;
  }

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

  .black-background-padding {
    padding: 7px;
  }

  .container {
    padding-left: 6px;
    padding-right: 6px;
  }

  .container.navbar-container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .button.white-button {
    margin-top: 15px;
    margin-bottom: 0;
    margin-right: 0;
    position: static;
  }

  .button.cta-button {
    width: 100%;
    height: 51px;
    margin-top: 15px;
    margin-bottom: 0;
    margin-right: 0;
    position: static;
  }

  .style-guide-box-holder {
    padding: 4px;
  }

  .style-guide-box-container {
    grid-row-gap: 7px;
  }

  .colors-buttons {
    flex-direction: column;
    padding-top: 29px;
    padding-bottom: 29px;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .navbar-container {
    grid-column-gap: 12px;
  }

  .featured-logo-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .pricing-list-holder {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .pricing-footer-holder {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .figma-file-container {
    grid-row-gap: 32px;
    flex-direction: column;
  }

  .change-log-block-holder {
    flex-direction: column;
    display: flex;
  }

  .menu-button {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
  }

  .contact-text-field {
    border-bottom-color: #707070;
  }

  .project-details {
    padding-top: 20px;
  }

  .nav-menu-link-holder {
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: #79000033;
    padding: 7px;
  }

  .nav-link-big {
    z-index: 2;
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .footer {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-top-links._02 {
    grid-row-gap: 16px;
    display: flex;
  }

  .footer-links-holder {
    flex-direction: row-reverse;
    display: flex;
  }

  .line {
    width: 100%;
    margin-top: -14px;
    margin-bottom: -14px;
  }

  .black-line-text-container {
    flex-wrap: wrap;
  }

  .work-item {
    border-style: none;
    border-color: #000;
  }

  .footer-grid {
    grid-template-rows: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-links-wrapper {
    align-items: flex-start;
  }

  .menu-text {
    font-size: 14px;
    font-weight: 600;
  }

  .project-main-wrapper {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .project-image-holder {
    margin-bottom: 0;
  }

  .email.message {
    height: 87%;
  }

  .footer-link {
    font-size: 13px;
  }

  .project-template-text-wrapper {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .project-template-heading {
    margin-top: 0;
    font-size: 42px;
  }

  .social {
    font-size: 40px;
  }

  .full-width-image-3 {
    border-radius: 7px;
  }

  .hero-holder {
    inset: 0%;
  }

  .info-wrapper {
    justify-content: space-between;
    display: flex;
  }

  .info-holder.red {
    margin-top: 138px;
    margin-bottom: 138px;
  }

  .info-holder.bottom {
    margin-top: 0;
    margin-bottom: 0;
  }

  .info-small-heading-holder {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .info-small-heading-holder._01 {
    margin-top: 0;
  }

  .info-heading-wrapper {
    width: 100%;
  }

  .info-heading {
    font-size: 24px;
  }

  .hero-paragraph-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 15px;
    padding-left: 1.1em;
    padding-right: 1.1em;
    display: flex;
  }

  .paragraph-holder-01 {
    margin-bottom: 0;
    margin-left: 0;
  }

  .paragraph-holder-02 {
    margin-top: 0;
  }

  .paragraph-holder-03 {
    margin-right: 0;
  }

  .hero-paragraph {
    font-size: 13px;
    font-weight: 300;
  }

  .hero-image-holder {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding-top: 80px;
    padding-bottom: 30px;
    display: flex;
  }

  .hero-heading {
    font-size: 62px;
  }

  .heading-wrapper {
    flex-direction: column;
  }

  .feature-heading {
    font-size: 50px;
  }

  .info {
    top: 77px;
  }

  .grid-02 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .project-name-holder {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .project-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-direction: column;
    display: flex;
  }

  .border {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

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

  .from-holder {
    width: 100%;
  }

  .from-holder._02 {
    margin-left: 0;
  }

  .form-heading {
    font-size: 60px;
  }

  .footer-list-wraper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .project-red-text.w--current {
    align-self: auto;
  }
}

#w-node-_1b9edce9-0e57-e67e-eb55-2282fedd0b3d-a8e685b3, #w-node-_79aa727f-554d-5157-63db-0da54a9e7a8f-a8e685b3, #w-node-aa9a5cac-a3d9-bd0f-44d3-b2a7f5079b00-a8e685b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_45df408b-83b9-b62d-01ba-1e27fcc56136-a8e685b3 {
  place-self: center;
}

#w-node-_81cf7364-d23d-06e2-87c8-e56940ae1a4e-a8e685b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_81cf7364-d23d-06e2-87c8-e56940ae1a54-a8e685b3 {
  place-self: center end;
}

#w-node-ddbc04c9-393c-169b-a56f-c5b9e6d6eaae-a8e685b3, #w-node-_23be591d-f07f-c8b4-4e38-736671ea2f4f-a8e685b3, #w-node-_453d5d07-1dd9-7a4d-81d6-8a9c5a12009c-a8e685b3, #w-node-_6cc7abaf-1b88-666e-21a4-4a366182546c-a8e685b3, #w-node-_81ec7317-6cb8-52ad-99ce-285202171d47-a8e685b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto center;
}

#w-node-e2fe1e11-5eea-1476-8c88-3571371fb63d-468af7d9 {
  place-self: end;
}

#w-node-_738c8c70-a63c-9bed-ba3c-31622638a2ea-468af7d9, #w-node-_0aed2106-11ce-035e-ac21-9c494ddb951e-468af7d9, #w-node-b202321d-a1c7-58d0-c8d7-e3a0ec364cd9-a8e685b7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1574817d-249b-c685-69bd-8d6f52423fb1-a8e685b7 {
  align-self: auto;
}

#w-node-_4344ddac-0534-6d3c-f1a0-5c09f7d2e8bd-a8e685b7 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_9241b469-8544-de08-d98c-55f4d7b840f1-a8e685b7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_203703b4-8529-ecae-c3f2-5769c2500510-a8e685b7 {
  justify-self: auto;
}

#w-node-_2459d5e1-092c-b1b2-5e7a-f7ef0cb88b4a-a8e685b7 {
  justify-self: start;
}

#w-node-d5836e48-192b-6117-3bc8-4520aaa8c5ec-a8e685b7 {
  place-self: auto;
}

#w-node-d90d2a00-c014-95cf-c56c-5b26170952c1-a8e685b7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d90d2a00-c014-95cf-c56c-5b26170952c7-a8e685b7 {
  place-self: center end;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1e-afbcc8a6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1f-afbcc8a6 {
  align-self: auto;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c26-afbcc8a6 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c80-afbcc8a6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c86-afbcc8a6 {
  place-self: center end;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1e-dc6ab9c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1f-dc6ab9c3 {
  align-self: auto;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c26-dc6ab9c3 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1e-a7c4bd82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1f-a7c4bd82 {
  align-self: auto;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c26-a7c4bd82 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1e-b679299e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1f-b679299e {
  align-self: auto;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c26-b679299e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1e-b6e4a818 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1f-b6e4a818 {
  align-self: auto;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c26-b6e4a818 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c80-b6e4a818 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c86-b6e4a818 {
  place-self: center end;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1e-676c603d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c1f-676c603d {
  align-self: auto;
}

#w-node-ae3abc34-ec45-7565-2755-0ad1f6907c26-676c603d {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-_45df408b-83b9-b62d-01ba-1e27fcc56136-a8e685b3 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Montserrat Variablefont Wght';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-recaptcha {
  margin-top: 18px;
}

.form-privacy-notice {
  max-width: 560px;
  margin: 14px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 1.5;
}

.form-privacy-notice a {
  color: inherit;
  text-decoration: underline;
}
