:root {
  --text-gradient-01: #f5f5f8;
  --gradient-text-02: #bbbbbd;
  --black: #161b22;
  --white: white;
  --text-main: #b4bcd0;
  --dim-grey: #5f6177;
}

.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: #fff;
  background-color: #000;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

h1 {
  background-image: linear-gradient(to bottom, var(--text-gradient-01), var(--gradient-text-02));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 75px;
  font-weight: 500;
  line-height: 1.5;
}

h2 {
  background-image: linear-gradient(to top, var(--text-gradient-01), var(--gradient-text-02));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.5;
}

h3 {
  background-image: linear-gradient(to top, var(--text-gradient-01), var(--gradient-text-02));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.5;
}

h4 {
  background-image: linear-gradient(to top, var(--text-gradient-01), var(--gradient-text-02));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
}

h5 {
  background-image: linear-gradient(to top, var(--text-gradient-01), var(--gradient-text-02));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}

h6 {
  color: #81859f;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

p {
  color: #b4bcd0;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color .35s;
}

a:hover {
  color: #969696;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 18px;
  font-weight: 500;
}

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

li {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 18px;
}

blockquote {
  text-shadow: 1px 1px 20px #ffffff40;
  border-left: 5px #e2e2e2;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 50px 32px;
  font-size: 24px;
  font-style: italic;
  font-weight: 200;
  line-height: 1.2;
}

figure {
  margin-bottom: 10px;
}

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

.section.is-bg {
  background-color: #161b22;
}

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

.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
}

.container.nav-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

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

.container.wide-container {
  max-width: 1370px;
}

.nav-menu-container {
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  background-color: #212121cc;
  border: 1px solid #ffffff1a;
  border-radius: 100px;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 14px 20px #00000036;
}

.navbar {
  z-index: 20;
  background-color: #0000;
  height: 70px;
  position: sticky;
  inset: 0% 0% auto;
}

.nav-menu {
  align-items: center;
  height: 100%;
  font-weight: 600;
  display: flex;
}

.white-text {
  color: #fff;
}

.top-margin-l {
  margin-top: 3em;
}

.button {
  color: #000;
  background-color: #fff;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .3s, box-shadow .5s;
}

.button:hover {
  color: #000;
  background-color: #f5f5f5;
  box-shadow: 0 0 13px #ffffff61;
}

.button.big {
  padding: 20px 40px;
}

.button.navbar-button {
  padding: 7px 16px;
  font-size: 14px;
}

.button.from {
  height: 45px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  right: 3px;
}

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

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

.utility-page-form {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.link-block {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color .4s;
}

.link-block:hover {
  color: #a8a8a8;
}

.link-block.animation-01, .link-block.animation-02, .link-block.animation-03, .link-block.animation-04 {
  overflow: hidden;
}

.link-block.animation-05 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link-block-underline {
  background-color: #8d8d8d;
  width: 100%;
  height: 1px;
  margin-top: 2px;
}

.link-block-underline._02, .link-block-underline._01 {
  height: 1px;
}

.link-block-underline._01._2px {
  height: 2px;
}

.footer {
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
}

.footer-flex-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.footer-logo-link {
  flex: 0 auto;
  min-width: 80px;
}

.footer-image {
  object-position: 0% 50%;
  width: 34px;
}

.fade-in-move-on-scroll {
  text-align: center;
}

.nav-link {
  grid-column-gap: 6px;
  flex-direction: row;
  align-items: center;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.grey-text {
  color: #b4b4b4;
}

.text-field-form {
  color: #fff;
  background-color: #0d0d1880;
  border: 1px solid #fcfcfc33;
  border-radius: 160px;
  width: 460px;
  height: 50px;
  margin-bottom: 0;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 26px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  transition: transform .4s, border-color .4s;
}

.text-field-form:focus {
  border-color: #fff;
}

.text-field-form::placeholder {
  color: #a3a4bf;
}

.instructions-image {
  border-radius: 12px;
  width: 100%;
}

.change-log-container {
  grid-column-gap: 60px;
  border: 2px solid #b8b8b8;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  display: flex;
}

.menu-button {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

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

.grid-2-col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
}

.style-guide-title-holder {
  flex-direction: column;
}

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

.colors-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 30px;
  display: flex;
}

.success-message {
  color: #000;
  letter-spacing: 0;
  background-color: #111;
  background-image: linear-gradient(to right, #efb7ae 13%, #d9d8e8 78%);
  border-radius: 6px;
  padding: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 0 30px #0000001a;
}

.headings-holder {
  background-color: var(--black);
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px;
  display: flex;
}

.link-block-2 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color .4s;
}

.link-block-2:hover {
  color: #fff;
}

.link-block-2.animation-03 {
  overflow: hidden;
}

.link-block-2.animation-05 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.x-icon {
  width: 14px;
}

.x-icon.invert {
  filter: invert(63%);
}

.content {
  grid-column-gap: 16px;
  align-items: center;
}

.right-underline {
  background-color: #aaa;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.aa-font {
  font-size: 130px;
}

.colors-container {
  background-color: #fafafa;
}

.sg---color-description {
  grid-row-gap: 2px;
  background-color: var(--black);
  flex-direction: column;
  padding: 15px;
  display: flex;
}

.style-guide-gray-background {
  background-color: var(--black);
}

.style-guide-gray-background.big-margins {
  margin-top: 90px;
  margin-bottom: 90px;
}

.style-guide-x-button {
  background-color: #141b22;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  transition: background-color .4s;
  display: flex;
  position: fixed;
  inset: .3em 2em auto auto;
}

.style-guide-x-button:hover {
  background-color: var(--black);
}

.paragraph-container {
  width: 80%;
  margin-top: 10px;
}

.submit-button-arrow {
  color: #030303;
  background-color: #d9d9d9;
  border-radius: 0 8px 8px 0;
  height: 100%;
  padding: 0 21px;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  inset: auto 0% 0% auto;
}

.font-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #161b22;
  justify-content: space-between;
  margin-top: 30px;
  padding: 45px 70px;
  display: flex;
}

