:root {
  --text-gradient-01: #f5f5f8;
  --gradient-text-02: #bbbbbd;
  --black: #161b22;
}

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

.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: 16px 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 {
  color: #000;
  background-color: #fff;
  align-items: flex-start;
  padding: 20px 20px 5px 20px;
}

.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: 100%;
}

.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 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #eec5bd, #f3b1a5 35%, #c6caf6 72%, #dad9e9);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 8vw;
  font-weight: 800;
}

.hero-text._02 {
  background-image: linear-gradient(to right, #eec5bd, #f3b1a5 6%, #c6caf6 61%, #dad9e9 72%);
}

.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: 100%;
}

.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: 60px;
  perspective: 1000px;
  white-space: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.hero-text-holder.hero-text {
  display: none;
}

.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: 130vh;
  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 {
  position: absolute;
  z-index: 0;
  width: 100%;  /* Adjust based on your needs */
  height: 100%;  /* Adjust based on your needs */
  top: 1%;  /* Adjust to align with the iPhone frame */
  border-radius: 40px;  /* Match the iPhone's screen corners */
  overflow: hidden;
}

.iphone-screen.hider {
  display: none;
}

.iphone-image {
  z-index: 1;
  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: 140px;
  display: flex;
}

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

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

.iphone-drop-shadow {
  position: absolute;
  bottom: -20px;
  width: 80%;
  height: 40px;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(20px);
  border-radius: 50%;
}

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

.iphone-screen.hider,
.iphone-drop-shadow.hider {
  display: block !important;
}

.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-grid-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.logo-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.logo-small-container {
  height: 27px;
}

.logo-small {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.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 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 800;
  font-family:'twoweekendssans-regular';
  font-size: 45px;
}

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

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

.experience-cards-holder {
  perspective: 1000px;
  margin-top: 90px;
}

.experience-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;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.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;
  margin: 1px;
  display: flex;
  position: relative;
}

.experience-card-image-holder {
  width: 100%;
  position: relative;
}

.experience-card-image-holder._02 {
  height: 280px;
}

.experience-card-image-holder.smaller {
  height: 250px;
}

.experience-card-image {
  width: 100%;
}

.experience-card-text-holder {
  grid-row-gap: 6px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.experience-card-text-holder.padding {
  padding-left: 22px;
  padding-right: 22px;
}

.experience-card-text-holder._02 {
  padding-left: 24px;
  padding-right: 24px;
}

.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: 32px;
  font-weight: 800;
  line-height: 1.5;
}

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

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

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

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

.effortlessly-integration-container {
  padding-top: 120px;
}

.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(#000, #0000);
  width: 48vw;
  height: 10em;
  position: sticky;
  inset: 0 0% auto;
}