.style-guide-main-panel {
  width: 100%;
  height: 100%;
  padding: 50px;
}

.button-holder {
  grid-row-gap: 30px;
  background-color: var(--black);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  display: flex;
}

.style-guide-left-panel {
  grid-row-gap: 25px;
  flex-direction: column;
  width: 100%;
  padding: 35px 8px 0 35px;
  display: flex;
  position: sticky;
  top: 50px;
}

.style-guide-home-text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
}

.style-guide-home-text.hide-mobile {
  display: block;
}

.headings-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.h6-fixed {
  font-size: 24px;
}

.h6-fixed.bold-text {
  font-weight: 700;
}

.h6-fixed.light-text {
  font-weight: 100;
}

.grid-holder {
  grid-row-gap: 30px;
  background-color: var(--black);
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px;
  display: flex;
}

.subscribe-form {
  position: relative;
}

.sg---color-black {
  background-color: #111;
  width: 235px;
  height: 150px;
}

.paragraph-m {
  font-size: 18px;
  line-height: 1.8;
}

.style-guide-panel-title {
  color: #b3b3b3;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
}

.style-guide-container {
  display: flex;
}

.button-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2em;
  display: grid;
}

.style-guide-navbar-link {
  flex-direction: column;
  align-items: flex-start;
  height: 35px;
  display: flex;
  overflow: hidden;
}

.borders-2 {
  opacity: .58;
  color: #fff;
  border: 1px solid #b9b9b9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 18px;
  font-weight: 300;
  display: flex;
}

.borders-2.center {
  height: 100px;
}

.grid-8-col {
  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;
}

.style-guide-empty-container {
  padding: 50px;
}

.style-guide-small-title {
  color: #fff;
  font-size: 21px;
  font-weight: 400;
}