.trusted-white-overlay.bottom {
  background-image: linear-gradient(to top, #000, #0000 58%);
  height: 20vh;
  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 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(128deg, #eec5bd, #f3b1a5 26%, #c6caf6 74%, #dad9e9);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: -14px;
  margin-right: 10px;
  font-size: 75px;
  font-weight: 800;
}

.download-badge-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

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

.download-badge-button {
  width: 242px;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
}

.download-badge-button:hover {
  transform: scale(1.1);
}

.dark-and-light-mode-holder {
  background-color: #000;
  width: 50%;
  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;
}
@font-face {
  font-family: 'twoweekendssans-regular';
  src: url('/fonts/twoweekendssans-regular.otf') format('woff2'),
}
.dark-mode-hand-holder {
  z-index: 1;
  height: auto;
  justify-content: center;
  align-items: center;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  display: flex;
  position: relative;
  inset: 0;
}
.dark-mode-hand-holder2 {
  z-index: 1;
  height: auto;
  position: absolute;
  margin-top: 150px;
  margin-left: 25px;
  inset: 0;
}
.image-logo{
  width: 400px;
}
.text-meetx {
  font-size: 90px;
  font-weight:900;
  color: #000 !important;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(70deg, #eec5bd, #f3b1a5 35%, #c6caf6 72%, #dad9e9);
  -webkit-background-clip: text;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-clip: text;
  font-size: 8vw;
  font-weight: 800;
}
.textwhite-meetx {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #eec5bd, #f3b1a5 35%, #c6caf6 72%, #dad9e9);
  -webkit-background-clip: text;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-clip: text;
  font-size: 8vw;
  font-weight: 800;
}
.textsub2{
  font-size: 1.3vw;
  font-weight:900;
  color: #fff;
  font-family:'twoweekendssans-regular';
  padding-left: 30px;
  padding-top: 10px;
}
.textsub1{
  font-size: 1.3vw;
  font-weight:900;
  color: #000;
  font-family:'twoweekendssans-regular';
  padding-left: 30px;
  padding-top: 10px;

}
.logo-img{
  width: 350;
  height: 350px;
}
.home-hero{
  display: flex;
}
@media screen and (max-width: 768px) {
  .home-hero {
    display: block;
  }
  .dark-and-light-mode-holder{
    width: 100%;
  }
  .textsub1{
   font-size: 13px;
  }
  .textsub2{
    font-size: 13px;
  }
}


.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: #fff;
  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-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.black-text {
  color: #000;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#000, #1b1b1cd9);
  -webkit-background-clip: text;
  background-clip: text;
}

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

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

.card-background {
  background-color: #f5f5f8;
  border-radius: 30px;
  height: 100%;
  overflow: hidden;
}

.card-container {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-height: 530px;
  display: flex;
  position: relative;
}

.card-container._02 {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

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

.card-image-holder._02 {
  width: auto;
  height: 80%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.card-image {
  width: 100%;
  height: 100%;
}

.card-text-holder {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
  overflow: hidden;
}

.card-text-holder._02 {
  text-align: left;
  align-items: flex-start;
  width: 100%;
  padding: 46px 46px 46px 38px;
}

.card-text-holder.small {
  padding-left: 13px;
  padding-right: 13px;
}

.two-cards-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.card-logo-holder {
  perspective: 1000px;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 288px;
  min-height: 288px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-logo-container {
  z-index: 1;
  background-color: #fff;
  border-radius: 41px;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 155px;
  display: flex;
  position: relative;
}

.card-bg-image-holder {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.card-logo {
  width: 66px;
}

.card-iphone-holder {
  width: 100%;
  margin-top: -190px;
  position: relative;
  top: 190px;
}

.iphone-card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 270px;
  display: flex;
  position: relative;
  left: 24px;
}

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

.simple-card-image {
  width: 100%;
}

.social-media-link {
  opacity: 1;
  margin-left: 1em;
  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 {
  color: #000;
  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 {
  opacity: .64;
  filter: blur(120px);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #eec5bd, #f3b1a5 35%, #c6caf6 72%, #dad9e9);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 14vw;
  font-weight: 800;
  position: absolute;
}

.card-logo-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  padding: 45px;
  display: flex;
  position: relative;
}

.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;
  width: 100%;
  height: 100%;
  display: flex;
}

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

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

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

.buy-template-guide.hider {
  display: none;
}

.buy-this-template-button-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #fff;
  border-radius: 6px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  display: flex;
}

.buy-this-template-content {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.buy-this-template-text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.buy-webflow-template-content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.webflow-icon {
  background-image: url('../images/webflow-blue-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  display: block;
}

.buy-template-price {
  font-weight: 700;
}

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

  .logo-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .experience-card-text-holder.padding {
    padding-left: 40px;
    padding-right: 40px;
  }

  .experience-gradient {
    height: 130px;
  }

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

  .card-image-holder._02 {
    height: 100%;
  }

  .card-text-holder.small {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@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 {
    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;
  }

  .logo-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

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

  .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 2fr 1fr 1fr;
  }

  .card-container {
    max-height: none;
  }

  .card-iphone-holder {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

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

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

@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%;
  }

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

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

@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: 10vw;
  }

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

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

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

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

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

  .card-image-holder._02 {
    height: 54%;
    bottom: -5%;
  }

  .card-image {
    position: relative;
  }

  .card-text-holder._02 {
    padding: 20px 20px 78px;
  }

  .card-logo-holder {
    height: 420px;
    min-height: 420px;
  }

  .card-iphone-holder {
    align-items: center;
  }

  .iphone-card {
    left: 0;
  }

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

#w-node-f078fdf9-afcd-dd23-e056-d7d58c77dcd8-f0890fbb, #w-node-f078fdf9-afcd-dd23-e056-d7d58c77dcda-f0890fbb, #w-node-f078fdf9-afcd-dd23-e056-d7d58c77dcdc-f0890fbb, #w-node-f078fdf9-afcd-dd23-e056-d7d58c77dcde-f0890fbb, #w-node-f078fdf9-afcd-dd23-e056-d7d58c77dce0-f0890fbb, #w-node-f078fdf9-afcd-dd23-e056-d7d58c77dce2-f0890fbb, #w-node-f078fdf9-afcd-dd23-e056-d7d58c77dce4-f0890fbb, #w-node-f078fdf9-afcd-dd23-e056-d7d58c77dce6-f0890fbb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1261dedf-b3c9-2162-53e7-29ae1d8c7955-f0890fbb, #w-node-c9a3eb7f-e26e-bb52-e19d-39f848eddb94-f0890fbb {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_8c828c4b-063f-f20f-6482-b138be2c6dbe-f0890fbb, #w-node-_7c769986-af35-2c7e-a088-51a92c6e6099-f0890fbb, #w-node-_7c369291-b38e-0008-5e70-efcc18461d4c-f0890fbb, #w-node-_7c369291-b38e-0008-5e70-efcc18461d4d-f0890fbb {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_7a405be8-0a26-057e-3bd3-7289f3f9886f-f0890fbb, #w-node-_7a405be8-0a26-057e-3bd3-7289f3f98870-f0890fbb {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

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

#w-node-fc8765e5-00fe-9e2a-d8f7-edcc2476991c-f0890fbb, #w-node-eb39f325-8859-6038-bc3c-ab144f9640eb-f0890fbb, #w-node-_5ab5adbc-57c9-c9b0-3c74-19cd092f35c9-f0890fbb, #w-node-a35a09e7-c458-1b18-3c0b-22d3f8e3b5ec-f0890fbb, #w-node-_972c2625-7d91-facb-87ef-fc89102342d5-f0890fbb, #w-node-aa5ee5b0-8a13-ffdb-f51c-ccb42c8c497a-f0890fbb, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc670687-f0890fc0, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc670689-f0890fc0, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc67068b-f0890fc0, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc67068d-f0890fc0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

@media screen and (max-width: 991px) {
  #w-node-_8c828c4b-063f-f20f-6482-b138be2c6dbe-f0890fbb {
    grid-area: 2 / 2 / 3 / 5;
  }

  #w-node-_7c369291-b38e-0008-5e70-efcc18461d4c-f0890fbb {
    grid-area: 4 / 2 / 5 / 5;
  }

  #w-node-_7a405be8-0a26-057e-3bd3-7289f3f9886f-f0890fbb {
    grid-area: 3 / 1 / 4 / 6;
  }

  #w-node-fc8765e5-00fe-9e2a-d8f7-edcc2476991c-f0890fbb {
    grid-column: span 2 / span 2;
  }

  #w-node-eb39f325-8859-6038-bc3c-ab144f9640eb-f0890fbb {
    grid-column: span 4 / span 4;
  }

  #w-node-_5ab5adbc-57c9-c9b0-3c74-19cd092f35c9-f0890fbb {
    grid-area: 1 / 3 / 2 / 5;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1261dedf-b3c9-2162-53e7-29ae1d8c7955-f0890fbb {
    grid-column: span 3 / span 3;
  }

  #w-node-_8c828c4b-063f-f20f-6482-b138be2c6dbe-f0890fbb, #w-node-_7c369291-b38e-0008-5e70-efcc18461d4c-f0890fbb, #w-node-_7a405be8-0a26-057e-3bd3-7289f3f9886f-f0890fbb {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-eb39f325-8859-6038-bc3c-ab144f9640eb-f0890fbb {
    grid-column: span 2 / span 2;
  }

  #w-node-_5ab5adbc-57c9-c9b0-3c74-19cd092f35c9-f0890fbb {
    grid-column: 1 / 3;
  }
}