.style-guide-hero-holder {
  grid-row-gap: 20px;
  flex-direction: column;
  padding: 50px 380px 50px 50px;
  display: flex;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.style-guide-navbar {
  z-index: 30;
  color: #fff;
  background-color: #151b22;
  border-bottom: 1px solid #151b22;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: sticky;
  top: 0;
}

.style-guide-tab-holder {
  color: #fff;
  border-radius: 5px;
  width: 120%;
  margin-left: -25px;
  padding: 11px 25px 11px 49px;
  font-size: 16px;
  font-weight: 400;
  transition-property: background-color;
  transition-duration: .675s;
}

.style-guide-tab-holder.w--current {
  color: #fff;
  background-color: #2b333d;
}

.subscribe-field-text {
  color: #fff;
  background-color: #0000;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 30px 109px 30px 17px;
  font-size: 18px;
  font-weight: 500;
  transition: border-color .4s;
}

.subscribe-field-text:focus {
  border-color: #ffd660;
}

.subscribe-field-text::placeholder {
  color: #b9b9b9;
}

.contact-field-text {
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #595959;
  border-radius: 0;
  flex: 1;
  height: 60px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 32px;
  font-size: 18px;
  font-weight: 400;
  transition: border-color .375s;
  display: inline-block;
}

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

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

.contact-field-text::placeholder {
  color: #595959;
  font-weight: 300;
}

.link-underline-holder {
  height: 2px;
  position: relative;
}

.font-details-holder {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.style-guide-left-panel-holder {
  background-color: #151b22;
  align-items: flex-start;
  width: 405px;
  display: flex;
}

.left-underline {
  background-color: #aaa;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.hero-text {
  background-color: #fff;
  background-image: linear-gradient(to bottom, var(--text-gradient-01), var(--gradient-text-02));
  color: #b4bcd0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 11vw;
  font-weight: 800;
}

.gradient-button-holder {
  position: relative;
}

.gradient-button {
  filter: blur(20px);
  background-image: linear-gradient(to right, #ffbbae, #c6caf6 73%, #958feb);
  border-radius: 100px;
  position: absolute;
  inset: 0%;
}

.gradient-white-button {
  z-index: 1;
  color: #000;
  background-color: #fff;
  border-radius: 100px;
  padding: 16px 24px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.nav-link-holder {
  color: #81859f;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  transition: opacity .2s, color .35s;
  display: flex;
}

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

.nav-link-holder.w--current {
  color: #fff;
  text-shadow: 0 0 4px #ffffff40;
  background-color: #ffffff1a;
}

.brand {
  width: 64px;
  min-width: 64px;
}

.brand-image {
  width: 34px;
  height: 34px;
}

.nav-link-active-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.cricle-active-holder {
  filter: blur(40px);
  background-image: linear-gradient(#eec5bd, #c6caf6 64%, #dad9e9);
  border-radius: 200px;
  width: 70px;
  height: 70px;
  display: none;
  position: absolute;
  top: 27.8984px;
}

.cricle-active-holder.w--current {
  display: flex;
}

.hero-section {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-sticky-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-text-holder {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  perspective: 1000px;
  white-space: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.hero-paragraph-holder {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  display: flex;
}

.hero-section-text-holder {
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 150vh;
  display: flex;
}

.iphone-holder {
  z-index: 1;
  border-radius: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  display: flex;
  position: relative;
  top: 6%;
}

.iphone-screen {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 4.1% 4.6%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.iphone-image {
  z-index: 2;
  height: 100%;
  position: relative;
}

.hero-section-sticky {
  width: 100%;
  position: sticky;
  top: 50%;
}

.hero-section-paragraph-holder {
  grid-row-gap: 36px;
  flex-direction: column;
  padding-top: 250px;
  display: flex;
}

.iphone-screen-image {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 40px;
  width: 100%;
  height: 100%;
}

.iphone-drop-shadow {
  filter: blur(64px);
  background-color: #000;
  width: 120%;
  height: 70%;
  position: absolute;
}

.iphone-drop-shadow.low {
  opacity: .37;
  filter: blur(18px);
  width: 100%;
}

.from-holder {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.form-block {
  margin-bottom: 0;
}

.from-wra-er {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.logo-small {
  object-fit: cover;
  border-radius: 10px;
  width: 5rem;
  height: 5rem;
}

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

.title-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 910px;
  display: flex;
}

.title {
  background-image: linear-gradient(to bottom, var(--text-gradient-01), var(--gradient-text-02));
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 75px;
  font-weight: 800;
}

.title.smaller {
  margin-bottom: 10px;
  line-height: 1.2;
}

.experience-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.experience-card {
  z-index: 5;
  background-color: #30363d;
  border-radius: 26px;
  justify-content: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.experience-card-content {
  z-index: 5;
  opacity: 1;
  background-color: #161b22;
  border-radius: 25px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin: 1px;
  padding: 2.5rem 2rem;
  display: flex;
  position: relative;
}

.experience-card-content.is-install {
  background-color: #5f6177;
  justify-content: space-between;
}

.experience-card-image-holder {
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}

.experience-card-text-holder {
  grid-row-gap: 6px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.experience-card-text-holder.grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 42px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-title {
  background-image: linear-gradient(to bottom, var(--text-gradient-01), var(--gradient-text-02));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 30px;
  font-weight: 800;
  line-height: 44px;
}

.experience-paragraph-holder {
  max-width: 600px;
}

.experience-paragraph-holder.testimonial {
  margin-top: 1.5rem;
}

.experience-gradient {
  background-image: linear-gradient(#151b2200, #151b22);
  height: 70px;
  position: absolute;
  inset: auto 0% -3%;
}

.experience-gradient.is-install {
  background-image: linear-gradient(#151b2200, #5f6177);
}

.effortlessly-integration-section {
  background-color: #161b22;
  padding-top: 90px;
  overflow: hidden;
}

.effortlessly-integration-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.logo-holder-effortlessly-integration {
  z-index: 2;
  grid-column-gap: 50px;
  justify-content: center;
  align-items: center;
  width: 95%;
  display: flex;
  position: absolute;
  top: 180px;
}

.iphone-holder-effortlessly-integration {
  z-index: 3;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.effortlessly-integration---iphone-holder {
  z-index: 1;
  border-radius: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 430px;
  display: flex;
  position: relative;
  top: 6%;
}

.logo-holder {
  perspective: 1000px;
  border-radius: 41px;
  justify-content: center;
  align-items: center;
  width: 155px;
  min-width: 155px;
  height: 155px;
  min-height: 155px;
  display: flex;
  position: relative;
}

.logo-image {
  z-index: 2;
  object-fit: cover;
  border-radius: 44px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.logo-image.blured {
  z-index: 1;
  filter: blur(20px);
}

.workflow-section {
  z-index: 4;
  grid-row-gap: 6px;
  text-align: center;
  background-color: #161b22;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -364px;
  padding-top: 65px;
  padding-bottom: 65px;
  display: flex;
  position: relative;
}

.light-holder {
  opacity: .23;
  filter: blur(90px);
  background-image: linear-gradient(to right, #eec5bd, #c6caf6 46%, #dad9e9);
  width: 70%;
  height: 270px;
  position: absolute;
  top: auto;
  bottom: 0%;
}

.sticky-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.trusted-white-overlay {
  background-image: linear-gradient(#161b22, #0000);
  width: 48vw;
  height: 10em;
  position: sticky;
  inset: 0 0% auto;
}

.trusted-white-overlay.bottom {
  background-image: linear-gradient(to top, #161b22, #0000 58%);
  height: 20vh;
  display: none;
  top: 80vh;
}

.trusted-item {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20vh;
  display: flex;
}

.trusted-item.last {
  margin-bottom: 0;
}

.trusted-item-header {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.content-sticky {
  position: sticky;
  top: 100px;
}

.trusted-overlay-container {
  width: 1px;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.trusted-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.trusted-content.trusted-list {
  padding-top: 70vh;
}

.trusted-no {
  background-color: var(--white);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #2be1ec66 7.08%, #f349c466 65.1%, #d7075b66);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: -14px;
  margin-right: 10px;
  font-size: 75px;
  font-weight: 800;
}

.download-badge-container {
  grid-column-gap: 30px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.dark-and-light-mode-holder {
  background-color: #000;
  width: 100%;
  height: 250vh;
}

.dark-and-light-mode-container {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

.dark-and-light-mode-sticky {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.dark-mode-holder {
  z-index: 1;
  background-color: #000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dark-mode-hand-holder {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  margin: 80px 0 0;
  display: flex;
  position: relative;
  inset: 0;
}

.dark-mode-hand {
  z-index: 1;
  width: 400px;
  position: relative;
}

.dark-mode-app-holder {
  padding: 2.6% 26% 26.2% 16%;
  position: absolute;
  inset: 0%;
}

.dark-mode-app {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.white-mode-holder {
  z-index: 1;
  background-color: #161b22;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.center-iphone {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.cards-grid-holder {
  padding-top: 70px;
}

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

.social-media-link {
  opacity: 1;
  transition: opacity .2s, color .2s;
}

.social-media-link:hover {
  opacity: .7;
}

.footer-list-item {
  margin-bottom: 0;
  padding-top: 6px;
  padding-bottom: 0;
  padding-right: 1em;
}

.footer-social-media-container {
  text-align: left;
  border-bottom: 1px solid #d5d7db;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 2em;
  padding-bottom: 2em;
  display: flex;
}

.link {
  flex: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.link:hover {
  text-decoration: none;
}

.powered-by {
  margin-left: 1em;
}

.social-media-content {
  grid-column-gap: 8px;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.footer-copyright {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  font-size: 18px;
  display: flex;
}

.text-gradient-1 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(111deg, #fa5853, #f46692 50%, #ffc444);
  -webkit-background-clip: text;
  background-clip: text;
}

.made-container {
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  font-size: 18px;
  display: flex;
}

.light-grey {
  color: #c4c4c4;
}

.external-link {
  color: #000;
  background-image: url('../images/External-Link-Icon.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 23px;
  font-family: Manrope, sans-serif;
  font-weight: 800;
}

.footer-list {
  grid-column-gap: 9px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.footer-brand-content {
  grid-column-gap: 40px;
  flex-direction: row;
  flex: 1;
  align-items: center;
  display: flex;
}

.line {
  background-color: #35373d;
  width: 80%;
  height: 1px;
  position: absolute;
  top: 0%;
  bottom: auto;
}

.hero-text-blur {
  background-color: var(--white);
  opacity: .64;
  filter: blur(120px);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #2be1ec66 7.08%, #f349c466 65.1%, #d7075b66);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 16vw;
  font-weight: 800;
  position: absolute;
}

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

.licensing-grid.feather-icon {
  justify-content: space-around;
  display: flex;
}

.licensing-content {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feather-icon-holder {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
}

.logo-to-use-image {
  height: 100%;
}

.licensing-icon {
  filter: invert();
}

.licensing-cards-wrapper {
  grid-row-gap: 45px;
  background-color: #151b22;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 50px;
  display: flex;
}

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

.logo-to-use-holder {
  height: 24px;
}

.licensing-cards {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.licensing-title {
  font-size: 24px;
  font-weight: 500;
}

.feather-icon {
  width: 100%;
}

.licensing-cards-container {
  background-color: #000;
  margin-top: 50px;
  padding-top: 69px;
  padding-bottom: 69px;
}

.licensing-image-holder {
  width: 100%;
}

.licensing-link-holder {
  grid-column-gap: 8px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  transition-property: opacity;
  display: flex;
}

.licensing-link-holder:hover {
  opacity: .7;
}

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

.hide {
  display: none;
}

.experience-wrapper {
  perspective: 1000px;
  cursor: default;
  background-color: #ddd0;
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.experience-wrapper.w--current {
  background-color: #ddd0;
}

.light-wrapper {
  z-index: 4;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  pointer-events: none;
}

.light {
  opacity: 1;
  border-radius: 110px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.hero-text-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.light-inside {
  filter: blur(70px);
  background-color: #fff;
  width: 200px;
  height: 200px;
}

.light-wrapper-in-front {
  z-index: 6;
  opacity: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  pointer-events: none;
}

.light-outside {
  opacity: .1;
  filter: blur(70px);
  background-color: #fff;
  width: 200px;
  height: 200px;
}

.error-message {
  text-align: center;
  background-color: #ff3939;
  border-radius: 50px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 15px;
}

.buy-template-guide {
  z-index: 20;
  grid-column-gap: 10px;
  opacity: .8;
  border: 1px solid #0003;
  border-radius: 6px;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .4s, box-shadow .475s;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
  overflow: hidden;
}

.buy-template-guide:hover {
  opacity: 1;
  color: #000;
  border-color: #4253ff;
  box-shadow: 0 6px 20px #0000003b;
}

.paragraph {
  color: #b4bcd0;
  letter-spacing: 1px;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-size: 16px;
  line-height: 1.6;
}

.paragraph.is-intro {
  font-size: 3.5rem;
}

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

.card-content-title {
  background-image: linear-gradient(to bottom, var(--text-gradient-01), var(--gradient-text-02));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 44px;
}

.experience-read {
  grid-column-gap: 5px;
  color: #e1e1e3;
  letter-spacing: 1px;
  cursor: pointer;
  align-items: flex-start;
  margin-top: 1.5rem;
  font-size: 1rem;
  display: flex;
}

.experience-read-icon {
  width: 18px;
  height: 18px;
}

.bots-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  perspective: 1000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 110px;
  display: grid;
  position: relative;
}

.bots-grid.margin-small {
  margin-top: 30px;
}

.testimonial-client {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.testimonial-client-name {
  background-image: linear-gradient(to bottom, var(--text-gradient-01), var(--gradient-text-02));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
}

.testimonial-wrapper {
  perspective: 1000px;
  background-color: #ddd0;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.testimonial-wrapper.w--current {
  background-color: #ddd0;
}

.testimonial-client-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.testimonial-client-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.testimonial-client-link-icon {
  width: 14px;
  height: 14px;
}

.testimonial-twitter {
  display: block;
}

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

.logo-component {
  margin-bottom: 1rem;
  display: flex;
}

.logo-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  white-space: nowrap;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  place-items: center start;
  margin-right: 2rem;
  display: grid;
}

.logo-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-paragraph-intro {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  margin-bottom: 3rem;
  display: flex;
  position: sticky;
  top: 30%;
}

.text-span {
  background-color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.install_modal-01 {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
  transform: translate(0, 100%);
}

.install_modal-content-wrapper {
  background-color: #161b22;
  border-radius: 25px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 55rem;
  height: auto;
  max-height: 80vh;
  padding: 3rem;
  position: relative;
  overflow: auto;
}

.install_modal-background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.install_modal-grid {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 2rem;
  display: flex;
}

.card-modal-title {
  background-image: linear-gradient(to bottom, var(--text-gradient-01), var(--gradient-text-02));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 28px;
  font-weight: 800;
  line-height: 44px;
}

.modal-card-text-holder {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.install_modal-02 {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
  transform: translate(0, 100%);
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
  position: relative;
  z-index: 10;
}

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

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

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

.form-field-wrapper {
  position: relative;
}

.field-label {
  color: #b4bcd0;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 400;
  display: block;
}

.form-input {
  border-style: none none solid;
  border-width: 1px;
  border-color: transparent transparent var(--white);
  color: var(--white);
  background-color: #0000;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000 #000 var(--text-main);
}

.form-input::placeholder {
  color: #0009;
}

.form-input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-input.is-text-area::placeholder {
  color: #b4bcd0;
}

.form-input.is-select-input {
  background-image: none;
}

.success-text {
  font-weight: 600;
}

.error-text {
  color: #e23939;
}

.testimonial-image {
  border-radius: 10px;
  width: 3rem;
}

.experience-card-image-border {
  border-radius: 100px;
  width: 8rem;
  min-height: 3rem;
}

.button-group {
  margin-top: .75rem;
}

.form-modal_component {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.form-modal_component.is_new-server {
  display: none;
}

.form-modal-block {
  flex-direction: column;
  align-items: stretch;
  margin-top: 2rem;
}

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

.form-field-2col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-modal_close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.form-modal_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.testimonial-card {
  z-index: 5;
  background-color: #30363d;
  border-radius: 25px 25px 25px 0;
  justify-content: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.testimonial-card-content {
  z-index: 5;
  opacity: 1;
  background-color: #161b22;
  border-radius: 25px 25px 25px 0;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin: 1px;
  padding: 2.5rem 2rem;
  display: flex;
  position: relative;
}

.form_modal-content-wrapper {
  background-color: #161b22;
  border-radius: 25px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 55rem;
  height: auto;
  max-height: 80vh;
  padding: 3rem;
  overflow: auto;
}

.form_modal-content-wrapper.is_new-server {
  box-shadow: 1px 1px 3px -1px var(--dim-grey);
  position: relative;
}

.section-padding {
  padding-top: 90px;
}

.install-modal_close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal-card {
  background-color: #30363d;
  border-radius: 26px;
  justify-content: center;
  width: 100%;
  display: flex;
  position: relative;
}

.paragraph-change-text {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: flex;
}

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

.title-modal {
  background-image: linear-gradient(to bottom, var(--text-gradient-01), var(--gradient-text-02));
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 800;
}

.work-card-content {
  z-index: 5;
  opacity: 1;
  background-color: #161b22;
  border-radius: 25px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin: 1px;
  padding: 2.5rem 2rem;
  display: flex;
  position: relative;
}

.card-icon {
  color: #5f6177;
  width: 5rem;
  height: 5rem;
}

.card-icon.is-blue {
  color: #161b22;
}

.link-2 {
  color: #d6d6d6;
}

.html-embed {
  justify-content: center;
  align-items: center;
  display: block;
}

.section-2 {
  flex-direction: column;
  justify-content: space-between;
  display: block;
}

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

  .experience-gradient {
    height: 130px;
  }

  .experience-gradient._02 {
    bottom: -26%;
  }
}

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

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 35px;
  }

  .nav-menu-container {
    grid-column-gap: 28px;
    padding-right: 10px;
    overflow: visible;
  }

  .nav-menu {
    z-index: 99;
    background-color: #1a1a1a;
    border-radius: 20px;
    width: 400px;
    height: auto;
    margin-top: 12px;
    padding: 10px;
    left: -100px;
  }

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

  .link-block {
    padding-top: 0;
    padding-bottom: 2px;
  }

  .link-block-underline {
    display: none;
  }

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

  .footer-flex-container {
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .nav-link {
    grid-row-gap: 10px;
    flex-direction: column;
    height: auto;
  }

  .menu-button {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .menu-button.w--open {
    background-color: #1f1f1f;
    border-radius: 40px;
  }

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

  .link-block-2 {
    padding-top: 0;
    padding-bottom: 2px;
  }

  .style-guide-main-panel {
    padding: 16px;
  }

  .style-guide-left-panel {
    grid-column-gap: 16px;
    grid-row-gap: 50px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 17px;
    display: grid;
  }

  .style-guide-container {
    flex-direction: column;
  }

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

  .style-guide-empty-container {
    padding: 17px 0;
  }

  .style-guide-hero-holder {
    padding: 28px;
  }

  .style-guide-tab-holder {
    margin-left: 0;
    padding: 5px 0;
  }

  .style-guide-left-panel-holder {
    width: 100%;
  }

  .nav-button-holder {
    margin-top: 10px;
  }

  .brand {
    width: 90px;
    min-width: 90px;
  }

  .cricle-active-holder.w--current {
    opacity: .22;
    top: -8px;
  }

  .hero-text-holder {
    grid-column-gap: 30px;
  }

  .title {
    font-size: 3rem;
  }

  .experience-card-text-holder.grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .experience-paragraph-holder {
    margin-top: 1rem;
  }

  .effortlessly-integration---iphone-holder {
    width: 320px;
  }

  .logo-holder {
    border-radius: 8px;
    width: 100px;
    min-width: 100px;
    height: 100px;
    min-height: 100px;
  }

  .logo-image {
    border-radius: 20px;
  }

  .logo-image.blured {
    display: none;
  }

  .workflow-section {
    margin-top: -220px;
    padding: 42px;
  }

  .sticky-section {
    padding-top: 47px;
    padding-bottom: 47px;
  }

  .trusted-item {
    margin-bottom: 5vh;
  }

  .trusted-overlay-container {
    display: none;
  }

  .trusted-content.trusted-list {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .footer-social-media-container {
    grid-row-gap: 2em;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .paragraph.is-intro {
    font-size: 2rem;
  }

  .experience-content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bots-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-top: 3rem;
  }

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

  .logo-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .install_modal-01 {
    align-items: flex-start;
    height: auto;
  }

  .install_modal-content-wrapper {
    max-width: none;
    max-height: none;
    padding-left: 5%;
    padding-right: 5%;
    position: fixed;
    inset: 0%;
  }

  .install_modal-grid {
    flex-direction: column;
  }

  .install_modal-02 {
    align-items: flex-start;
    height: auto;
    transform: translate(0, 100%);
  }

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

  .testimonial-card-content {
    padding: 2rem 1.5rem;
  }

  .form_modal-content-wrapper {
    max-width: none;
    max-height: none;
    padding-left: 5%;
    padding-right: 5%;
    position: fixed;
    inset: 0%;
  }

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

  .card-icon {
    width: 5rem;
    height: 5rem;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 20px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-image {
    object-fit: contain;
  }

  .change-log-container {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 340px;
  }

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

  .colors-holder {
    flex-direction: column;
    align-items: flex-start;
  }

  .font-holder {
    flex-direction: column;
    padding: 16px;
  }

  .style-guide-left-panel {
    grid-template-columns: 1fr 1fr;
  }

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

  .style-guide-empty-container {
    padding-left: 0;
    padding-right: 0;
  }

  .brand {
    padding-left: 0;
  }

  .iphone-holder {
    height: 400px;
    top: 16%;
  }

  .title {
    font-size: 2.5rem;
  }

  .experience-card-image-holder._02, .experience-card-image-holder.smaller {
    height: auto;
  }

  .experience-card-text-holder._02 {
    padding-top: 3px;
  }

  .trusted-item {
    margin-bottom: 3em;
  }

  .trusted-overlay-container {
    display: none;
  }

  .trusted-content {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .trusted-content.trusted-list {
    padding-top: 0;
  }

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

  .footer-social-media-container {
    flex-direction: column;
  }

  .footer-copyright {
    padding-top: 1em;
  }

  .made-container {
    padding-top: 1em;
    padding-right: 0;
  }

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

  .footer-brand-content {
    flex-direction: column;
    padding-right: 0;
  }

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

  .licensing-grid.feather-icon {
    flex-direction: row;
    justify-content: space-between;
  }

  .feather-icon-holder {
    width: 20px;
  }

  .experience-content-grid {
    grid-template-columns: 1fr;
  }

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

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

  .logo-list {
    grid-column-gap: 1rem;
    grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
    padding-top: 1rem;
  }

  .logo-wrapper {
    padding: .75rem 1rem;
  }

  .install_modal-01, .install_modal-02 {
    align-items: flex-start;
  }

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

  .form-modal_component {
    align-items: flex-start;
  }

  .form-field-2col.is-mobile-1col {
    grid-template-columns: 1fr;
  }

  .card-icon {
    width: 3rem;
    height: 3rem;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 28px;
  }

  p {
    font-size: 14px;
    font-weight: 400;
  }

  .container {
    padding: 1em;
  }

  .nav-menu-container {
    justify-content: center;
  }

  .nav-menu {
    width: 100%;
    margin-top: 12px;
    left: 0;
    right: 0;
  }

  .button.from {
    width: 100%;
    position: relative;
  }

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

  .utility-page-content {
    padding: 29px;
  }

  .utility-page-form {
    justify-content: space-between;
    height: 420px;
    padding: 30px;
  }

  .footer {
    text-align: left;
    padding: 21px 0;
  }

  .footer-flex-container {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-logo-link {
    height: 60px;
  }

  .text-field-form {
    width: 100%;
  }

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

  .headings-holder {
    padding: 10px;
  }

  .style-guide-x-button {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    top: .3em;
    right: 0;
  }

  .paragraph-container {
    width: 100%;
  }

  .style-guide-left-panel {
    grid-row-gap: 20px;
    flex-direction: column;
    padding: 23px 12px;
    display: flex;
  }

  .style-guide-home-text.hide-mobile {
    display: none;
  }

  .paragraph-m {
    font-size: 16px;
  }

  .style-guide-panel-title {
    font-size: 18px;
  }

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

  .style-guide-navbar-link {
    justify-content: center;
    align-items: center;
  }

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

  .style-guide-navbar {
    padding-left: .3em;
    padding-right: .3em;
  }

  .style-guide-tab-holder {
    font-size: 19px;
  }

  .hero-text {
    font-size: 12vw;
  }

  .hero-text-holder {
    grid-column-gap: 11px;
  }

  .hero-section-paragraph-holder {
    padding-top: 40px;
  }

  .iphone-screen-image {
    border-radius: 10px;
  }

  .from-holder {
    grid-row-gap: 6px;
  }

  .form-block {
    width: 100%;
  }

  .title {
    font-size: 2.5rem;
  }

  .experience-card {
    border-radius: 16px;
  }

  .experience-card-content {
    border-radius: 15px;
    padding: 1rem;
  }

  .experience-card-image-holder {
    padding-left: 15px;
  }

  .experience-card-text-holder {
    padding: 0 15px;
  }

  .experience-card-text-holder.grid {
    grid-template-columns: 1fr;
  }

  .card-title {
    font-size: 24px;
  }

  .effortlessly-integration-wrapper {
    margin-top: 32px;
  }

  .logo-holder-effortlessly-integration {
    grid-column-gap: 24px;
    top: 142px;
  }

  .effortlessly-integration---iphone-holder {
    width: 200px;
  }

  .logo-holder {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
  }

  .logo-image {
    border-radius: 9px;
  }

  .workflow-section {
    margin-top: -60px;
    padding: 20px;
  }

  .trusted-item {
    grid-row-gap: 8px;
  }

  .trusted-item-header {
    grid-row-gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .trusted-no {
    font-size: 50px;
  }

  .download-badge-container {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .dark-mode-hand-holder {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
  }

  .dark-mode-hand {
    width: 300px;
  }

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

  .footer-list-item {
    margin-bottom: 10px;
  }

  .footer-social-media-container {
    flex-direction: column;
  }

  .powered-by {
    margin-top: .5em;
    margin-left: 0;
  }

  .made-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-list, .footer-brand-content {
    flex-direction: column;
  }

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

  .licensing-grid.feather-icon {
    flex-direction: column;
    align-items: center;
  }

  .licensing-grid.feather-icon.grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .feather-icon-holder {
    width: auto;
  }

  .licensing-cards-wrapper {
    padding: 27px;
  }

  .licensing-cards-container {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .left {
    display: block;
  }

  .buy-template-guide {
    margin-bottom: 1em;
    margin-left: 1em;
    margin-right: 1em;
  }

  .card-content-title {
    font-size: 24px;
    line-height: 32px;
  }

  .testimonial-client {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .testimonial-client-name {
    font-size: 24px;
  }

  .testimonial-client-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-twitter {
    align-self: flex-end;
  }

  .logo-list {
    justify-content: center;
  }

  .logo-wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .card-modal-title {
    font-size: 24px;
  }

  .modal-card-text-holder {
    padding: 15px;
  }

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

  .form-modal_component {
    display: none;
  }

  .form-modal-block {
    overflow: auto;
  }

  .testimonial-card {
    border-radius: 16px;
  }

  .testimonial-card-content {
    border-radius: 15px;
    padding: 1rem;
  }

  .form_modal-content-wrapper {
    height: 100%;
    overflow: scroll;
  }

  .modal-card {
    border-radius: 16px;
  }

  .title-modal {
    font-size: 32px;
  }

  .work-card-content {
    border-radius: 15px;
    padding: 1rem;
  }
}

#w-node-_663381c5-7c36-7281-c207-2755ebfcc58f-6dbe52df, #w-node-_4f501ce7-6854-ebb9-bd64-0e810485f416-6dbe52df, #w-node-_78b1a659-d6a9-4a07-5ccc-660ed9730cb1-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#content-1.w-node-da0f3f67-c0c3-f69c-3731-1e2bf0558fb5-6dbe52df {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_6c980e51-c1f8-9e97-e499-ff5ab6c1247a-6dbe52df {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ec6f8d68-c835-a783-3d95-d2446dcef799-6dbe52df, #w-node-_11739d51-a5da-f224-dfb8-f4102fdac653-6dbe52df, #w-node-_7a9036b8-5614-bd5c-f2f9-9438ed63f470-6dbe52df, #w-node-b8c41986-9195-d150-8863-c548dc600c98-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#content-2.w-node-aa40461d-5f8a-e909-a220-be982a569f4d-6dbe52df {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_82831323-f28a-6f58-1350-df08191e5135-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82831323-f28a-6f58-1350-df08191e5146-6dbe52df {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9977f180-2aff-01ea-1e9f-04e4ee0b1844-6dbe52df, #w-node-_15636bed-cc20-2909-b48d-af292bc03f8e-6dbe52df, #w-node-_23fa3a47-5ce9-4cdd-d7c1-b6cd1df5a7b8-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#content-3.w-node-_3b34f069-4ca0-8af3-a5d7-275e2d6716ef-6dbe52df {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-d7a5a4bc-baaf-4cee-9091-fde0bff94226-6dbe52df, #w-node-d7a5a4bc-baaf-4cee-9091-fde0bff94237-6dbe52df, #w-node-_8563557c-14a5-16d9-49b8-d439caf058d3-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_57730e0a-263e-a39b-5bc3-6336115c191b-6dbe52df, #w-node-eb29b106-a700-cd68-e76c-25d96aeca746-6dbe52df, #w-node-_2910d977-d95f-cc5b-d418-070db7843213-6dbe52df, #w-node-_7afaa209-6f67-68b9-1850-d75f1e6630db-6dbe52df, #w-node-_5382c844-fc9f-cb94-9ab6-7b3c6dcb1675-6dbe52df, #w-node-f2b2cca0-0a66-c312-6d4d-6fe7a4c5d339-6dbe52df, #w-node-c2794169-1221-90cb-4b50-6ed297475131-6dbe52df, #w-node-dcb52e78-4d14-563a-eb11-a143899eefdb-6dbe52df, #w-node-_7245296d-3961-8143-7c0f-957db6361e60-6dbe52df, #w-node-_6dc687bb-6d82-3867-453a-1a0979f5ed17-6dbe52df, #w-node-_487fb68a-4d40-bcd7-d124-1eae8a46ab8b-6dbe52df, #w-node-_5085eb6b-b66a-4430-8eb4-cf8d74424924-6dbe52df, #w-node-eff6f9ee-8a32-bf47-6228-9a7e99304c18-6dbe52df, #w-node-_53b4cdbf-2d82-8af5-7435-d3d2205040e8-6dbe52df, #w-node-_26f3d54e-5333-de96-96cd-65076438ad29-6dbe52df, #w-node-c82f205e-8985-15b7-87d3-1ad22910a348-6dbe52df, #w-node-ec6689a3-ad43-ebb1-71ad-481d68989531-6dbe52df, #w-node-_67398b99-5cd7-35c8-330d-d2dc8d0c6182-6dbe52df, #w-node-_02718acc-2554-8090-e50e-74c3f55316ed-6dbe52df, #w-node-_9a548e40-d4f8-7e5c-5867-3f81c290df00-6dbe52df, #w-node-_0774a9f5-265f-4ef3-58a4-157d79223049-6dbe52df, #w-node-f1586ad0-91e9-e27a-7621-62d0c6d369a1-6dbe52df, #w-node-_57698122-db5c-ddfc-a5fc-8e43a347bea8-6dbe52df, #w-node-cd00fb01-f316-c35d-5101-2ff9dd422ad2-6dbe52df, #w-node-_622905bf-cbb8-7b72-328b-aa608aeaee4e-6dbe52df, #w-node-b17bdf9b-6c2f-a6a4-f673-9d445c4c7aa1-6dbe52df, #w-node-_1f9d1c17-dbbc-3a93-7a03-9ca22dc14a4c-6dbe52df, #w-node-ec6a191c-8374-d7e6-815e-152dc7bc97dc-6dbe52df, #w-node-e84626ad-00c0-5f2f-86e3-b80594e5ed56-6dbe52df, #w-node-e1d220ba-c4d7-6370-23fa-7685f63ed307-6dbe52df, #w-node-fb1d3c79-3f36-0046-166a-587469ffe9e6-6dbe52df, #w-node-_176b9783-af00-ac53-4033-a673acf4041f-6dbe52df, #w-node-abc10857-aadd-0914-b70a-9814ed968162-6dbe52df, #w-node-_6ed4e9a5-29e0-393f-ce69-cf4b714e5f56-6dbe52df, #w-node-cb05c770-be21-c489-41ac-376f17dc18ff-6dbe52df, #w-node-ac313ec6-07e2-21d9-e42d-8639c3554d93-6dbe52df, #w-node-c3cc9adb-a9f3-c2b9-1f88-baec1028f772-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a250b-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a250d-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a250f-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2511-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2513-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2515-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2517-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2519-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a251b-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a251d-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a251f-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2521-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2523-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2525-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2527-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2529-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a252b-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a252d-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a252f-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2531-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2533-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2535-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2537-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2539-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a253b-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a253d-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a253f-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2541-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2543-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2545-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2547-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2549-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a254b-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a254d-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a254f-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2551-6dbe52df, #w-node-_4a5e9673-8ae9-1c89-33b8-a6d6c57a2553-6dbe52df {
  justify-self: center;
}

#w-node-_8f4cd173-c1af-e85b-c344-90c7afc501cf-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_21430bd6-c14d-4735-296c-e340a03209c8-6dbe52df {
  justify-self: center;
}

#w-node-fba66a8e-08c7-a769-38f4-82a9f87d3c6f-6dbe52df, #w-node-_09a37f18-d044-bc68-11c5-e635044e42bc-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fba66a8e-08c7-a769-38f4-82a9f87d3c80-6dbe52df {
  justify-self: center;
}

#w-node-d967be6f-af23-ace1-d82f-f1f5276c0145-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d967be6f-af23-ace1-d82f-f1f5276c015b-6dbe52df, #w-node-fd69b21b-b026-de84-e513-4d0f49dca540-6dbe52df {
  justify-self: center;
}

#w-node-_15b3640b-38f7-3bd2-d79c-09332e3c1eaf-6dbe52df {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_73cb6fd6-57f8-b0ae-fd08-a7618347018d-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_2746a329-ffa3-6d4b-aabb-2b12c44e22b2-6dbe52df {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_2746a329-ffa3-6d4b-aabb-2b12c44e22b3-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_22caecb3-84dd-d2e2-221c-818ad5e67352-6dbe52df {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_22caecb3-84dd-d2e2-221c-818ad5e67353-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_22caecb3-84dd-d2e2-221c-818ad5e67367-6dbe52df {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_22caecb3-84dd-d2e2-221c-818ad5e67368-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_0f99c55c-aef0-ebd9-f690-9830ff12bd17-6dbe52df, #w-node-_0f99c55c-aef0-ebd9-f690-9830ff12bd1f-6dbe52df {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_4d618bd5-adbe-9931-78e8-4965720485e0-6dbe52df, #w-node-dcc69354-17cc-91eb-ed47-a40b1760caa8-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dcc69354-17cc-91eb-ed47-a40b1760caa9-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-d4a705bf-765c-7b84-1997-ff093ebb4120-6dbe52df, #w-node-d4a705bf-765c-7b84-1997-ff093ebb4121-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4a705bf-765c-7b84-1997-ff093ebb4122-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-b748f1fd-72f4-3f96-5311-13e6790589e5-6dbe52df, #w-node-b748f1fd-72f4-3f96-5311-13e6790589e6-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b748f1fd-72f4-3f96-5311-13e6790589e7-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-bc0a3c6c-8fe1-8632-10ac-69924b5db2a3-6dbe52df, #w-node-bc0a3c6c-8fe1-8632-10ac-69924b5db2a4-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bc0a3c6c-8fe1-8632-10ac-69924b5db2a5-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_468ce13d-3ea5-b7f5-7d69-65de76cb0ec8-6dbe52df, #w-node-_468ce13d-3ea5-b7f5-7d69-65de76cb0ec9-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_468ce13d-3ea5-b7f5-7d69-65de76cb0eca-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_1981ceb1-04a4-80f0-9f7d-ec58aa84d254-6dbe52df, #w-node-_1981ceb1-04a4-80f0-9f7d-ec58aa84d255-6dbe52df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1981ceb1-04a4-80f0-9f7d-ec58aa84d256-6dbe52df {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc670687-6dbe52ec, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc670689-6dbe52ec, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc67068b-6dbe52ec, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc67068d-6dbe52ec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8c331566-379f-cbef-9da9-4f92e2bbed1a-6dbe52ee, #w-node-_8c331566-379f-cbef-9da9-4f92e2bbed27-6dbe52ee, #w-node-_8c331566-379f-cbef-9da9-4f92e2bbed88-6dbe52ee, #w-node-_8c331566-379f-cbef-9da9-4f92e2bbed8e-6dbe52ee, #w-node-_8c331566-379f-cbef-9da9-4f92e2bbed93-6dbe52ee, #w-node-_8c331566-379f-cbef-9da9-4f92e2bbed98-6dbe52ee {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_663381c5-7c36-7281-c207-2755ebfcc58f-6dbe52df {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_4f501ce7-6854-ebb9-bd64-0e810485f416-6dbe52df {
    grid-area: 3 / 1 / 4 / 4;
  }

  #w-node-_78b1a659-d6a9-4a07-5ccc-660ed9730cb1-6dbe52df {
    grid-area: 5 / 1 / 6 / 4;
  }

  #content-1.w-node-da0f3f67-c0c3-f69c-3731-1e2bf0558fb5-6dbe52df {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_6c980e51-c1f8-9e97-e499-ff5ab6c1247a-6dbe52df {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b8c41986-9195-d150-8863-c548dc600c98-6dbe52df {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #content-2.w-node-aa40461d-5f8a-e909-a220-be982a569f4d-6dbe52df {
    grid-area: 4 / 1 / 5 / 4;
  }

  #w-node-_82831323-f28a-6f58-1350-df08191e5146-6dbe52df {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_23fa3a47-5ce9-4cdd-d7c1-b6cd1df5a7b8-6dbe52df {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #content-3.w-node-_3b34f069-4ca0-8af3-a5d7-275e2d6716ef-6dbe52df {
    grid-area: 6 / 1 / 7 / 4;
  }

  #w-node-_8563557c-14a5-16d9-49b8-d439caf058d3-6dbe52df {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b8c41986-9195-d150-8863-c548dc600c98-6dbe52df, #w-node-_23fa3a47-5ce9-4cdd-d7c1-b6cd1df5a7b8-6dbe52df, #w-node-_8563557c-14a5-16d9-49b8-d439caf058d3-6dbe52df {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


