:root {
  --lite-blue: #42b2e5;
  --brand-bg: #211d53;
  --dark-grey: #212121;
  --white-smoke: #f3f3f3;
  --main-color: #d4acfe;
  --circle-text-color: #6727aa;
  --plum: #d4acfe;
  --transparent: rgba(0, 0, 0, 0);
  --input-placeholder: #c2c2c2;
  --brand-bg-lite: #3ba9c6;
}

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

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.5;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

p {
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
a {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: color .35s;
}

a:hover {
  color: #969696;
}


.nav-dropdown {
  position: relative;
  display: inline-block;
  margin: 0 12px;
}

.nav-dropdown .dropdown-toggle {
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1000;
  padding: 8px 0;
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}

.nav-dropdown .dropdown-menu a:hover {
  background: #f2f2f2;
}


.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-dropdown .dropdown-toggle {
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
}


.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1;
  padding: 8px 0;
}


a.ai-build-btn {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  color: #fff;
  background: linear-gradient(135deg, #42b2e5, #1f78c1);
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

a.ai-build-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.3));
  transition: all 0.5s ease;
}

a.ai-build-btn:hover {
  background: linear-gradient(135deg, #1f78c1, #42b2e5);
  box-shadow: 0 6px 16px rgba(66, 178, 229, 0.45);
  transform: translateY(-2px);
}

a.ai-build-btn:hover::before {
  left: 100%;
}


a.underline-animate {
  position: relative;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.35s;
}

a.underline-animate::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px; /* tweak spacing */
  width: 100%;
  height: 2px;
  background: #969696;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

a.underline-animate:hover {
  color: #969696;
}

a.underline-animate:hover::after {
  transform: scaleX(1);
}

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

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

li {
  padding-top: 3px;
  padding-bottom: 3px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

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

blockquote {
  border: 3px solid #000;
  border-width: 3px 0;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 1em;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  color: rgba(0, 0, 0, .7);
  text-align: center;
  margin-top: 5px;
}

.section {
  z-index: 1;
  background-color: #fff;
}

.section.white-section {
  z-index: 2;
  background-color: #fafafa;
  margin-top: -120px;
  position: relative;
  overflow: hidden;
}

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

.section.overflow-hidden-mobile.overflow-hide {
  padding-top: 60px;
  overflow: hidden;
}

.section.white-background-section {
  background-color: #fff;
  padding: 1rem 1rem 1rem 0rem;
}

.section.hero-section {
  height: 100vh;
  background-color: var(--lite-blue);
  padding-top: 100px;
  position: relative;
}

.section.hero-section.mobile {
  background-color: #fff;
}

.section.hero {
  position: static;
}

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

.container.nav-container {
  height: 100%;
  max-width: 1170px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 20px 0;
  display: flex;
}

.container.white-container {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.container.footer-container {
  max-width: 100%;
  background-color: var(--brand-bg);
  border-radius: 18px;
  margin-bottom: 0;
  margin-left: 2em;
  margin-right: 2em;
  padding: 2em;
  overflow: hidden;
}

.nav-menu-container {
  width: 100%;
  height: 80px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: visible;
}

.nav-menu-container.bg-white {
  background-color: #fff;
  padding-right: 15px;
}

.navbar {
  z-index: 20;
  height: 100px;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

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

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

.button {
  background-color: var(--brand-bg);
  color: #fff;
  text-transform: none;
  background-image: url('../images/Arrow-Icon.svg');
  background-position: 82%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 13px;
  padding: 14px 48px 14px 30px;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .3s, transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.button:hover {
  color: #fff;
  background-color: #000;
  transform: scale(1.05);
}

.button.big {
  width: 100%;
  height: 88px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: pre;
  background-color: #000;
  background-image: none;
  justify-content: center;
  align-items: center;
  padding: 25px 40px;
  font-size: 21px;
  transition-property: box-shadow, transform;
  transition-duration: .8s, .5s;
  display: flex;
  overflow: hidden;
}

.button.big:hover {
  transform: none;
  box-shadow: inset 0 20px 50px rgba(255, 255, 255, .13), 0 11px 55px rgba(0, 0, 0, .4);
}

.button.form-button {
  background-position: 87%;
  padding: 10px 36px 10px 20px;
  font-size: 18px;
  position: absolute;
  top: auto;
  bottom: auto;
  right: 8px;
}

.button.hero-submit-button {
  background-color: var(--dark-grey);
  color: #fff;
}

.button.without-arrow {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-image: none;
  justify-content: flex-start;
  align-items: center;
  padding-right: 30px;
  display: flex;
}

.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 {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  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 {
  width: 100%;
  height: 1px;
  background-color: #8d8d8d;
  margin-top: 2px;
}

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

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

.footer {
  color: #000;
  align-items: flex-start;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.nav-link {
  height: 100%;
  grid-column-gap: 6px;
  color: #000;
  flex-direction: row;
  align-items: center;
  padding: 5px;
  font-size: 20px;
  display: none;
}

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

.grey-text {
  color: #9ea9a9;
}

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

.change-log-container {
  width: 100%;
  grid-column-gap: 60px;
  background-color: var(--white-smoke);
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2em;
  padding: 2em;
  font-size: 16px;
  display: flex;
}

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

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

.style-guide-title-holder {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.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 {
  background-color: var(--main-color);
  color: #000;
  letter-spacing: 0;
  border-radius: 6px;
  padding: 1em;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.headings-holder {
  background-color: #f5f5f5;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
}

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

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

.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 {
  height: 1px;
  background-color: #aaa;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.aa-font {
  color: #000;
  font-size: 130px;
}

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

.sg---color-description {
  grid-row-gap: 2px;
  background-color: #f5f5f5;
  flex-direction: column;
  padding: 15px;
  display: flex;
}

.style-guide-gray-background {
  background-color: #f5f5f5;
  border-radius: 12px;
}

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

.style-guide-x-button:hover {
  background-color: #161b22;
}

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

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

.font-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #f5f5f5;
  justify-content: space-between;
  margin-top: 2em;
  padding: 2em;
  display: flex;
}

.style-guide-main-panel {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 1em;
}

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

.style-guide-left-panel {
  width: 100%;
  grid-row-gap: 25px;
  flex-direction: column;
  padding: 2em;
  display: flex;
  position: -webkit-sticky;
  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: #f5f5f5;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px;
  display: flex;
}

.subscribe-form {
  position: relative;
}

.sg---color-black {
  width: 235px;
  height: 150px;
  background-color: var(--main-color);
}

.paragraph-m {
  color: #000;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.style-guide-panel-title {
  color: #000;
  font-size: 16px;
  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 {
  height: 35px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

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

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

.style-guide-empty-container {
  padding: 2em;
}

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

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

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

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

.style-guide-tab-holder {
  width: 100%;
  color: #000;
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 400;
  transition-property: background-color;
  transition-duration: .675s;
}

.style-guide-tab-holder:hover {
  color: #000;
  background-color: rgba(0, 0, 0, .07);
}

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

.subscribe-field-text {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  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::-ms-input-placeholder {
  color: #b9b9b9;
}

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

.contact-field-text {
  height: 60px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  border-bottom: 1px solid #595959;
  border-radius: 0;
  flex: 1;
  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::-ms-input-placeholder {
  color: #595959;
  font-weight: 300;
}

.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 {
  width: 405px;
  background-color: #f5f5f5;
  align-items: flex-start;
  display: flex;
}

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

.hero-text-small {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-text {
  color: #000;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-text-large {
  color: #000;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;

}
.hero-text-medium {
  color: #000;
  font-size: 66px;
  font-weight: 500;
  line-height: 1.1;
}

.meet-us-btn{
  text-decoration: none;
  padding: 0.5em 2em;
  display: inline-block;
  cursor: pointer;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: white;
    background-image: linear-gradient(52deg, #7300de, #07f);
  }


.meet-us-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color:white;
}

.meet-us-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}





.hero-section-carousel {

text-align: center;
  position: relative;
   width: 1200px;
   height:300px;
   overflow: hidden;
}

.highlight-img{
width: 280px;
  height: auto;
  filter: contrast(1);
  border-radius: 12px; /* smooth rounded corners */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-img:hover {
  transform: scale(1.05); /* slight zoom */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35); /* deeper shadow */
}

.carousel-item {
position:absolute;
  width: 100%;
  opacity: 0;
  text-align: center;
  transition: opacity 1s ease-in-out;
  animation: fadeCarousel 42s linear infinite;
  padding: 20px;
}

  .carousel-item:nth-child(1) { animation-delay: 0s; }
        .carousel-item:nth-child(2) { animation-delay: 7s; }
        .carousel-item:nth-child(3) { animation-delay: 14s; }
        .carousel-item:nth-child(4) { animation-delay: 21s; }
        .carousel-item:nth-child(5) { animation-delay: 28s; }
        .carousel-item:nth-child(6) { animation-delay: 35s; }

@keyframes fadeCarousel {
     0%, 14.28% { opacity: 1; }
     16.67%, 100% { opacity: 0; }
}


.nav-link-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
  font-weight: 700;
  transition: opacity .2s, color .35s;
}

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

.nav-link-holder.w--current {
  color: #fff;
  text-shadow: 0 0 4px rgba(255, 255, 255, .25);
  background-color: rgba(255, 255, 255, .1);
}

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

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

.brand-image {
  width: 100%;
}

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

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

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

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

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

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

.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 {
  width: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.licensing-cards-wrapper {
  width: 100%;
  height: 100%;
  grid-row-gap: 45px;
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  padding: 2em;
  display: flex;
}

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

.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 {
  padding-top: 3em;
  padding-bottom: 3em;
}

.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;
  color: #000;
}

.hide {
  display: none;
}

.hero-section-holder {
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.hero-section-paragraph-holder {
  max-width: 800px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  font-size: 24px;
  display: flex;
}

.hero-section-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hero-section-button-holder {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.infinite-ai-images-holder {
  width: 100%;
  margin-top: -24px;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}

.infinite-ai-images-holder.infinite-ai-images-footer {
  margin-top: 40px;
  padding-top: 43%;
  position: relative;
}

.infinite-ai-images-container {
  width: 100%;
  display: flex;
  position: relative;
}

.infinite-ai-images-container.ai-images-footer-container {
  position: absolute;
  top: 30px;
  bottom: auto;
  left: 0%;
  right: auto;
}

/* Secondary button should sit beside the primary CTA on wider screens
   and stack below on narrow screens */
.hero-section-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 12px;
}

@media (max-width: 991px) {
  .section.hero-section {
    height: auto; /* allow content to determine height on tablets/phones */
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .hero-section-button-holder {
    flex-direction: column;
    max-width: 700px;
    align-items: stretch;
  }
  .hero-section-secondary-button {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }
}

.infinite-ai-images-grid {
  width: 100%;
  grid-column-gap: 30px;
  flex: none;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.infinite-ai-images-grid.ai-images-grid-footer {
  width: 100%;
}

.infinite-ai-image-wrapper {
  width: 100%;
  max-width: 280px;
  grid-row-gap: 30px;
  perspective: 1000px;
  flex-direction: column;
  display: flex;
}

.infinite-ai-image-wrapper._02 {
  margin-top: 64px;
}

.infinite-ai-image-wrapper._03 {
  margin-top: 120px;
}

.infnite-image {
  width: 100%;
  border-radius: 24px;
  transition: box-shadow .525s;
  box-shadow: 0 1px 1px rgba(142, 142, 142, .33), 0 5px 8px rgba(142, 142, 142, .17), 0 3px 5px rgba(142, 142, 142, .05);
}

.infnite-image:hover {
  box-shadow: 0 3px 9px rgba(56, 56, 56, .33), 0 11px 20px rgba(0, 0, 0, .06), 0 6px 11px rgba(142, 142, 142, .66);
}

.infnite-image.withfilters {
  opacity: .44;
  filter: saturate(0%) brightness(200%) contrast(200%);
  transition: opacity .4s, filter .4s, box-shadow .525s;
}

.infnite-image.withfilters:hover {
  opacity: 1;
  filter: saturate() brightness() contrast();
  box-shadow: 0 3px 9px rgba(56, 56, 56, .33), 0 11px 20px rgba(0, 0, 0, .06), 0 6px 11px rgba(103, 39, 170, .6);
}

.right-garadient {
  width: 7%;
  height: 120%;
  background-image: linear-gradient(to right, rgba(214, 252, 82, 0), #000 82%);
  position: absolute;
  top: -10%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.right-garadient.black-gradient {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000 83%);
}

.drops-section-holder {
  padding-top: 60px;
  padding-bottom: 300px;
}

.drops-section-holder.buttom-padding {
  padding-bottom: 140px;
}

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

.title-clean-top {
  color: #000;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.title-clean-top.dimmed {
  opacity: .5;
}

.title-clean {
  color: #000;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  font-family: DM Sans, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.title-clean.dimmed {
  opacity: .5;
}

.title-clean.max {
  font-size: 56px;
}

.grey-cards-holder {
  grid-row-gap: 40px;
  flex-direction: column;
  margin-top: 70px;
  display: flex;
}

.grey-cards-wrapper {
  background-color: var(--brand-bg);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}

.grey-cards-content-holder {
  z-index: 1;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 85px;
  padding-left: 85px;
  display: flex;
  position: relative;
}

.grey-card-text-holder {
  max-width: 460px;
  font-weight: 700;
}

.grey-card-image-holder {
  max-width: 507px;
}

.grey-card-icon-holder {
  width: 60px;
}

.grey-card-icon-holder.flex {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.grey-card-icon {
  width: 100%;
}

.white-title {
  color: #fffef1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.card-title-holder {
  margin-top: 40px;
}

.card-paraghraph-holder {
  margin-top: 15px;
}

.card-paragraph {
  color: #c1c0b4;
  font-size: 19px;
  font-weight: 200;
}

.card-paragraph.with-color-purple {
  color: #d1c6dd;
  font-size: 18px;
}

.grey-card-image {
  width: 100%;
  border-top-left-radius: 26.7px;
  border-bottom-left-radius: 26.7px;
  box-shadow: 0 16px 75px rgba(0, 0, 0, .21);
}

.background-decor-holder {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.background-decor {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.small-cards-holder {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  perspective: 1000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.small-cards {
  grid-row-gap: 80px;
  background-color: var(--brand-bg);
  border-radius: 36px;
  flex-direction: column;
  padding-top: 66px;
  display: flex;
}

.small-cards-image-holder, .small-cards-image {
  width: 100%;
}

.small-cards-content-holder {
  padding-bottom: 40px;
  padding-left: 60px;
  padding-right: 40px;
}

.small-card-text {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.art-title-holder {
  max-width: 814px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.generate-section-holder {
  grid-row-gap: 90px;
  flex-direction: column;
  padding-bottom: 180px;
  display: flex;
}

.generate-section-holder.buttom-padding {
  padding-bottom: 60px;
}

.generate-section {
  z-index: 1;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  background-image: url('../images/Mask-Rects.svg');
  background-position: 100%;
  background-size: contain;
  border-radius: 44px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.generate-section-text-holder {
  max-width: 670px;
  background-color: #fff;
  border-radius: 44px;
  padding: 70px;
}

.generate-section-image-holder {
  width: 100%;
  height: 100%;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 60px;
  display: flex;
}

.generate-section-text-container {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.generate-title {
  overflow: hidden;
}

.generate-title.flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.purple-text {
  background-color: var(--lite-blue);
  color: #212121;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 12px;
}

.purple-text-lower {
  background-color: var(--lite-blue);
  color: #212121;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 20px;
}

.purple-text.red {
  background-color: var(--lite-blue);
}

.generate-title-holder {
  max-width: 100%;
  margin-top: 25px;
}

.generate-main-text {
  font-size: 48px;
  font-weight: 700;
}

.generate-description-holder {
  margin-top: 25px;
}

.paragraph-s {
  font-size: 20px;
}

.generate-image {
  max-height: 370px;
}

.generate-image._1st {
  margin-top: 80px;
}

.yellow-text {
  color: #212121;
  background-color: #42b2e5;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 20px;
}

.yellow-text.dark {
  color: #fff;
  background-color: #3d3d3b;
}

.about-us-section-holder {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 3em;
  padding-bottom: 2em;
  display: flex;
}

.about-us-text-holder {
  max-width: 880px;
}

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

.about-us-grid.hide {
  display: none;
}

.about-us-image-holder {
  width: 100%;
  perspective: 1000px;
}

.about-us-image {
  width: 100%;
  border-radius: 30px;
}

.about-us-text {
  font-size: 32px;
  font-weight: 700;
}

.about-us-images {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.about-us-images.hide {
  display: none;
}

.cta-holder {
  padding-bottom: 100px;
}

.cta-container {
background: linear-gradient(180deg, #ffffff 0%, #f0f8fc 20%, #e6f3fa 100%);
  border-radius: 62px;
  position: relative;
}

.cta-content-holder {
  z-index: 1;
  flex-flow: column;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.cta-title-holder {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.cta-wrapper {
  margin-top: 40px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cta-input-holder {
  grid-column-gap: 20px;
  background-color: #fff;
  border-radius: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 11px;
  transition: box-shadow .675s cubic-bezier(.251, 1.235, .32, 1.275), transform .65s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  box-shadow: 0 1px 1px rgba(142, 142, 142, .14), 0 5px 8px rgba(142, 142, 142, .11), 0 3px 5px rgba(142, 142, 142, .31);
}

.cta-input-holder:hover {
  transform: scale(1.1);
}

.text-auto-switch-holder {
  width: 320px;
  height: 25px;
  max-width: 600px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.text-auto-switch {
  position: relative;
}

.text-auto {
  font-size: 20px;
}

.footer-holder {
  z-index: 1;
  position: relative;
}

.footer-brand-holder {
  grid-column-gap: 60px;
  color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 50px;
  display: flex;
}

.footer-brand-holder.bottom {
  padding-top: 0;
}

.footer-brand-container {
  max-width: 320px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.footer-title {
  font-size: 20px;
}

.small-paragraph {
  opacity: .5;
}

.footer-link-holder {
  grid-column-gap: 40px;
  justify-content: flex-end;
  display: flex;
}

.footer-link {
  color: rgba(255, 255, 255, .5);
  font-size: 19px;
  font-weight: 400;
}

.footer-link:hover {
  color: #fff;
}

.footer-link-container {
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.footer-form-holder {
  width: 100%;
  max-width: 320px;
  display: none;
}

.text-field-holder {
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.text-field {
  height: 58px;
  color: #000;
  background-color: rgba(255, 255, 255, .9);
  border: 0 solid rgba(214, 252, 82, 0);
  border-radius: 10px;
  margin-bottom: 0;
  padding: 5px 132px 5px 12px;
  font-size: 18px;
  transition: border-radius .3s, background-color .4s;
}

.text-field:hover {
  background-color: #f0f0f0;
}

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

.text-field::-ms-input-placeholder {
  color: rgba(33, 33, 33, .5);
}

.text-field::placeholder {
  color: rgba(33, 33, 33, .5);
}

.form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-bottom: 0;
  display: block;
}

.form-title-holder {
  max-width: 390px;
  margin-bottom: 20px;
}

.form-block {
  width: 100%;
}

.about-div {
  position: absolute;
  top: -19%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.footer-link-wrapper {
  width: 100%;
  grid-column-gap: 60px;
  justify-content: space-between;
  display: flex;
}

.buy-template-guide {
  z-index: 20;
  grid-column-gap: 10px;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  display: none;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.buy-template-icon {
  width: 24px;
}

.relative {
  z-index: 1;
  position: relative;
}

.yellow-background {
  height: 50%;
  background-color: #fff;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.buy-this-template-text {
  color: #000;
  font-weight: 500;
}

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

.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-button-container {
  width: 100%;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #fff;
  border-radius: 6px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  display: flex;
}

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

.buy-template-link {
  grid-column-gap: 10px;
  opacity: .8;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .4s, box-shadow .475s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.buy-template-link:hover {
  opacity: 1;
  color: #000;
  border-color: #4253ff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .23);
}

.error-message {
  color: #000;
  background-color: #ffcbcb;
  border-radius: 6px;
  margin-top: 0;
  padding: 10px;
}

.copyright-panel {
  width: 100%;
  color: #000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.copyright-text {
  font-size: 14px;
}

.copyright-link {
  color: #000;
  background-color: rgba(214, 252, 82, 0);
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 14px;
  font-weight: 700;
  transition-property: background-color;
}

.copyright-link:hover {
  background-color: var(--main-color);
  color: #000;
}

.changelog-section {
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  padding: 2em;
  display: flex;
}

.left-gradient-black {
  width: 7%;
  height: 120%;
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0), #000 83%);
  position: absolute;
  top: -10%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.footer-brand-logo {
  width: 100%;
  max-width: 120px;
  opacity: 1;
}

.bottom-gradient-black {
  width: 100%;
  height: 10%;
  background-image: linear-gradient(rgba(0, 0, 0, 0), #000 93%);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-instagram-profile-link {
  opacity: .3;
  color: #000;
  text-align: center;
  background-color: #fff;
  border-radius: 24px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 35px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: transform .9s, background-color .4s, opacity .4s, color .4s;
  display: flex;
  transform: translate(0);
}

.footer-instagram-profile-link:hover {
  background-color: var(--main-color);
  opacity: 1;
  color: #000;
  transform: translate(0, -10px);
}

.grey-background {
  width: 100%;
  height: 100%;
  background-color: var(--white-smoke);
  border-top-left-radius: 62px;
  border-top-right-radius: 62px;
  position: absolute;
}

.hero-description {
  max-width: 1500px;
  color: #2a2a2a;
  font-size: 24px;
  font-weight: 800;
}

.hero-description-lower {
  max-width: 680px;
  text-align:center;
  color: #626262;
    font-size: 22px;
    font-weight: 400;
}

.hero-description.text-align-left {
  max-width: 768px;
  text-align: left;
  font-size: 20px;
}

.hero-description.text-align-center {
  max-width: 690px;
}

.hero-background {
  z-index: -1;
  width: 100%;
  height: 740px;
  background-color: #fff;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 17%, #fff 66%);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.hero-bg-grid {
  background-image: url('../images/hero-pattern.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.ai-form {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}

.form_field {
  width: 100%;
  color: var(--dark-grey);
  border: 0 #000;
  margin-bottom: 0;
  padding: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.form_field::-ms-input-placeholder {
  color: var(--dark-grey);
}

.form_field::placeholder {
  color: var(--dark-grey);
}

.ai-form-content {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.hero-cta-input-holder {
  grid-column-gap: 20px;
  background-color: #fff;
  border-radius: 24px;
  align-items: center;
  padding: 11px;
  transition: box-shadow .675s cubic-bezier(.251, 1.235, .32, 1.275), transform .65s cubic-bezier(.175, .885, .32, 1.275);
  display: block;
  box-shadow: 0 1px 1px rgba(142, 142, 142, .14), 0 5px 8px rgba(142, 142, 142, .11), 0 3px 5px rgba(142, 142, 142, .31);
}

.hero-cta-input-holder:hover {
  transform: scale(1.02);
}

.form_success {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
}

.generate-section-bg {
  z-index: -1;
  width: 50%;
  background-color: var(--brand-bg);
  background-image: url('../images/Mask-Rects.svg');
  background-position: 100%;
  background-size: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.clients-grid {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 100px;
  display: flex;
}

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

.circle-container {
  z-index: 1;
  width: 360vh;
  height: 360vh;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
  transform: rotate(0);
}

.circle-image-parent {
  z-index: 1;
  width: 10%;
  border-radius: 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 82%;
  left: auto;
  right: auto;
  overflow: hidden;
  transform: translate(0%)rotate(0);
}

.circle-image-parent._2 {
  transform: translate(119%, 13%)rotate(17deg);
}

.circle-image-parent._3 {
  transform: translate(227%, 53%)rotate(36deg);
}

.circle-image-parent._4 {
  transform: translate(311%, 112%)rotate(53deg);
}

.circle-image-parent._5 {
  transform: translate(367%, 189%)rotate(72deg);
}

.circle-image-parent._6 {
  transform: translate(388%, 272%)rotate(88deg);
}

.circle-image-parent._7 {
  transform: translate(372%, 358%)rotate(107deg);
}

.circle-image-parent._8 {
  transform: translate(321%, 435%)rotate(124deg);
}

.circle-image-parent._9 {
  transform: translate(233%, 500%)rotate(144deg);
}

.circle-image-parent._10 {
  transform: translate(122%, 543%)rotate(162deg);
}

.circle-image-holder {
  z-index: 1;
  width: 100%;
  border-radius: 10px;
  padding-top: 140%;
  position: relative;
  overflow: hidden;
  transform: translate(0, -50px);
}

.center-circle {
  z-index: 1;
  width: 69%;
  height: 69%;
  background-color: #fff;
  border-radius: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.circle-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 10px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.circle-section {
  width: 100%;
  height: 350vh;
  display: none;
  position: relative;
}

.circle-sticky {
  width: 100%;
  height: 32vh;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding-top: 15%;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.circle-sticky.hide-in-mobile {
  height: 32vh;
  padding-top: 14%;
}

.circle-sticky-content {
  z-index: 1;
  width: 100%;
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.circle-images {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.circle-images._2 {
  transform: rotate(-180deg);
}

.circle-item-text {
  margin-top: 5px;
}

.circle-item-bg {
  z-index: -1;
  width: 240vw;
  height: 240vw;
  background-color: rgba(212, 172, 254, .93);
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
}

.circle-item-text-container {
  z-index: 1;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 14%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.circle-item-text-holder {
  width: 100%;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--circle-text-color);
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 6% 5% 8%;
  font-size: 11px;
  display: flex;
}

.circle-item-commant {
  background-color: #fff;
  border-radius: 10px;
  padding: 5px;
}

.circle-gradient {
  z-index: 2;
  width: 100%;
  height: 14%;
  background-image: linear-gradient(to bottom, rgba(212, 172, 254, 0), var(--main-color));
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.circle-logo {
  width: 300px;
  opacity: 1;
  position: absolute;
  top: 20px;
}

.circle-bg-grid {
  width: 100%;
  height: 40%;
  background-image: url('../images/hero-pattern.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -10%;
  left: auto;
  right: auto;
}

.circle-titles {
  z-index: 1;
  height: 20%;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.perspective {
  perspective: 400px;
  perspective-origin: 50% 100%;
  transform-origin: 50% 100%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  transform: perspective(608px)perspective(549px);
}

.perspective:hover {
  transform: perspective(1000px)rotate(0)perspective(549px);
}

.perspective.perspective-relative {
  position: relative;
}

.circle-title {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.circle-title-holder {
  background-color: var(--main-color);
  display: block;
}

.circles-prompt-holder {
  z-index: 1;
  width: 50vw;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: -10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.circles-prompt-text-holder {
  z-index: 1;
  width: 50vw;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.circle-prompt-box {
  background-color: var(--lite-blue);
  border-radius: 200px;
  padding: 15px 20px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.form_error {
  outline-offset: 0px;
  color: black;
  text-align: center;
  background-color: #fff;
  border-radius: 14px;
  outline: 0 rgba(0, 0, 0, 0);
  margin-top: 0;
  padding: 14px 2px 14px 10px;
  position: absolute;
  top: auto;
  bottom: -146px;
  left: 0%;
  right: 0%;
}

.logo-header {
  width: 100%;
  max-width: 10rem;
  color: #fff;
}

.logo-footer {
  width: 100%;
  max-width: 10rem;
  color: #fff;
  display: block;
}

.subtitle {
  color: #146ef5;
  letter-spacing: 0;
  text-transform: uppercase;
  background-color: #cee6ff;
  border-radius: 5rem;
  margin-bottom: 1rem;
  padding: .25rem .75rem;
  font-family: Inter, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.1;
  display: inline-block;
}

.section-how-it-works {
  z-index: 2;
  width: 100%;
  height: 150svh;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: relative;
}

.button-label {
  z-index: 1;
  height: 2.5rem;
  text-shadow: 0 3px 1px rgba(0, 0, 0, .2);
  align-items: center;
  display: flex;
  position: relative;
}

.card-ui-img {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 1rem;
  position: absolute;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, .016), 0 0 rgba(0, 0, 0, .024), 0 0 .2px rgba(0, 0, 0, .024), 0 1px .4px rgba(0, 0, 0, .027), 0 1px .9px rgba(0, 0, 0, .027), 0 3px 1.7px rgba(0, 0, 0, .027), 0 5px 3.1px rgba(0, 0, 0, .027), 0 9px 5.4px rgba(0, 0, 0, .03), 0 15px 9.1px rgba(0, 0, 0, .03), 0 25px 15.3px rgba(0, 0, 0, .03), 0 43px 26.5px rgba(0, 0, 0, .035), 0 82px 50.2px rgba(0, 0, 0, .035);
}

.card-ui-img._02 {
  width: 35%;
  bottom: -15%;
  left: -10%;
}

.card-ui-img._03 {
  width: 60%;
  bottom: 7%;
  right: -30%;
}

.card-ui-img._01 {
  width: 60%;
  top: -20%;
  left: -20%;
}

.disclaimer {
  margin-top: 2.5rem;
  font-size: .75rem;
}

.section-cta-spacer {
  z-index: 0;
  width: 100%;
  height: 150svh;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: -100vh;
  display: flex;
  position: relative;
}

.container-2 {
  z-index: 2;
  width: 100%;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.headline-medium {
  letter-spacing: -.05em;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.grid-12cols {
  width: 100%;
  max-width: 85rem;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.numbers-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.section-hero {
  width: 100%;
  height: 95svh;
  background-color: #000;
  background-image: linear-gradient(to top, #146ef5, #000 60%);
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-headline-top-inner {
  display: block;
}

.sub-footer-link {
  opacity: .7;
  color: #fff;
  transition: opacity .2s ease-in-out;
}

.sub-footer-link:hover {
  opacity: 1;
}

.section-personalization {
  z-index: 1;
  width: 100%;
  height: 150svh;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: relative;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.spline-wrapper {
  padding-bottom: 100vh;
  position: relative;
}

.logo-bg {
  z-index: 0;
  width: 50vw;
  opacity: .5;
  mix-blend-mode: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-content-wrapper {
  z-index: 1;
  background-color: #fff;
  position: relative;
}

.spline {
  z-index: 2;
  width: 100%;
  height: 100vh;
  margin-bottom: -100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.section-cta {
  z-index: 0;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 2rem;
  padding-bottom: 10rem;
  display: flex;
  position: relative;
}

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

.hero-headline-top {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.hero-headline-bottom {
  z-index: 2;
  margin-bottom: -.1em;
  padding-bottom: .1em;
  position: relative;
  overflow: hidden;
}

.page-wrapper {
  position: relative;
}

.numbers-list-item {
  margin-bottom: 1rem;
  display: flex;
}

.headline-large {
  max-width: 10ch;
  color: #fff;
  text-align: center;
  letter-spacing: -.05em;
  flex-direction: column;
  margin-top: 0;
  font-size: 10rem;
  font-weight: 700;
  line-height: .9;
  display: flex;
}

.headline-large.no-margin {
  margin-bottom: 0;
}

.button-bg {
  background-color: rgba(255, 255, 255, .1);
  border-radius: 5rem;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-intro {
  width: 100%;
  height: 150svh;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: relative;
}

.header {
  z-index: 10;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.hero-headline-bottom-inner {
  display: block;
}

.paragraph-medium {
  color: rgba(37, 40, 44, .72);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}

.headline-wrapper {
  margin-bottom: 2.5rem;
}

.app-screens-wrapper {
  z-index: 2;
  height: 100%;
  position: relative;
}

.sub-footer {
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  font-size: .875rem;
  display: flex;
}

.footer-2 {
  z-index: 0;
  color: #fff;
  background-color: #1e1e1e;
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  overflow: hidden;
}

.numbers-list-number-wrapper {
  width: 2rem;
  height: 2rem;
  background-color: #cee6ff;
  border-radius: .25rem;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  display: flex;
  overflow: hidden;
}

.sticky-wrapper {
  width: 100%;
  height: 100svh;
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.sub-footer-links {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  display: grid;
}

.page-padding {
  width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.button-2 {
  height: 2.5rem;
  color: #fff;
  text-transform: none;
  background-color: #146ef5;
  border-radius: 5rem;
  justify-content: center;
  align-items: center;
  padding: .5rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.numbers-list-number {
  color: #146ef5;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

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

.her0-text-italic {
  color: #f44336;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
}

.her0-text-italic-large {
  color: #f44336;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
}
.her0-text-italic-medium {
  color: #f44336;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
}

.multi-step-form {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}

.form_contain {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.slider_slide-fill {
  width: 100%;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide-nav {
  display: none;
}

.right-arrow-slider {
  display: block;
  overflow: hidden;
}

.form_prev {
  display: none;
}

.slider_slide {
  width: 100%;
}

.slider_mask {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.c-slider {
  width: 100%;
  max-height: 52px;
  background-color: rgba(0, 0, 0, 0);
}

.build-button {
  background-color: var(--dark-grey);
  color: #fff;
  text-transform: none;
  background-image: url('../images/Arrow-Icon.svg');
  background-position: 82%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 13px;
  padding: 14px 48px 14px 32px;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .3s, transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.build-button:hover {
  color: #fff;
  background-color: #000;
  transform: scale(1.05);
}

.build-button.big {
  width: 100%;
  height: 88px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: pre;
  background-color: #000;
  background-image: none;
  justify-content: center;
  align-items: center;
  padding: 25px 40px;
  font-size: 21px;
  transition-property: box-shadow, transform;
  transition-duration: .8s, .5s;
  display: flex;
  overflow: hidden;
}

.build-button.big:hover {
  transform: none;
  box-shadow: inset 0 20px 50px rgba(255, 255, 255, .13), 0 11px 55px rgba(0, 0, 0, .4);
}

.build-button.form-button {
  background-position: 87%;
  padding: 10px 36px 10px 20px;
  font-size: 18px;
  position: absolute;
  top: auto;
  bottom: auto;
  right: 8px;
}

.build-button.hero-submit-button {
  background-color: var(--dark-grey);
  color: #fff;
}

.build-button.flex {
  width: 140px;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: none;
}

.button-copy {
  background-color: var(--dark-grey);
  color: #fff;
  text-transform: none;
  background-image: url('../images/Arrow-Icon.svg');
  background-position: 82%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 13px;
  padding: 14px 48px 14px 32px;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .3s, transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.button-copy:hover {
  color: #fff;
  background-color: #000;
  transform: scale(1.05);
}

.button-copy.big {
  width: 100%;
  height: 88px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: pre;
  background-color: #000;
  background-image: none;
  justify-content: center;
  align-items: center;
  padding: 25px 40px;
  font-size: 21px;
  transition-property: box-shadow, transform;
  transition-duration: .8s, .5s;
  display: flex;
  overflow: hidden;
}

.button-copy.big:hover {
  transform: none;
  box-shadow: inset 0 20px 50px rgba(255, 255, 255, .13), 0 11px 55px rgba(0, 0, 0, .4);
}

.button-copy.form-button {
  background-position: 87%;
  padding: 10px 36px 10px 20px;
  font-size: 18px;
  position: absolute;
  top: auto;
  bottom: auto;
  right: 8px;
}

.button-copy.hero-submit-button {
  background-color: var(--dark-grey);
  color: #fff;
}

.form_button {
  background-color: var(--dark-grey);
  color: #fff;
  text-transform: none;
  background-image: url('../images/Arrow-Icon.svg');
  background-position: 82%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 13px;
  padding: 14px 48px 14px 32px;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .3s, transform .5s cubic-bezier(.175, .885, .32, 1.275);
  display: none;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.form_button:hover {
  color: #fff;
  background-color: #000;
  transform: scale(1.05);
}

.form_button.big {
  width: 100%;
  height: 88px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: pre;
  background-color: #000;
  background-image: none;
  justify-content: center;
  align-items: center;
  padding: 25px 40px;
  font-size: 21px;
  transition-property: box-shadow, transform;
  transition-duration: .8s, .5s;
  display: flex;
  overflow: hidden;
}

.form_button.big:hover {
  transform: none;
  box-shadow: inset 0 20px 50px rgba(255, 255, 255, .13), 0 11px 55px rgba(0, 0, 0, .4);
}

.form_button.form-button {
  background-position: 87%;
  padding: 10px 36px 10px 20px;
  font-size: 18px;
  position: absolute;
  top: auto;
  bottom: auto;
  right: 8px;
}

.form_button.hero-submit-button {
  background-color: var(--brand-bg);
  color: #fff;
  display: block;
}

.form_button.unhide {
  display: block;
}

.verify-button {
  background-color: var(--dark-grey);
  color: #fff;
  text-transform: none;
  background-image: url('../images/Arrow-Icon.svg');
  background-position: 82%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 13px;
  padding: 14px 48px 14px 32px;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .3s, transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.verify-button:hover {
  color: #fff;
  background-color: #000;
  transform: scale(1.05);
}

.verify-button.big {
  width: 100%;
  height: 88px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: pre;
  background-color: #000;
  background-image: none;
  justify-content: center;
  align-items: center;
  padding: 25px 40px;
  font-size: 21px;
  transition-property: box-shadow, transform;
  transition-duration: .8s, .5s;
  display: flex;
  overflow: hidden;
}

.verify-button.big:hover {
  transform: none;
  box-shadow: inset 0 20px 50px rgba(255, 255, 255, .13), 0 11px 55px rgba(0, 0, 0, .4);
}

.verify-button.form-button {
  background-position: 87%;
  padding: 10px 36px 10px 20px;
  font-size: 18px;
  position: absolute;
  top: auto;
  bottom: auto;
  right: 8px;
}

.verify-button.hero-submit-button {
  background-color: var(--dark-grey);
  color: #fff;
}

.bussiness-button {
  background-color: var(--dark-grey);
  color: #fff;
  text-transform: none;
  background-image: url('../images/Arrow-Icon.svg');
  background-position: 82%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 13px;
  padding: 14px 48px 14px 32px;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .3s, transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.bussiness-button:hover {
  color: #fff;
  background-color: #000;
  transform: scale(1.05);
}

.bussiness-button.big {
  width: 100%;
  height: 88px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: pre;
  background-color: #000;
  background-image: none;
  justify-content: center;
  align-items: center;
  padding: 25px 40px;
  font-size: 21px;
  transition-property: box-shadow, transform;
  transition-duration: .8s, .5s;
  display: flex;
  overflow: hidden;
}

.bussiness-button.big:hover {
  transform: none;
  box-shadow: inset 0 20px 50px rgba(255, 255, 255, .13), 0 11px 55px rgba(0, 0, 0, .4);
}

.bussiness-button.form-button {
  background-position: 87%;
  padding: 10px 36px 10px 20px;
  font-size: 18px;
  position: absolute;
  top: auto;
  bottom: auto;
  right: 8px;
}

.bussiness-button.hero-submit-button {
  background-color: var(--dark-grey);
  color: #fff;
}

.right-arrow {
  display: block;
}

.buton-text {
  padding-left: 20px;
  padding-right: 20px;
}

.icon {
  display: none;
}

.form_next {
  display: block;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.left-arrow-wrap {
  display: none;
  bottom: -115px;
  left: -10px;
  overflow: visible;
}

.direction-icon {
  width: 60px;
  height: 60px;
  color: #c9c9c9;
  background-color: rgba(21, 117, 150, 0);
  background-image: none;
  border: 1px solid #dadada;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 559px;
  margin-bottom: 0;
  font-size: 17px;
  display: flex;
}

.direction-icon:hover {
  background-color: rgba(255, 255, 255, .24);
}

.direction-icon.right {
  border-color: var(--white-smoke);
  opacity: 1;
  left: -298px;
}

.direction-icon.left {
  right: -304px;
}

.client-slider-panel {
  opacity: .37;
  border: 3px #fff;
  margin-right: 20px;
}

.right-arrow-wrap {
  display: none;
  bottom: -115px;
  right: -10px;
  overflow: visible;
}

.tab-drop-heading {
  color: #949494;
  text-align: center;
  border-bottom: 1px #d8d8d8;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-family: Open Sans, sans-serif;
}

.client-slider {
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.sq-slider {
  display: block;
}

.slide-nav-2 {
  color: var(--brand-bg);
  bottom: -48px;
}

.resource-wrap {
  min-height: 100vh;
  background-image: linear-gradient(rgba(212, 172, 254, .7), rgba(212, 172, 254, .7)), url('../images/testpattern.svg');
  background-position: 0 0, 50% 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
  overflow: hidden;
}

.resource-wrap.hide {
  display: none;
}

.client-slider-mask {
  overflow: visible;
}

.client-slider-wrapper {
  border: 5px #ee6a2f;
  display: flex;
}

.slider-wrap {
  width: 100%;
  max-width: 1000px;
  flex-direction: column;
  flex: none;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: relative;
}

.slider-wrap.trislider {
  width: 500px;
  flex: none;
  display: block;
}

.website-panel {
  height: 100%;
  padding: 6px;
}

.website-panel.trislider {
  opacity: .47;
  position: relative;
  transform: scale(.8);
}

.bmnb {
  display: block;
}

.client-cube {
  width: 500px;
  display: block;
}

.div-block1, .collection-list-wrapper, .collection-list {
  display: block;
}

.sq-slider-2 {
  border: 4px #ee6a2f;
}

.image {
  width: 500px;
  height: 500px;
  object-fit: cover;
}

.div-block {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.buttob-holder {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.dropdown-list {
  background-color: #ad7f7f;
}

.dropdown-list.w--open {
  width: 100px;
  height: 100px;
}

.dropdown-link {
  background-color: #d32a2a;
}

.footer-link-2 {
  color: #6b6b6b;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 12px;
  text-decoration: none;
}

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

.nav-logo-wrap {
  flex: none;
}

.quote-attribution {
  justify-content: center;
  align-items: center;
  display: flex;
}

.input {
  height: 70px;
  clear: none;
  color: #000;
  background-color: #fff;
  border-style: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  flex: 0 auto;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 0;
  transition: box-shadow .3s cubic-bezier(.215, .61, .355, 1);
  box-shadow: inset 0 0 #fc0a7e;
}

.input:hover, .input:focus {
  box-shadow: inset 0 0 0 2px #fc0a7e;
}

.input::-ms-input-placeholder {
  color: #555;
}

.input::placeholder {
  color: #555;
}

.wrap {
  max-width: 700px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 40px;
}

.feature-image {
  width: 50vw;
  border: 1px #000;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-2 {
  width: 100%;
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-2.wide {
  height: auto;
  background-color: #1b1b1b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
}

.section-2.wide.purple {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(135deg, #fc0a7e, #602bb6);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  padding-top: 15vh;
  padding-bottom: 15vh;
}

.section-2.wide.img {
  padding-bottom: 0;
}

.section-2.center {
  height: 100vh;
  background-color: #cf0063;
  background-image: linear-gradient(135deg, #dd1173, #350e47);
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  display: flex;
  position: relative;
}

.slider-arrow {
  color: #d6d6d6;
}

.footer-list {
  padding-top: 29px;
  padding-bottom: 29px;
}

.black {
  color: #000;
}

.slide-nav-3 {
  font-size: 7px;
}

.form-2 {
  margin-top: 40px;
  display: flex;
}

.quote-wrap {
  width: 50vw;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.button-wrap {
  width: auto;
  justify-content: center;
  margin-top: 5vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.quote-icon {
  margin-bottom: 45px;
}

.hero-image {
  height: 85vh;
  position: absolute;
  bottom: 0;
  right: 3vw;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #fc0a7e;
  border-radius: 3px;
  margin-right: 0;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .5s cubic-bezier(.789, .159, .25, 1), color .2s cubic-bezier(.789, .159, .25, 1);
  display: inline-block;
}

.button-3:hover {
  color: #6b6b6b;
  background-color: #fff;
}

.button-3.contact {
  background-color: rgba(0, 0, 0, 0);
  margin-left: 10px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .2);
}

.button-3.contact:hover {
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.button-3.form-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1), cubic-bezier(.215, .61, .355, 1);
}

.button-3.form-button:hover {
  color: #fff;
  background-color: #000;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  display: none;
}

.number {
  font-size: 60px;
  line-height: 90px;
}

.feature-wrap {
  width: 90vw;
  border: 1px #000;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.feature-wrap.logos {
  height: auto;
  border-style: none;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.feature-wrap.reverse {
  flex-direction: row-reverse;
}

.feature-wrap.icons {
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}

.nav-link-2 {
  color: #fff;
  flex: 0 auto;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 400;
}

.nav-link-2:hover {
  color: #fff;
  box-shadow: inset 0 -5px #fc0a7e;
}

.feature-icon {
  height: 35px;
  margin-bottom: 30px;
}

.feature-content {
  width: 50vw;
  max-width: 450px;
  border: 1px #000;
  flex: none;
  padding-left: 4vw;
  padding-right: 4vw;
}

.feature-content.icons {
  width: 33.33%;
  max-width: none;
  text-align: center;
  flex-direction: column;
  flex: none;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.feature-content.icons.numbers {
  width: 25%;
}

.black-text {
  color: #000;
}

.quote-slider {
  width: 90vw;
  height: 60vh;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 10vh;
}

.bottom-image-wrap {
  height: auto;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.title {
  color: #a8a8a8;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px #2e2e2e;
  padding-bottom: 5px;
  font-size: 12px;
  display: inline-block;
}

.arrow {
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}

.nav-inner {
  width: 80vw;
  border-bottom: 1px rgba(255, 255, 255, .1);
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.quote-dash {
  width: 30px;
  height: 1px;
  background-color: #d3d3d3;
  flex: none;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

.hero-content {
  z-index: 90;
  width: 100%;
  padding-left: 10vw;
  padding-right: 10vh;
  position: relative;
}

.hero {
  z-index: 999999;
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  padding: 0 10vw;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-subhead {
  max-width: 60%;
  color: #fff;
  font-size: 30px;
  line-height: 44px;
}

.footer-3 {
  background-color: #1b1b1b;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-2 {
  flex: none;
}

.slide-nav-4 {
  font-size: 7px;
}

.form-3 {
  margin-top: 40px;
  display: flex;
}

.button-4 {
  color: #fff;
  text-align: center;
  background-color: #fc0a7e;
  border-radius: 3px;
  margin-right: 0;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .5s cubic-bezier(.789, .159, .25, 1), color .2s cubic-bezier(.789, .159, .25, 1);
  display: inline-block;
}

.button-4:hover {
  color: #6b6b6b;
  background-color: #fff;
}

.button-4.contact {
  background-color: rgba(0, 0, 0, 0);
  margin-left: 10px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .2);
}

.button-4.contact:hover {
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.button-4.form-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1), cubic-bezier(.215, .61, .355, 1);
}

.button-4.form-button:hover {
  color: #fff;
  background-color: #000;
}

.nav-link-3 {
  color: #fff;
  flex: 0 auto;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 400;
}

.nav-link-3:hover {
  color: #fff;
  box-shadow: inset 0 -5px #fc0a7e;
}

.footer-4 {
  background-color: #1b1b1b;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-wrap {
  height: 4.25rem;
  background-color: #141414;
  border-radius: .5rem;
  justify-content: space-between;
  display: flex;
}

.step-heading {
  margin-bottom: .5rem;
  font-size: 4.5rem;
  font-weight: 500;
}

.cta-image-wrap {
  width: 50%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
}

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

.heading-small {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.cta-text-wrap {
  z-index: 2;
  width: 50%;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 4rem;
  display: flex;
  position: relative;
}

.footer-bottom {
  color: #d6d6d6;
  border-top: 1px solid #525252;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.125rem;
  padding-bottom: 3rem;
  display: flex;
}

.slider {
  height: 31.5rem;
  background-color: rgba(0, 0, 0, 0);
  margin-right: 2rem;
}

.page-load-indicator {
  width: 20%;
  height: 100%;
  background-image: linear-gradient(to right, #e63e42, #1dd3fe 25%, #efa789 75%, #6e8bdc);
  border-radius: 200vw;
}

.page-load {
  z-index: 998;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.cta-image-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-colmn {
  flex: 1;
}

.step-image {
  max-width: none;
}

.subheading {
  color: #e5e5e5;
  font-size: 1.25rem;
}

.heading-xlarge {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.slider-logo {
  height: 4rem;
  max-width: none;
}

.page-load-indicator-wrap {
  width: 25%;
  height: .5rem;
  background-color: #292929;
  border-radius: 100vw;
  overflow: hidden;
}

._4rem-spacer {
  height: 4rem;
}

.logo {
  align-items: center;
  margin-left: .875rem;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.logo.footer-logo {
  margin-left: 0;
  position: static;
}

.card {
  background-color: #292929;
  border: 1px solid #525252;
  border-radius: .625rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
}

.card.is-slider {
  height: 100%;
}

.slider-mask {
  max-width: 24rem;
  overflow: visible;
}

.text-size-medium {
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
}

._0-75rem-spacer {
  height: .75rem;
}

.slider-text-wrap {
  width: 100%;
  border: 1px solid #525252;
  border-radius: .5rem;
  padding: 2rem 1.5rem;
}

._2-5rem-spacer {
  height: 2.5rem;
}

.nav-menu-4 {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-left: .875rem;
  padding-right: .875rem;
  display: flex;
}

.nav-right {
  width: 30%;
  justify-content: flex-end;
  display: flex;
}

._3rem-spacer {
  height: 3rem;
}

._0-5rem-spacer {
  height: .5rem;
}

._6rem-spacer {
  height: 6rem;
}

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

.hero-card {
  height: 21rem;
  max-width: none;
  position: absolute;
  box-shadow: 0 17px 1.75rem .875rem rgba(0, 0, 0, .05);
}

.hero-card.is-five {
  z-index: 2;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.hero-card.is-two {
  z-index: 5;
  border-radius: 2rem;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.hero-card.is-one {
  z-index: 4;
  margin-left: 4rem;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.hero-card.is-four {
  z-index: 3;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.hero-card.is-three {
  z-index: 6;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.list-item {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  display: flex;
}

.navbar-2 {
  z-index: 997;
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  padding-top: 1.5rem;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.split {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

._1rem-spacer {
  height: 1rem;
}

.slider-arrow-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 2rem;
  display: flex;
}

._1-25rem-spacer {
  height: 1.25rem;
}

._1-5rem-spacer {
  height: 1.5rem;
}

.icon-1x1-xxsmall {
  width: 1.25rem;
  height: 1.25rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-middle {
  width: 30%;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.main-wrapper.overflow-hidden {
  overflow: hidden;
}

.slider-arrow-2 {
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  border: .0625rem solid #525252;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
}

.slider-arrow-2:hover {
  background-color: #292929;
}

.step-image-wrap {
  height: 32rem;
  max-width: 38rem;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.text-weight-medium {
  font-weight: 500;
}

.slider-slide {
  height: 31.5rem;
  background-color: rgba(0, 0, 0, 0);
  margin-right: 2rem;
}

.cta-image {
  width: 71.25rem;
  height: 63.346rem;
  margin-top: -9.875rem;
  margin-left: -14.75rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  transform: rotate(0);
}

.step-text {
  flex: 1;
}

._8rem-spacer {
  height: 8rem;
}

.list-wrap {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  color: #e5e5e5;
  flex-direction: column;
  margin-top: 2rem;
  padding-left: 1rem;
  display: flex;
}

._2rem-spacer {
  height: 2rem;
}

.container-medium {
  width: 100%;
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.color-e5e5e5 {
  color: #e5e5e5;
}

.div-block-2 {
  height: 40rem;
  flex: 1;
  align-items: flex-end;
  padding-bottom: 13.375rem;
  display: flex;
}

.hero-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  display: flex;
}

.footer-link-wrap {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: #eaecf0;
  flex-direction: column;
  margin-top: 1rem;
  display: flex;
}

.footer-heading {
  color: #98a2b3;
  font-size: .875rem;
  font-weight: 500;
}

.footer-link-3 {
  font-weight: 500;
  transition: all .2s;
}

.footer-link-3:hover {
  color: #fff;
}

.split-wrap {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.split-wrap.footer {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.button-5 {
  color: #fff;
  background-color: #292929;
  border: 1px solid #525252;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .5rem 1.5rem;
  font-weight: 500;
  transition: all .4s;
  display: flex;
}

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

.button-5.is-large {
  border-radius: .5rem;
  padding: .75rem 1.75rem;
  font-size: 1.125rem;
}

.button-5.is-secondary {
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
}

.button-5.is-secondary:hover {
  background-color: #fff;
}

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.hero-img-wrap {
  height: 21rem;
  flex: 1;
  align-items: center;
  padding-left: 4rem;
  display: flex;
  position: relative;
}

.nav-left {
  width: 30%;
  display: block;
}

.button-group {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

.cta-wrap {
  height: 30rem;
  background-color: #292929;
  border: 1px solid #525252;
  border-radius: .5rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.section-3 {
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}

.section-3.hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 9.75rem;
  padding-bottom: 6rem;
  display: flex;
}

.icon-2 {
  width: 3rem;
  height: 3rem;
  border-radius: .625rem;
  margin-bottom: 4rem;
}

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

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

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-medium {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.3;
}

.hide-2 {
  display: none;
}

.hero-text-wrap {
  max-width: 39rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.link-arrow {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  margin-top: 1.125rem;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.link-arrow:hover {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

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

.second_floater {
  width: 40%;
  margin-top: -2rem;
  margin-right: -2rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.heading-medium-2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.cta_card {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  background-image: linear-gradient(to right, rgba(43, 89, 255, .11), rgba(43, 89, 255, .65)), url('../images/magicpattern-mesh-gradient-1673003632721-min.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  display: grid;
  position: relative;
  overflow: hidden;
}

.footer_logo {
  height: 3rem;
}

.testimonials_image-wrapper {
  width: 100%;
  position: relative;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.third_image-wrapper {
  position: relative;
}

.footer_link {
  opacity: .7;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .2s;
}

.footer_link:hover {
  opacity: 1;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.icon-embed-small {
  width: 2rem;
  height: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pricing_divider {
  width: 100%;
  height: 2px;
  background-color: #e7e8e8;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.second_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.icons_item-icon-wrapper {
  color: #fff;
  background-color: #12141d;
  border-radius: 1.5rem;
  flex: none;
  margin-right: 1.5rem;
  padding: 1rem;
}

.chart_image {
  border-radius: 20px;
  position: relative;
}

.cta_button-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.third_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

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

.margin-vertical, .margin-vertical.margin-xxsmall {
  margin-left: 0;
  margin-right: 0;
}

.success-message-2 {
  color: #fff;
  background-color: #2b59ff;
  border-radius: .75rem;
  margin-top: 1rem;
  padding: 1.5rem;
}

.section_hero {
  background-color: #e5eef5;
}

.section_cta {
  background-color: #12141d;
  position: relative;
}

.hero_image-wrapper {
  width: 100%;
}

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

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

.third_floater {
  width: 30%;
  margin-bottom: -2rem;
  margin-left: -2rem;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.first_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

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

.navigation_button-wrapper {
  grid-column-gap: 1rem;
  justify-content: flex-end;
  margin-left: 1rem;
  display: flex;
}

.form-input {
  height: auto;
  min-height: 2.75rem;
  color: #12141d;
  background-color: #fff;
  border: 2px solid #e7e8e8;
  border-radius: .5rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, .6);
}

.form-input::placeholder {
  color: rgba(0, 0, 0, .6);
}

.form-input.is-hero {
  border-style: none;
}

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

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.icons_component {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.checkmark-wrapper {
  color: #fff;
  background-color: #12141d;
  border-radius: 100%;
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.footer_logo-link {
  margin-bottom: 2rem;
  padding-left: 0;
}

.footer_credit-text {
  opacity: .7;
  font-size: .875rem;
  font-weight: 400;
}

.padding-top, .padding-top.padding-medium {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-huge {
  padding: 6rem 0 0;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.pricing_plan {
  background-color: #fff;
  border: 2px solid #e7e8e8;
  border-radius: .5rem;
  padding: 2rem;
}

.pricing_plan.is-middle {
  background-color: #fafafa;
  margin-top: -1rem;
  box-shadow: 0 20px 30px -20px rgba(0, 0, 0, .15);
}

.section_testimonials {
  background-color: #f8fafc;
}

.testimonials_item {
  width: 100%;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.second_image-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.pricing_feature-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.testimonials_image {
  border-radius: .5rem;
}

.text-style-muted {
  opacity: .7;
}

.text-size-tiny {
  font-size: .75rem;
}

.footer_bottom-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.button-6 {
  color: #fff;
  text-align: center;
  background-color: #12141d;
  border: 2px solid #12141d;
  border-radius: .5rem;
  padding: .75rem 1.5rem;
  transition: all .2s;
}

.button-6:hover {
  background-color: #2b59ff;
  border-color: #2b59ff;
}

.button-6.is-navigation-button {
  flex: 1;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button-6.background-color-primary {
  border-color: #2b59ff;
  transition: all .2s;
}

.button-6.background-color-primary:hover {
  background-color: #12141d;
  border-color: #12141d;
}

.button-6.is-secondary {
  color: #12141d;
  background-color: rgba(0, 0, 0, 0);
  border-width: 2px;
  border-color: #e7e8e8;
}

.button-6.is-secondary:hover {
  background-color: #e7e8e8;
}

.button-6.is-link {
  color: #12141d;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-6.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button-6.background-color-white {
  border-color: #fff;
}

.button-6.background-color-white:hover {
  color: #fff;
  background-color: #12141d;
  border-color: #12141d;
}

.cta_content {
  flex: 1;
}

.navigation_container {
  width: 100%;
  height: 100%;
  max-width: 80rem;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.button-group-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.pricing_feature {
  display: flex;
}

.navigation_menu-button {
  padding: 0;
}

.icons_item {
  width: 100%;
  align-items: center;
  display: flex;
}

.navigation_logo-link {
  padding-left: 0;
  transition: transform .2s;
}

.navigation_logo-link:hover {
  transform: scale(1.1);
}

.footer_left-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.navigation_link {
  padding: .5rem 1rem;
  transition: opacity .2s;
}

.navigation_link:hover {
  opacity: .7;
}

.navigation_link.w--current {
  color: #12141d;
}

.hero_form {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #fff;
  border-radius: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  padding: .25rem;
  display: grid;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.line-divider {
  width: 100%;
  height: 1px;
  background-color: #12141d;
}

.error-message-2 {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.footer_top-wrapper {
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: center;
  display: flex;
}

.footer_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  justify-items: start;
  display: grid;
}

.icon-embed-xxsmall {
  width: 1rem;
  height: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonials_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  display: grid;
}

.first_floater {
  width: 30%;
  margin-bottom: -2rem;
  margin-left: -2rem;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.container-medium-2 {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.section_icons {
  background-color: #fafafa;
  overflow: hidden;
}

.navigation_logo {
  height: 2.5rem;
}

.second_item-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.second_item {
  display: flex;
}

.hero_content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.section_second {
  background-color: #f8fafc;
}

.footer_component {
  color: #fff;
  background-color: #12141d;
}

.footer_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.padding-bottom, .padding-bottom.padding-xlarge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

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

.footer_legal-link {
  opacity: .7;
  font-size: .875rem;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .2s;
}

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

.navigation_component {
  width: 100vw;
  height: auto;
  min-height: 4.5rem;
  background-color: #e5eef5;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: none;
}

.navigation_menu {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

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

.first_image-wrapper {
  position: relative;
}

.icon-embed-xsmall {
  width: 1.5rem;
  height: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.hero_form-block {
  max-width: 30rem;
  margin-bottom: 0;
}

.padding-vertical, .padding-vertical.padding-medium {
  padding-left: 0;
  padding-right: 0;
}

.logo-2 {
  height: 2rem;
  opacity: .6;
}

.logo-wrapper {
  justify-content: center;
  align-items: flex-start;
  padding: .75rem 1.5rem;
  display: flex;
}

.logo-link {
  padding-left: 0;
}

.logo-text {
  color: #8f8899;
  letter-spacing: normal;
  -webkit-text-stroke-color: #b3b3b3;
  font-size: 16px;
  font-weight: 600;
}

.header-content {
  z-index: 2;
  padding-left: 32px;
  position: relative;
}

.footer-legal-link {
  color: #8f8899;
  font-family: Inter, sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: all .3s;
}

.footer-legal-link:hover {
  color: #5a585e;
}

.subheading-2 {
  color: #957aff;
  -webkit-text-stroke-color: #9f87ff;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.logo-list {
  width: 100%;
  opacity: .9;
  white-space: nowrap;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: start;
  display: flex;
}

.footer-left-wrapper {
  color: #cec7d8;
}

.button-secondary {
  grid-column-gap: .5rem;
  color: #fdfcff;
  text-align: center;
  white-space: nowrap;
  background-color: #644dc0;
  border: 1px #000;
  border-radius: 8rem;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.button-secondary:hover {
  background-color: #260061;
}

.button-secondary:focus {
  background-color: #fdfcff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 0 0 4px #efedf1;
}

.button-secondary.large {
  grid-column-gap: .75rem;
  background-color: #644dc0;
  padding: 16px 28px;
  font-size: 18px;
}

.navbar-menu-button {
  padding: 0;
}

.badge {
  grid-column-gap: .25rem;
  color: #027a48;
  white-space: nowrap;
  mix-blend-mode: multiply;
  background-color: #ecfdf3;
  border-radius: 10rem;
  align-items: center;
  padding: .125rem .5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

.logo-loop-component {
  height: 4.5rem;
  margin-top: 2rem;
  overflow: hidden;
}

.button-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  display: flex;
}

.footer-legal-list {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.header-image-wrapper {
  height: 40rem;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-container {
  width: 90%;
  height: 100%;
  max-width: 1280px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu-link {
  color: #e6e2ec;
  align-items: center;
  padding: .75rem 1rem;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
}

.menu-link:hover {
  color: #8f8899;
}

.menu-link.w--current {
  color: #000;
}

.footer-menu-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.footer-top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: start;
  justify-items: start;
}

.footer-details-wrapper {
  max-width: 20rem;
}

.footer-bottom-wrapper {
  color: #78737f;
  border-top: 1px solid #28242e;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
}

.hero-paragraph {
  max-width: 43ch;
  color: #cec7d8;
  text-wrap: balance;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.5;
}

.spline-element {
  z-index: 2;
  width: 150%;
  height: 100%;
  cursor: url('../images/'), auto;
  position: absolute;
}

.button-row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-7 {
  grid-column-gap: .5rem;
  color: #fdfcff;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #957aff;
  border-radius: 8rem;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.button-7:hover {
  background-color: #1a1a1a;
}

.button-7:focus {
  background-color: #7f56d9;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 0 0 4px #f4ebff;
}

.button-7.large {
  grid-column-gap: .75rem;
  border-color: #957aff;
  padding: 16px 28px;
  font-size: 18px;
}

.menu {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
  position: static;
}

.footer-link-4 {
  grid-column-gap: .5rem;
  color: #cec7d8;
  flex-wrap: nowrap;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.footer-link-4:hover {
  color: #5a585e;
}

.button-tertiary {
  grid-column-gap: .5rem;
  color: #f4ebff;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 8rem;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.button-tertiary:hover {
  color: #342f3a;
  background-color: #fcfaff;
}

.logo-loop-inner {
  display: flex;
}

.logo-image {
  width: auto;
  height: 100%;
  flex: none;
  display: block;
}

.logo-image:hover {
  opacity: .7;
}

.footer-social-link {
  color: #8f8899;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.footer-social-link:hover {
  color: #78737f;
}

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

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

.max-width-large-2.align-center {
  margin-left: auto;
  margin-right: auto;
}

.container-3 {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-component {
  width: 100%;
  min-height: 80px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, .16);
  border-bottom: 1px solid rgba(249, 250, 251, .16);
  align-items: center;
  display: none;
  position: fixed;
}

.footer-social-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  align-items: start;
  justify-items: start;
  margin-top: 2rem;
  display: grid;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu-right {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.footer-5 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: flex-start;
  justify-items: start;
  display: flex;
}

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

.section-4.hero {
  padding-top: 120px;
  display: none;
  overflow: hidden;
}

.header-component {
  grid-column-gap: 0rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.footer-logo-link {
  float: none;
  margin-bottom: 2rem;
  display: block;
}

.button-8 {
  color: #fff;
  text-align: center;
  background-color: #12141d;
  border: 2px solid #12141d;
  border-radius: .5rem;
  padding: .75rem 1.5rem;
  transition: all .2s;
}

.button-8:hover {
  background-color: #2b59ff;
  border-color: #2b59ff;
}

.button-8.is-navigation-button {
  flex: 1;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button-8.background-color-primary {
  border-color: #2b59ff;
  transition: all .2s;
}

.button-8.background-color-primary:hover {
  background-color: #12141d;
  border-color: #12141d;
}

.button-8.is-secondary {
  color: #12141d;
  background-color: rgba(0, 0, 0, 0);
  border-width: 2px;
  border-color: #e7e8e8;
}

.button-8.is-secondary:hover {
  background-color: #e7e8e8;
}

.button-8.is-link {
  color: #12141d;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-8.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button-8.background-color-white {
  border-color: #fff;
}

.button-8.background-color-white:hover {
  color: #fff;
  background-color: #12141d;
  border-color: #12141d;
}

.button-group-3 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

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

.button-9 {
  grid-column-gap: .5rem;
  color: #fdfcff;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #957aff;
  border-radius: 8rem;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.button-9:hover {
  background-color: #1a1a1a;
}

.button-9:focus {
  background-color: #7f56d9;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 0 0 4px #f4ebff;
}

.button-9.large {
  grid-column-gap: .75rem;
  border-color: #957aff;
  padding: 16px 28px;
  font-size: 18px;
}

.section-partners-logo {
  z-index: 1;
  background-color: var(--main-color);
}

.section-partners-logo.white-section {
  z-index: 2;
  background-color: #fafafa;
  margin-top: -120px;
  position: relative;
  overflow: hidden;
}

.section-partners-logo.overflow-hidden-mobile {
  overflow: visible;
}

.section-partners-logo.white-background-section {
  background-color: #fff;
}

.section-partners-logo.hero-section {
  padding-top: 140px;
  position: relative;
}

.about-us-image-holder-copy {
  width: 100%;
  perspective: 1000px;
  display: none;
}

.navbar_menu-dropdown {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: none;
}

.navbar_dropdwn-toggle {
  align-items: center;
  padding: 0 10px 0 0;
  display: flex;
}

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

.chevron-down {
  margin-top: 2px;
  margin-left: 1px;
}

.navbar2_dropdown-list {
  margin-top: 69px;
}

.navbar2_dropdown-list.w--open {
  background-color: var(--plum);
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  border-radius: 10px;
  margin-top: 60px;
  padding: .5rem;
  position: absolute;
  top: -13px;
  left: -18px;
}

.navbar2_dropdown-link {
  color: #fff;
  padding: .5rem 1rem;
}

.dropdown-icon {
  margin-bottom: 8px;
  margin-right: 0;
}

.dropdown-text {
  grid-column-gap: 6px;
  color: #000;
  flex-direction: row;
  align-items: center;
  margin-right: 10px;
  padding: 5px;
  font-size: 20px;
  display: block;
}

.dropdown-text:hover {
  color: var(--dark-grey);
}

.marquee-loop-wrapper {
  width: 300%;
  object-fit: fill;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: none;
  overflow: visible;
}

.image-3 {
  border-width: 1px;
}

.image-3.left {
  transform-style: preserve-3d;
  border-style: none;
  border-color: #000;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.card-text {
  color: #fff;
  text-align: center;
  font-size: 54px;
  font-weight: 700;
}

.grow-background {
  z-index: 0;
  height: 0%;
  background-color: #f5f5f5;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.sticky-wrap {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 4.4rem;
  overflow: hidden;
}

.scroll-inner {
  width: 124vw;
  height: 100%;
  align-items: flex-end;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.description {
  opacity: .75;
  color: #1d1d1f;
  letter-spacing: -.025em;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  display: none;
}

.heading {
  color: #1d1d1f;
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

.content-wrapper {
  width: 100%;
  flex: 1;
  padding: 2rem;
  position: relative;
}

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

.text-wrapper {
  z-index: 1;
  position: relative;
}

.sticky-container {
  width: 100%;
  height: 500vw;
  display: flex;
  position: relative;
}

.media-wrapper {
  width: 100%;
  height: 52%;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.scroll-card {
  width: 30vw;
  height: 74%;
  min-height: 32rem;
  background-color: #fff;
  border: .0625rem solid rgba(131, 131, 131, .16);
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  flex-direction: column;
  flex: 1;
  align-items: center;
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
  position: relative;
  bottom: -5%;
  overflow: hidden;
}

.faq-wrapper {
  background-color: var(--brand-bg);
  border-radius: 24px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 20px;
}

.collection-list-2 {
  display: block;
}

.header-blog {
  min-height: 745px;
  background-color: var(--brand-bg);
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 162px 3% 220px;
  display: flex;
}

.navigation-button {
  color: #5c4ebd;
  background-color: #fb9acf;
  border-radius: 10px;
  margin-left: 40px;
  padding: 18px 30px;
  font-family: DM Sans, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.profile-picture {
  border-radius: 100px;
  margin-right: 10px;
}

.profile-block-header {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.navigation {
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  padding: 20px 3%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.paragraph-detials-small {
  color: #9899ad;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 120%;
}

.paragraph-detials-small.white-50 {
  color: rgba(255, 255, 255, .5);
}

.navigation-link {
  color: #fff;
  padding-left: 25px;
  padding-right: 25px;
  font-family: DM Sans, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.navigation-menu {
  align-items: center;
  display: flex;
}

.title-small {
  color: #202146;
  margin-bottom: 4px;
  font-weight: 700;
}

.title-small.white {
  color: #fff;
}

.title-small.pink {
  color: #fb9acf;
  margin-bottom: 0;
}

.navigation-container-full {
  width: 100%;
  max-width: 1100px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.heading-h1 {
  max-width: 800px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
}

.featured-block {
  margin-top: 10px;
}

.subscription {
  background-color: #fff;
  background-image: url('../images/Paper-Plane.png');
  background-position: -20px -30px;
  background-repeat: no-repeat;
  background-size: 125px;
  border-radius: 15px;
  margin-bottom: 40px;
  padding: 100px 20px 20px;
  box-shadow: 0 12px 14px rgba(0, 0, 0, .06);
}

.heading-h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 140%;
}

.heading-h3.text-color-white {
  margin-bottom: 0;
}

.title-large {
  color: #202146;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

.container-4 {
  width: 100%;
  height: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

.stick-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}

.blog-section-image {
  padding-bottom: 100px;
  padding-left: 3%;
  padding-right: 3%;
}

.image-4 {
  position: absolute;
}

.blog-hero-image {
  border-radius: 15px;
  margin-top: -220px;
  margin-bottom: 80px;
  box-shadow: 0 22px 34px rgba(0, 0, 0, .06);
}

.blog-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr;
  display: none;
}

.paragraph-detials-large {
  color: #202146;
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 30px;
}

.form-4 {
  background-color: #f2f5f8;
  border-radius: 15px;
  display: flex;
}

.submit-button-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.blog-h2 {
  color: #202146;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 32px;
}

.submit-button {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0);
}

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

.feature-image-2 {
  border-radius: 15px;
  margin-right: 20px;
  box-shadow: 0 22px 34px rgba(0, 0, 0, .16);
}

.text-field-2 {
  height: 60px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 15px;
}

.content-right {
  position: -webkit-sticky;
  position: sticky;
}

.featured-item {
  color: #202146;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.featured-item:hover {
  color: #5c4ebd;
}

.faq-wrap {
  width: 100%;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  display: grid;
}

.plus {
  width: 2px;
  height: 38%;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
}

.header-wrap-centre {
  width: 100%;
  max-width: 850px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.h3 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 800;
}

.h3.text-color-white {
  color: #fff;
  font-size: 20px;
}

.faq-item {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #212121;
  border-radius: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}

.paragraph {
  color: rgba(24, 24, 24, .9);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.paragraph.text-color-white {
  color: var(--white-smoke);
}

.faq-question {
  width: 100%;
  grid-column-gap: 39px;
  grid-row-gap: 39px;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.main-container {
  width: 100%;
  max-width: 1050px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.main-container.centre {
  max-width: none;
  justify-content: flex-start;
  align-items: center;
}

.faq-answer {
  height: auto;
  overflow: hidden;
}

.spacer-50px {
  width: 50px;
  height: 50px;
}

.h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  overflow: visible;
}

.minus {
  width: 38%;
  height: 2px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
}

.purple-span {
  color: #7300de;
}

.p-m-wrap {
  width: 30px;
  height: 30px;
  min-height: 30px;
  min-width: 30px;
  background-image: linear-gradient(52deg, #7300de, #07f);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  display: flex;
  position: relative;
}

.footer-heading-white {
  font-size: 28px;
  font-weight: 500;
}

.footer-links {
  font-size: 16px;
}

.section-5 {
  background-color: #42b2e5;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.slide-wrap {
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  padding: 60px 40px;
  display: flex;
}

.logo-img._50-r-m {
  margin-right: 100px;
}

.blog-content {
  height: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
  font-family: Inter, sans-serif;
}

.heading-h2.text-color-white {
  display: block;
}

.blog-paragraph {
  font-family: DM Sans, sans-serif;
  font-size: 18px;
}

.paragraph-2, .list-item-2, .list-item-3, .paragraph-3, .paragraph-4 {
  font-family: DM Sans, sans-serif;
}

.cta-wrapper-2 {
  margin-top: 80px;
}

.build-form-input {
  width: 100%;
  height: 52px;
  color: #212121;
  border: 0 #000;
  margin-bottom: 0;
  padding: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.build-form-input::-ms-input-placeholder {
  color: #c2c2c2;
}

.build-form-input::placeholder {
  color: #c2c2c2;
}

.hero-cta-input-holder-2 {
  grid-column-gap: 20px;
  background-color: #fff;
  border-radius: 24px;
  align-items: center;
  padding: 11px;
  transition: box-shadow .675s cubic-bezier(.251, 1.235, .32, 1.275), transform .65s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  box-shadow: 0 1px 1px rgba(142, 142, 142, .14), 0 5px 8px rgba(142, 142, 142, .11), 0 3px 5px rgba(142, 142, 142, .31);
}

.hero-cta-input-holder-2:hover {
  transform: scale(1.02);
}

.success-message-3 {
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
}

.button-10 {
  color: #fff;
  text-transform: none;
  background-color: #212121;
  background-image: url('../images/Arrow-Icon.svg');
  background-position: 82%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 13px;
  padding: 14px 48px 14px 32px;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .3s, transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.button-10:hover {
  color: #fff;
  background-color: #000;
  transform: scale(1.05);
}

.button-10.hero-submit-button {
  color: #fff;
  background-color: #212121;
}

.hero-section-button-holder-2 {
  width: 100%;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.error-message-hero {
  outline-offset: 0px;
  color: #6727aa;
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  outline: 0 rgba(0, 0, 0, 0);
  margin-top: 0;
  padding: 2px 2px 2px 10px;
  position: absolute;
  top: auto;
  bottom: -40px;
  left: 0%;
  right: 0%;
}

.circle-title-holder-2 {
  background-color: #d4acfe;
  display: block;
}

.circle-title-holder-2._3, .circle-title-holder-2._2, .circle-title-holder-2._1, .circle-title-holder-2._4, .circle-title-holder-2._5 {
  background-color: var(--transparent);
}

.circle-gradient-2 {
  z-index: 2;
  width: 100%;
  height: 14%;
  background-image: linear-gradient(rgba(212, 172, 254, 0), #d4acfe);
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.circle-logo-2 {
  width: 130px;
  opacity: 1;
  position: absolute;
  top: 60px;
}

.circle-item-text-holder-2 {
  width: 100%;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #6727aa;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 6% 5% 8%;
  font-size: 11px;
  display: flex;
}

.circle-section-2 {
  width: 100%;
  height: 350vh;
  display: none;
  position: relative;
}

.cta-input-holder-hero {
  grid-column-gap: 20px;
  background-color: #fff;
  border-radius: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 11px;
  transition: box-shadow .675s cubic-bezier(.251, 1.235, .32, 1.275), transform .65s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  box-shadow: 0 1px 1px rgba(142, 142, 142, .14), 0 5px 8px rgba(142, 142, 142, .11), 0 3px 5px rgba(142, 142, 142, .31);
}

.cta-input-holder-hero:hover {
  transform: scale(1.1);
}

.form-slider-wrapper {
  display: block;
}

.next-button {
  background-color: var(--brand-bg);
  color: #fff;
  text-transform: none;
  background-image: url('../images/Arrow-Icon.svg');
  background-position: 82%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 13px;
  padding: 14px 48px 14px 32px;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .3s, transform .5s cubic-bezier(.175, .885, .32, 1.275);
  display: block;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.next-button:hover {
  color: #fff;
  background-color: #000;
  transform: scale(1.05);
}

.next-button.big {
  width: 100%;
  height: 88px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: pre;
  background-color: #000;
  background-image: none;
  justify-content: center;
  align-items: center;
  padding: 25px 40px;
  font-size: 21px;
  transition-property: box-shadow, transform;
  transition-duration: .8s, .5s;
  display: flex;
  overflow: hidden;
}

.next-button.big:hover {
  transform: none;
  box-shadow: inset 0 20px 50px rgba(255, 255, 255, .13), 0 11px 55px rgba(0, 0, 0, .4);
}

.next-button.form-button {
  background-position: 87%;
  padding: 10px 36px 10px 20px;
  font-size: 18px;
  position: absolute;
  top: auto;
  bottom: auto;
  right: 8px;
}

.next-button.hero-submit-button {
  background-color: var(--dark-grey);
  color: #fff;
  display: none;
}

.next-button.unhide {
  display: block;
}

.cta-wrapper-1, .cta-wrapper2, .cta-wrapper-3 {
  margin-top: 40px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.form-error-text {
  color: #e44a33;
  font-size: 18px;
  font-weight: 500;
}

.image-heading-flex {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-heading-flex.margin-left {
  margin-left: 60px;
}

.cta-wrapper-copy {
  margin-top: 15px;
  position: static;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cta-wrapper-4 {
  max-height: 78px;
  margin-top: 40px;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loading-bar {
  height: 52px;
  background-color: var(--lite-blue);
  border-radius: 24px;
  position: relative;
}

.horizontal-slider-wrapper {
  padding-top: 0;
}

.card-buttons {
  text-align: center;
  padding-left: 60px;
  overflow: hidden;
}

.card-buttons.dark {
  padding-left: 0;
}

.card-buttons-wrapper.flex {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.card-buttom-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.text-size-xlarge {
  font-size: 34px;
}

.arrow-down-button {
  background-color: var(--brand-bg);
  border-radius: 100px;
  margin-top: 175px;
  padding: 15px;
}

.arrow-down-image {
  transform: rotate(90deg);
}

.text-size-huge {
  font-size: 34px;
}

.form-example-text {
  text-align: right;
  margin-top: 10px;
  position: absolute;
  top: 76px;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.seach-bar {
  height: 60px;
  color: #9899ad;
  border: 1px #000;
  border-radius: 15px;
  margin-bottom: 40px;
  padding-left: 20px;
  font-size: 15px;
  box-shadow: 0 12px 14px rgba(0, 0, 0, .06);
}

.header-2 {
  min-height: 490px;
  background-color: #5c4ebd;
  background-image: url('../images/BG-Shape-02.svg'), url('../images/BG-Shape-01.svg');
  background-position: 0 0, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.content-section {
  padding: 132px 3%;
}

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

.global-name-block {
  background-color: #f8f9fb;
  border-radius: 6px;
  padding: 2px 6px;
  text-decoration: none;
}

.next-button-2 {
  background-color: #fb9acf;
  border-radius: 15px;
  margin-top: 20px;
  padding: 20px 36px;
  text-decoration: none;
}

.global-container {
  width: 100%;
  max-width: 1300px;
  grid-column-gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-medium {
  color: #5c4ebd;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 130%;
  text-decoration: none;
}

.container-5 {
  width: 100%;
  height: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

.global-title-text {
  color: #36364a;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.global-logo-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.search-button-wrapper {
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

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

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

.form-5 {
  background-color: #f2f5f8;
  border-radius: 15px;
  display: flex;
}

.global-navigation-line {
  width: 1px;
  height: 20px;
  background-color: rgba(18, 43, 105, .08);
}

.categories-block {
  margin-top: 40px;
}

.search-icon {
  position: absolute;
  top: 22px;
  bottom: 0%;
  left: 22px;
  right: 0%;
}

.profile-block {
  align-items: center;
  display: flex;
}

.global-navigation {
  height: 82px;
  background-color: #fff;
  border-bottom: 1px solid rgba(18, 43, 105, .08);
  align-items: center;
  padding: 24px;
  display: flex;
}

.blog-image-wrap {
  border-radius: 10px;
  overflow: hidden;
}

.search-button {
  width: 60px;
  height: 100%;
  background-color: #5c4ebd;
  border-radius: 15px;
  position: static;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.global-text-wrapper {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  display: flex;
}

.bar-big {
  width: 220px;
  height: 5px;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 100px;
  margin-top: 32px;
}

.search {
  position: relative;
}

.blog-image {
  width: 100%;
}

.categories-pill {
  background-color: #fff;
  border-radius: 100px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 6px 16px;
  text-decoration: none;
}

.bar-small {
  width: 180px;
  height: 5px;
  background-image: linear-gradient(to right, rgba(251, 154, 193, 0), #fb9acf);
  border-radius: 100px;
}

.global-name {
  color: #282735;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.navigation-container-full-2 {
  width: 100%;
  max-width: 1100px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.global-button-primary {
  height: 32px;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fff;
  white-space: nowrap;
  background-color: #6f5cff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: color .3s ease-out, background-color .3s ease-out;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 4px 12px rgba(155, 142, 255, .3), inset 0 1px rgba(155, 142, 255, .6), 0 -1px 1px rgba(91, 41, 255, .8), 0 0 0 1px #6e5bff;
}

.global-button-primary:hover {
  background-color: #7f6fff;
}

.global-button-primary:active {
  background-color: #705cfa;
}

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

.blog-item {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  padding: 20px;
  text-decoration: none;
  display: grid;
  box-shadow: 0 22px 34px rgba(0, 0, 0, .06);
}

.paragraph-detials-medium {
  color: #9899ad;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 24px;
}

.heading-h2-2 {
  color: #202146;
  margin-top: 0;
}

.global-name-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  display: flex;
}

.global-logo {
  width: 120px;
}

.heading-h1-2 {
  max-width: 650px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
}

.header-blog-2 {
  min-height: 600px;
  background-color: var(--brand-bg);
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 162px 3% 220px;
  display: flex;
}

.heading-h3-2 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 140%;
}

.container-6 {
  width: 100%;
  height: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

.blog-section-2 {
  padding-bottom: 132px;
  padding-left: 3%;
  padding-right: 3%;
}

.form-6 {
  background-color: #f2f5f8;
  border-radius: 15px;
  display: flex;
}

.navigation-container-full-3 {
  width: 100%;
  max-width: 1100px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading-h1-3 {
  max-width: 650px;
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
}

@media screen and (min-width: 1280px) {
  .container.footer-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .slider_slide-fill, .slider_slide, .slider_mask, .c-slider {
    max-width: 100%;
  }

  .circle-title-holder-2._5 {
    display: block;
  }

  .circle-section-2 {
    display: none;
  }
}

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

  .container.footer-container {
    max-width: 100%;
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 2em;
  }

  .hero-section-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-between;
    align-items: center;
  }

  .infinite-ai-image-wrapper {
    max-width: 400px;
  }

  .generate-section-image-holder {
    max-width: 470px;
  }

  .generate-title-holder {
    max-width: 450px;
  }

  .footer-form-holder {
    max-width: 400px;
  }

  .yellow-background {
    background-color: #fff;
  }

  .hero-description {
    max-width: 700px;
  }

  .form_field::-ms-input-placeholder {
    color: var(--dark-grey);
  }

  .form_field::placeholder {
    color: var(--dark-grey);
  }

  .circle-section {
    display: none;
  }

  .circle-sticky {
    margin-top: -15%;
  }

  .circle-sticky.hide-in-mobile {
    height: 32vh;
    margin-top: 0%;
    padding-top: 10%;
  }

  .circle-item-text-holder {
    font-size: 14px;
  }

  .circle-logo {
    width: 280px;
  }

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

  .her0-text-large {
      font-size: 72px;
    }

  .section-5 {
    background-color: var(--lite-blue);
  }

  .circle-item-text-holder-2 {
    font-size: 14px;
  }
}

@media screen and (min-width: 1920px) {
  .hero-background {
    height: auto;
  }

  .circle-sticky.hide-in-mobile {
    padding-top: 10%;
  }
}

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

  h2 {
    font-size: 42px;
  }

  a {
    font-weight: 500;
  }

  .section.hero-section {
    padding-top: 100px;
  }

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

  .nav-menu {
    height: auto;
    background-color: #fff;
    border-radius: 20px;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 20px 10px;
  }

  .button {
    font-weight: 500;
  }

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

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

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

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

  .menu-button {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 14px;
    transition: border-radius .45s, background-color .35s;
    display: flex;
  }

  .menu-button.w--open {
    background-color: var(--main-color);
    border-radius: 13px;
    padding-top: 14px;
  }

  .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: 1em;
    display: grid;
  }

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

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

  .style-guide-hero-holder {
    padding: 1em;
  }

  .style-guide-tab-holder {
    padding-top: 7px;
    padding-bottom: 7px;
  }

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

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

  .nav-link-holder {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding-right: 0;
    display: flex;
  }

  .nav-button-holder {
    margin-left: 0;
  }

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

  .brand.w--current {
    min-width: 150px;
  }

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

  .hero-section-paragraph-holder {
    margin-top: 0;
    font-size: 20px;
  }

  .hero-section-container {
    max-width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .hero-section-button-holder {
    max-width: none;
  }

  .infinite-ai-images-holder.infinite-ai-images-footer {
    padding-top: 60%;
  }

  .infinite-ai-images-grid, .infinite-ai-images-grid.ai-images-grid-footer {
    width: 130%;
  }

  .infnite-image {
    border-radius: 8px;
  }

  .center-text.fade-in-move-on-scroll {
    padding-bottom: 20px;
  }

  .title-clean {
    font-size: 55px;
  }

  .grey-cards-holder {
    margin-top: 60px;
  }

  .grey-cards-content-holder {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 30px 0 30px 30px;
  }

  .grey-card-text-holder {
    max-width: 100%;
    padding-right: 30px;
  }

  .grey-card-image-holder {
    max-width: 420px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .small-cards {
    grid-row-gap: 40px;
  }

  .small-cards-content-holder {
    padding-left: 30px;
  }

  .small-card-text {
    font-size: 28px;
  }

  .generate-section-text-holder {
    max-width: 60%;
    border-radius: 15px;
    padding: 27px;
  }

  .generate-main-text {
    font-size: 33px;
  }

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

  .yellow-text, .yellow-text.dark {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
  }

  .about-us-image {
    border-radius: 12px;
  }

  .about-us-text {
    font-size: 24px;
  }

  .cta-container {
    border-radius: 20px;
  }

  .cta-wrapper {
    margin-top: 40px;
  }

  .cta-input-holder {
    border-radius: 14px;
  }

  .cta-input-holder:hover {
    transform: none;
  }

  .footer-brand-holder {
    grid-column-gap: 60px;
    grid-row-gap: 70px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    display: grid;
  }

  .footer-brand-holder.bottom {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .footer-link-holder {
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .footer-form-holder {
    max-width: none;
  }

  .invert-menu {
    filter: invert();
  }

  .footer-link-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 16px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .changelog-section {
    padding: 1em;
  }

  .footer-instagram-profile-link {
    padding: 20px;
    font-size: 14px;
  }

  .hero-description.text-align-left {
    max-width: 600px;
    text-align: center;
  }

  .hero-cta-input-holder {
    border-radius: 14px;
  }

  .hero-cta-input-holder:hover {
    transform: none;
  }

  .clients-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .circle-sticky.hide-in-mobile {
    padding-top: 20%;
  }

  .circle-title {
    font-size: 50px;
  }

  .circle-prompt-box {
    font-size: 40px;
  }

  .section-how-it-works {
    justify-content: flex-end;
    padding-bottom: 2.5rem;
  }

  .card-ui-img._02 {
    bottom: -5%;
    left: -26%;
  }

  .card-ui-img._03 {
    bottom: 18%;
    right: 10%;
  }

  .card-ui-img._01 {
    top: -2%;
  }

  .section-cta-spacer {
    justify-content: flex-end;
    padding-bottom: 2.5rem;
  }

  .grid-12cols {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    align-items: end;
  }

  .section-personalization {
    justify-content: flex-end;
    padding-bottom: 2.5rem;
  }

  .logo-bg {
    width: 100vw;
  }

  .section-cta {
    justify-content: flex-end;
  }

  .headline-large {
    font-size: 7rem;
  }

  .section-intro {
    justify-content: flex-end;
    padding-bottom: 2.5rem;
  }

  .build-button, .button-copy, .form_button, .verify-button, .bussiness-button {
    font-weight: 500;
  }

  .direction-icon.right {
    margin-top: 439px;
    margin-right: 0;
  }

  .direction-icon.left {
    margin-top: 439px;
    margin-left: 0;
  }

  .tab-drop-heading {
    text-align: center;
    margin-top: 97px;
    margin-bottom: 20px;
    padding-bottom: 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 30px;
    line-height: 30px;
  }

  .slider-wrap {
    flex: 1;
  }

  .slider-wrap.trislider {
    width: 50vw;
  }

  .website-panel {
    padding-left: 0;
    padding-right: 10px;
  }

  .section-2.center {
    height: auto;
    flex-direction: column;
    padding-top: 15vh;
  }

  .menu-button-2.w--open {
    background-color: #000;
  }

  .quote-wrap {
    width: 70vw;
  }

  .hero-image {
    width: 70%;
    height: auto;
    margin-bottom: 7vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .nav {
    width: 100vw;
  }

  .heading-3 {
    font-size: 8vw;
  }

  .feature-wrap {
    margin-top: 5vh;
    margin-bottom: 5vh;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-wrap.logos {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .nav-link-2 {
    padding-top: 20px;
  }

  .nav-link-2:hover {
    box-shadow: none;
  }

  .feature-icon {
    flex: none;
  }

  .nav-menu-2 {
    min-width: 240px;
    background-color: #000;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-2 {
    padding-left: 18px;
  }

  .quote-slider {
    width: 100vw;
    height: auto;
    min-height: 500px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .bottom-image-wrap {
    height: auto;
    background-image: none;
  }

  .nav-inner {
    width: 100vw;
  }

  .hero-content {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .menu-icon {
    color: #fff;
    font-size: 40px;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-subhead {
    font-size: 24px;
    line-height: 31px;
  }

  .menu-button-3.w--open {
    background-color: #000;
  }

  .nav-link-3 {
    padding-top: 20px;
  }

  .nav-link-3:hover {
    box-shadow: none;
  }

  .nav-menu-3 {
    min-width: 240px;
    background-color: #000;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-wrap {
    background-color: rgba(0, 0, 0, 0);
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-load {
    display: none;
  }

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

  .heading-xlarge {
    font-size: 3.25rem;
  }

  .page-load-indicator-wrap {
    width: 60%;
  }

  .logo {
    margin-left: 0;
    padding-left: 0;
    position: static;
  }

  .nav-menu-4 {
    background-color: #292929;
    border-bottom: .0625rem solid #525252;
    flex-direction: column;
    padding-top: 2rem;
  }

  .nav-right {
    width: auto;
    flex-direction: column;
    justify-content: center;
  }

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

  .nav-middle {
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .step-image-wrap {
    max-width: none;
  }

  .cta-image {
    margin-top: -6.875rem;
    margin-left: -1.35rem;
  }

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

  .container-medium {
    position: static;
  }

  .hero-content-wrapper {
    flex-direction: column;
  }

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

  .hero-img-wrap {
    margin-top: 14rem;
    transform: rotate(90deg);
  }

  .nav-left {
    width: auto;
  }

  .button-group.is-navigation {
    border-top: .0625rem #9595a4;
    flex-direction: column-reverse;
    padding: 1.5rem 1rem;
  }

  .section-3 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .nav-button {
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    padding: 0;
    display: flex;
  }

  .nav-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .heading-medium-2 {
    font-size: 1.75rem;
  }

  .cta_card {
    grid-column-gap: 3rem;
    padding: 2rem;
  }

  .second_component {
    min-height: auto;
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .cta_button-row {
    flex: none;
  }

  .third_component {
    min-height: auto;
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

  .menu-icon_line-middle {
    width: 24px;
    height: 2px;
    background-color: #12141d;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .first_component {
    min-height: auto;
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .navigation_button-wrapper {
    align-items: center;
  }

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

  .icons_component {
    grid-column-gap: 2rem;
  }

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

  .menu-icon2 {
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .menu-icon_line-bottom {
    width: 24px;
    height: 2px;
    background-color: #12141d;
    padding-bottom: 0;
    padding-right: 0;
  }

  .cta_content {
    margin-right: 3rem;
  }

  .navigation_container {
    grid-template-columns: .25fr 1fr;
    display: flex;
  }

  .navigation_menu-button {
    padding: 0;
  }

  .navigation_menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

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

  .navigation_link {
    max-width: 20rem;
    text-align: center;
    background-color: #e5eef5;
    border-radius: .25rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
    padding: 1rem 0;
    font-size: 1.125rem;
  }

  .footer_top-wrapper {
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr;
  }

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

  .hero_content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .menu-icon_line-top {
    width: 24px;
    height: 2px;
    background-color: #12141d;
    padding-bottom: 0;
    padding-right: 0;
  }

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

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

  .navigation_menu {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
    justify-content: flex-start;
    padding: .5rem 5%;
    display: flex;
    position: absolute;
    overflow: auto;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, .1);
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-icon-component {
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .header-content {
    padding-left: 0;
  }

  .menu-icon-line-top {
    width: 24px;
    height: 2px;
    background-color: #fcfaff;
    border-radius: 1rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar-menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .button-wrapper {
    flex-direction: column-reverse;
    align-items: stretch;
    display: flex;
  }

  .menu-icon-line-bottom {
    width: 24px;
    height: 2px;
    background-color: #fdfcff;
    border-radius: 1rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-left {
    grid-column-gap: 0px;
    grid-row-gap: .5rem;
    color: #161a22;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .menu-link {
    width: 100%;
    color: #fdfcff;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .menu-link:hover {
    color: #161a22;
  }

  .footer-top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .spline-element {
    width: 100%;
  }

  .menu {
    height: 100vh;
    color: #fff;
    -webkit-text-fill-color: inherit;
    background-color: #181818;
    background-clip: border-box;
    border-top: 1px solid #efedf1;
    align-items: flex-start;
    margin-left: 0;
    padding: 1.5rem 2rem 5rem;
    position: absolute;
    overflow: auto;
  }

  .menu-right {
    flex-direction: column-reverse;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    padding-bottom: 7rem;
  }

  .menu-icon-line-middle {
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon-line-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .header-component {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .navbar_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar_dropdwn-toggle {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1rem;
    display: flex;
  }

  .navbar2_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar2_dropdown-list.w--open {
    border-style: none;
    margin-top: 0;
    padding: 0;
    position: static;
  }

  .navbar2_dropdown-link {
    width: auto;
    text-align: center;
    padding: .75rem 0;
    font-size: 16px;
  }

  .dropdown-icon {
    margin-bottom: 6px;
  }

  .dropdown-text {
    height: auto;
    grid-row-gap: 10px;
    flex-direction: column;
    font-weight: 500;
  }

  .scroll-inner {
    width: 250vw;
  }

  .scroll-card {
    width: 60vw;
    height: 61.8%;
    bottom: 0%;
  }

  .navigation-button {
    margin-left: 0;
  }

  .menu-button-4 {
    color: #fb9acf;
    border: 1px solid #fb9acf;
    border-radius: 15px;
  }

  .menu-button-4.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .navigation-menu {
    background-color: #202146;
  }

  .heading-h3.text-color-white.mobile {
    font-size: 30px;
  }

  .blog-grid {
    grid-column-gap: 22px;
    grid-template-columns: 1fr .6fr;
  }

  .feature-image-2 {
    margin-bottom: 10px;
  }

  .featured-item {
    flex-wrap: wrap;
  }

  .hero-cta-input-holder-2 {
    border-radius: 14px;
  }

  .hero-cta-input-holder-2:hover {
    transform: none;
  }

  .button-10 {
    font-weight: 500;
  }

  .cta-input-holder-hero {
    border-radius: 14px;
  }

  .cta-input-holder-hero:hover {
    transform: none;
  }

  .next-button {
    font-weight: 500;
  }

  .cta-wrapper-1, .cta-wrapper2, .cta-wrapper-3 {
    margin-top: 40px;
  }

  .image-heading-flex.margin-left {
    margin-left: 30px;
  }

  .cta-wrapper-copy, .cta-wrapper-4 {
    margin-top: 40px;
  }

  .horizontal-slider-wrapper {
    padding-top: 0;
  }

  .card-buttons {
    padding-left: 30px;
  }

  .card-buttons-wrapper.flex {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: center;
  }

  .text-size-huge {
    font-size: 28px;
  }

  .header-2 {
    background-image: url('../images/BG-Shape-01.svg');
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .global-logo-link {
    margin-right: 0;
  }

  .menu-button-5 {
    color: #fb9acf;
    border: 1px solid #fb9acf;
    border-radius: 15px;
  }

  .menu-button-5.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .blog-grid-2 {
    grid-column-gap: 22px;
    grid-template-columns: 1fr .6fr;
  }

  .blog-item {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 26px;
  }

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

  .section.hero-section.mobile {
    height: auto;
  }

  .container.white-container {
    border-radius: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .button.big {
    height: 70px;
    padding: 20px;
    font-size: 18px;
  }

  .button.full {
    width: 100%;
    background-position: 64%;
    justify-content: center;
    align-items: center;
    padding-left: 85px;
    padding-right: 85px;
    display: flex;
  }

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

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

  .hero-text {
    max-width: 500px;
    font-size: 50px;
  }

  .brand {
    padding-left: 0;
  }

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

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

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

  .hero-section-paragraph-holder {
    max-width: 400px;
  }

  .hero-section-button-holder {
    max-width: 500px;
  }

  .infinite-ai-images-grid {
    width: 150%;
    grid-column-gap: 10px;
  }

  .drops-section-holder.buttom-padding {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .title-clean {
    font-size: 40px;
  }

  .grey-cards-wrapper {
    border-radius: 14px;
  }

  .grey-card-icon-holder {
    width: 40px;
  }

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

  .small-cards-holder {
    flex-direction: column;
    display: flex;
  }

  .art-title-holder {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .generate-section-holder.buttom-padding {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-bottom: 20px;
  }

  .generate-section {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .generate-section-text-holder {
    max-width: 100%;
  }

  .generate-section-image-holder {
    flex: none;
    justify-content: center;
    align-items: center;
    padding: 3em;
    display: flex;
  }

  .generate-image {
    width: 50%;
  }

  .about-us-section-holder {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .about-us-images {
    grid-row-gap: 10px;
  }

  .cta-content-holder {
    padding: 60px 20px;
  }

  .cta-input-holder {
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 27px;
  }

  .footer-brand-holder {
    grid-template-columns: 1fr;
    padding-top: 3em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    display: flex;
  }

  .footer-brand-holder.bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-brand-container {
    max-width: 100%;
  }

  .footer-link-wrapper {
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .copyright-panel {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-background {
    height: 680px;
  }

  .hero-cta-input-holder {
    grid-row-gap: 30px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 27px;
  }

  .generate-section-bg {
    width: 100%;
    height: 440px;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .client-logo {
    max-height: 20px;
    max-width: 100px;
  }

  .circle-sticky.hide-in-mobile {
    display: none;
  }

  .circle-title {
    font-size: 40px;
  }

  .circle-prompt-box {
    font-size: 30px;
  }

  .form_error {
    bottom: -50px;
  }

  .logo-header {
    max-width: 8rem;
  }

  .section-how-it-works {
    justify-content: center;
  }

  .card-ui-img {
    border-radius: .5rem;
  }

  .card-ui-img._02 {
    width: 25%;
    bottom: 13%;
    left: 5%;
  }

  .card-ui-img._03 {
    width: 40%;
    bottom: 35%;
    right: -5%;
  }

  .card-ui-img._01 {
    width: 40%;
    left: -6%;
  }

  .headline-medium {
    font-size: 2rem;
  }

  .grid-12cols {
    display: block;
  }

  .section-personalization {
    justify-content: center;
  }

  .logo-bg {
    width: 120vw;
  }

  .section-cta {
    margin-top: -5rem;
  }

  .headline-large {
    font-size: 12vw;
  }

  .section-intro {
    z-index: 1;
    justify-content: center;
  }

  .paragraph-medium {
    font-size: 1rem;
  }

  .app-screens-wrapper {
    padding-bottom: 100%;
  }

  .footer-2 {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }

  .sticky-wrapper {
    align-items: flex-end;
    padding-bottom: 1.5rem;
  }

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

  .form_contain {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    align-items: flex-start;
  }

  .build-button.big {
    height: 70px;
    padding: 20px;
    font-size: 18px;
  }

  .build-button.full {
    width: 100%;
    background-position: 64%;
    justify-content: center;
    align-items: center;
    padding-left: 85px;
    padding-right: 85px;
    display: flex;
  }

  .button-copy.big {
    height: 70px;
    padding: 20px;
    font-size: 18px;
  }

  .button-copy.full {
    width: 100%;
    background-position: 64%;
    justify-content: center;
    align-items: center;
    padding-left: 85px;
    padding-right: 85px;
    display: flex;
  }

  .form_button.big {
    height: 70px;
    padding: 20px;
    font-size: 18px;
  }

  .form_button.full {
    width: 100%;
    background-position: 64%;
    justify-content: center;
    align-items: center;
    padding-left: 85px;
    padding-right: 85px;
    display: flex;
  }

  .verify-button.big {
    height: 70px;
    padding: 20px;
    font-size: 18px;
  }

  .verify-button.full {
    width: 100%;
    background-position: 64%;
    justify-content: center;
    align-items: center;
    padding-left: 85px;
    padding-right: 85px;
    display: flex;
  }

  .bussiness-button.big {
    height: 70px;
    padding: 20px;
    font-size: 18px;
  }

  .bussiness-button.full {
    width: 100%;
    background-position: 64%;
    justify-content: center;
    align-items: center;
    padding-left: 85px;
    padding-right: 85px;
    display: flex;
  }

  .left-arrow-wrap {
    left: -29px;
  }

  .right-arrow-wrap {
    right: -29px;
  }

  .slider-wrap {
    padding-right: 18px;
  }

  .slider-wrap.trislider {
    width: 370px;
    height: 370px;
  }

  .footer-link-2 {
    margin-bottom: 10px;
    display: inline-block;
  }

  .quote-attribution {
    flex-direction: row;
    align-items: center;
  }

  .input {
    text-align: center;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
    padding-left: 22px;
    padding-right: 22px;
  }

  .wrap {
    width: 100%;
    max-width: none;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding-left: 15vw;
    padding-right: 15vw;
    display: flex;
  }

  .form-2 {
    flex-direction: column;
  }

  .hero-image {
    margin-bottom: 10vw;
  }

  .form-block-2 {
    width: 100%;
  }

  .button-3.form-button {
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
  }

  .feature-wrap {
    flex-direction: row;
  }

  .feature-wrap.icons {
    flex-flow: wrap;
    display: block;
  }

  .feature-wrap.icons.numbers {
    display: flex;
  }

  .feature-content.icons {
    width: auto;
    text-align: left;
    align-items: flex-start;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-content.icons.numbers {
    width: 50%;
    flex: none;
    align-items: center;
  }

  .hero-content {
    margin-bottom: 5vh;
  }

  .menu-icon {
    font-size: 30px;
  }

  .form-3 {
    flex-direction: column;
  }

  .form-block-3 {
    width: 100%;
  }

  .button-4.form-button {
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
  }

  .cta-image-wrap {
    transform: scale(.7);
  }

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

  .heading-small {
    font-size: 1.5rem;
  }

  .cta-text-wrap {
    width: 100%;
    padding-top: 4rem;
  }

  .heading-xlarge {
    font-size: 2.25rem;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .nav-menu-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-2 {
    padding-top: 0;
  }

  .nav-middle {
    padding-left: 1rem;
  }

  .cta-image {
    margin-top: -.875rem;
    margin-left: -20.05rem;
    transform: rotate(0);
  }

  .hero-img-wrap {
    margin-top: 8.4rem;
    transform: scale(.8)rotate(90deg);
  }

  .button-group {
    flex-wrap: wrap;
  }

  .cta-wrap {
    flex-direction: column;
  }

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

  .heading-medium {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .cta_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .heading-medium-2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .cta_card {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer_logo {
    height: 2.5rem;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .second_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .cta_button-row {
    width: 100%;
    justify-content: flex-start;
  }

  .third_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

  .first_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .icons_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .footer_credit-text {
    margin-top: 2rem;
  }

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

  .pricing_plan {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

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

  .button-6.is-navigation-button {
    padding: .25rem 1rem;
    display: none;
  }

  .cta_content {
    margin-right: 0;
  }

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

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .footer_top-wrapper {
    grid-row-gap: 2.5rem;
    align-items: flex-start;
  }

  .footer_link-list {
    width: 100%;
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-items: start;
  }

  .testimonials_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .navigation_logo {
    height: 2rem;
  }

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

  .footer_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    justify-items: start;
  }

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

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

  .navigation_component {
    min-height: 4rem;
  }

  .text-size-large-2 {
    font-size: 1.125rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .logo-2 {
    height: 2.5rem;
  }

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

  .footer-legal-link:hover {
    color: #8f8899;
  }

  .button-container.landscape {
    width: 100%;
  }

  .logo-list {
    width: 124rem;
    grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
  }

  .button-secondary {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .button-secondary:hover {
    color: #342f3a;
    background-color: #fdfcff;
  }

  .button-secondary.large {
    grid-column-gap: .5rem;
    padding: .75rem 1.25rem;
    font-size: 1rem;
  }

  .badge {
    padding: .125rem .5rem;
  }

  .logo-loop-component {
    height: 3.5rem;
  }

  .footer-legal-list {
    margin-bottom: 1rem;
  }

  .header-image-wrapper {
    height: 26rem;
    background-image: none;
  }

  .menu-link {
    font-size: 1rem;
  }

  .footer-top-wrapper {
    grid-row-gap: 3rem;
  }

  .footer-bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 3rem;
  }

  .button-row {
    align-self: stretch;
  }

  .button-row.reverse-landscape {
    flex-direction: column-reverse;
  }

  .button-7 {
    font-size: 1rem;
  }

  .button-7:hover {
    background-color: #7f56d9;
    border-color: #7f56d9;
  }

  .button-7.large {
    grid-column-gap: .5rem;
    padding: .75rem 1.25rem;
    font-size: 1rem;
  }

  .menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-link-4:hover {
    color: #6941c6;
  }

  .button-tertiary:hover {
    color: #5a585e;
    background-color: rgba(0, 0, 0, 0);
  }

  .footer-social-link:hover {
    color: #8f8899;
  }

  .navbar-component {
    min-height: 4.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-social-list {
    margin-top: 1.5rem;
  }

  .footer-logo-link {
    margin-bottom: 1.5rem;
  }

  .button-8.is-navigation-button {
    padding: .25rem 1rem;
    display: none;
  }

  .button-9 {
    font-size: 1rem;
  }

  .button-9:hover {
    background-color: #7f56d9;
    border-color: #7f56d9;
  }

  .button-9.large {
    grid-column-gap: .5rem;
    padding: .75rem 1.25rem;
    font-size: 1rem;
  }

  .sticky-wrap {
    height: auto;
    overflow: visible;
  }

  .scroll-inner {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .description {
    margin-top: .875rem;
    font-size: 1.125rem;
  }

  .heading {
    font-size: 1.75rem;
  }

  .sticky-container {
    height: 480vw;
  }

  .scroll-card {
    width: 100%;
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    margin: 1rem 0;
  }

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

  .header-blog {
    justify-content: center;
    padding-bottom: 162px;
  }

  .heading-h1 {
    font-size: 55px;
  }

  .blog-hero-image {
    margin-top: -100px;
  }

  .blog-grid {
    grid-row-gap: 62px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .slide-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-cta-input-holder-2 {
    grid-row-gap: 30px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 27px;
  }

  .error-message-hero {
    bottom: -50px;
  }

  .cta-input-holder-hero {
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 27px;
  }

  .next-button.big {
    height: 70px;
    padding: 20px;
    font-size: 18px;
  }

  .next-button.full {
    width: 100%;
    background-position: 64%;
    justify-content: center;
    align-items: center;
    padding-left: 85px;
    padding-right: 85px;
    display: flex;
  }

  .arrow-down-button {
    margin-top: 263px;
  }

  .header-2 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .content-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .blog-grid-2 {
    grid-row-gap: 62px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .global-navigation-line, .global-text-wrapper {
    display: none;
  }

  .heading-h1-2 {
    font-size: 55px;
  }

  .header-blog-2 {
    justify-content: center;
    padding-bottom: 162px;
  }

  .heading-h1-3 {
    font-size: 55px;
  }
}

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

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

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

  .section.white-section {
    margin-top: 0;
  }

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

  .section.hero-section {
    padding-top: 80px;
  }

  .container {
    padding: 1em;
  }

  .container.nav-container {
    padding: 10px;
  }

  .container.white-container {
    border-radius: 24px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .container.footer-container {
    margin-left: 1em;
    margin-right: 1em;
  }

  .nav-menu-container {
    height: 100%;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar {
    height: 80px;
  }

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

  .nav-menu.mobile-hide {
    display: none;
  }

  .button.big {
    height: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
  }

  .button.form-button {
    width: 100%;
    text-align: left;
    background-position: 93%;
    border-radius: 12px;
    margin-right: 0;
    position: relative;
    right: 0;
  }

  .button.full {
    background-position: 68%;
    font-size: 16px;
  }

  .button.hero-submit-button {
    width: 60px;
    color: rgba(255, 255, 255, 0);
    background-position: 50%;
    padding-left: 0;
    padding-right: 0;
  }

  .button.without-arrow.mobile {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

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

  .footer {
    text-align: left;
    padding-bottom: 50px;
  }

  .change-log-container {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 1em;
    padding: 1em;
  }

  .menu-button {
    padding: 6px 9px 9px;
  }

  .menu-button.w--open {
    background-color: var(--lite-blue);
    padding-top: 6px;
  }

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

  .style-guide-title-holder {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .headings-holder {
    padding: 10px;
  }

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

  .paragraph-container {
    width: 100%;
  }

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

  .style-guide-home-text {
    font-size: 20px;
  }

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

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

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

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

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

  .hero-text {
    font-size: 38px;
  }

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

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

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

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

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

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

  .hero-section-holder {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .hero-section-paragraph-holder {
    margin-top: 12px;
    font-size: 16px;
  }

  .hero-section-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .hero-section-button-holder {
    max-width: 100%;
    margin-top: 30px;
  }

  .infinite-ai-images-holder.infinite-ai-images-footer {
    padding-top: 90%;
  }

  .infinite-ai-images-grid {
    width: 200%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .infinite-ai-images-grid.ai-images-grid-footer {
    width: 170%;
  }

  .infinite-ai-image-wrapper {
    grid-row-gap: 10px;
  }

  .infinite-ai-image-wrapper._02 {
    margin-top: 32px;
  }

  .infinite-ai-image-wrapper._03 {
    margin-top: 64px;
  }

  .right-garadient {
    width: 10%;
  }

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

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

  .title-clean.max {
    font-size: 42px;
  }

  .grey-cards-holder {
    margin-top: 40px;
  }

  .grey-cards-content-holder {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }

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

  .grey-card-image-holder {
    margin-bottom: 0;
  }

  .grey-card-icon-holder {
    width: 30px;
  }

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

  .card-title-holder {
    margin-top: 24px;
  }

  .card-paragraph {
    font-size: 14px;
  }

  .grey-card-image {
    border-radius: 0;
  }

  .background-decor {
    opacity: .21;
  }

  .small-cards {
    grid-row-gap: 40px;
    border-radius: 24px;
    padding-top: 24px;
  }

  .small-cards-content-holder {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .small-card-text {
    font-size: 24px;
  }

  .art-title-holder {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .generate-section-holder {
    padding-bottom: 5em;
  }

  .generate-section {
    border-radius: 24px;
  }

  .generate-section-text-holder {
    padding: 20px;
  }

  .generate-title.flex {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
    margin-right: auto;
  }

  .purple-text {
    font-size: 16px;
  }

  .generate-main-text {
    font-size: 28px;
  }

  .paragraph-s {
    max-width: none;
    color: rgba(0, 0, 0, .6);
    font-size: 14px;
  }

  .generate-image, .generate-image._1st {
    width: 70%;
  }

  .yellow-text {
    padding: 10px;
    font-size: 14px;
  }

  .yellow-text.dark {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .about-us-grid {
    flex-direction: column;
    display: flex;
  }

  .cta-holder {
    overflow: hidden;
  }

  .cta-content-holder {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .cta-title-holder {
    text-align: center;
    align-items: flex-start;
    padding: 18px;
  }

  .cta-wrapper {
    max-width: 100%;
    margin-top: 14px;
  }

  .cta-input-holder {
    grid-row-gap: 12px;
    box-shadow: none;
    padding: 12px;
    overflow: hidden;
  }

  .text-auto {
    white-space: nowrap;
    font-size: 12px;
    line-height: 21.6px;
  }

  .footer-brand-container {
    margin-bottom: 0;
  }

  .footer-link-holder {
    grid-column-gap: 20px;
    text-align: center;
    justify-content: space-between;
  }

  .text-field-holder {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-direction: column;
  }

  .text-field {
    height: 50px;
    background-color: #fff;
    border-radius: 12px;
    padding-right: 12px;
    font-size: 16px;
  }

  .footer-link-wrapper {
    grid-column-gap: 50px;
  }

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

  .text-auto-wrapper {
    width: 100%;
    background-color: #f4f4f4;
    border-radius: 12px;
    padding: 17px 12px 15px;
    overflow: hidden;
  }

  .left-gradient-black {
    width: 10%;
  }

  .footer-instagram-profile-link {
    border-radius: 8px;
    padding: 15px;
    font-size: 12px;
  }

  .grey-background {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-background {
    height: 620px;
  }

  .hero-bg-grid {
    background-size: 500px;
  }

  .form_field {
    height: 50px;
    background-color: #f6f1f1;
    border-radius: 12px;
    font-size: 16px;
  }

  .ai-form-content {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .hero-cta-input-holder {
    grid-row-gap: 12px;
    box-shadow: none;
    justify-content: center;
    align-items: stretch;
    padding: 12px;
  }

  .clients-grid {
    margin-top: 10px;
  }

  .client-logo {
    max-height: 20px;
    max-width: 100px;
  }

  .circle-container {
    width: 200vh;
    height: 200vh;
  }

  .circle-sticky {
    margin-top: -40vh;
    padding-top: 40vh;
  }

  .circle-sticky.hide-in-mobile {
    display: none;
  }

  .circle-bg-grid {
    background-size: 500px;
  }

  .circle-title {
    font-size: 28px;
  }

  .circles-prompt-holder {
    margin-top: -12px;
  }

  .circle-prompt-box {
    font-size: 19px;
  }

  .form_error {
    text-align: center;
    bottom: -50px;
  }

  .card-ui-img._02 {
    width: 35%;
    bottom: 31%;
    left: -2%;
  }

  .card-ui-img._03 {
    width: 50%;
    right: -24%;
  }

  .card-ui-img._01 {
    width: 50%;
    top: -7%;
    left: -27%;
  }

  .headline-large {
    font-size: 3rem;
  }

  .app-screens-wrapper {
    height: 35%;
    margin-bottom: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .sub-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sub-footer-links {
    margin-top: 1.5rem;
  }

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

  .slider_slide-fill {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .c-slider {
    max-height: 168px;
  }

  .build-button.big {
    height: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
  }

  .build-button.form-button {
    width: 100%;
    text-align: left;
    background-position: 93%;
    border-radius: 12px;
    margin-right: 0;
    position: relative;
    right: 0;
  }

  .build-button.full {
    background-position: 68%;
    font-size: 16px;
  }

  .build-button.hero-submit-button {
    width: 60px;
    color: rgba(255, 255, 255, 0);
    background-position: 50%;
    padding-left: 0;
    padding-right: 0;
  }

  .button-copy.big {
    height: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
  }

  .button-copy.form-button {
    width: 100%;
    text-align: left;
    background-position: 93%;
    border-radius: 12px;
    margin-right: 0;
    position: relative;
    right: 0;
  }

  .button-copy.full {
    background-position: 68%;
    font-size: 16px;
  }

  .button-copy.hero-submit-button {
    width: 60px;
    color: rgba(255, 255, 255, 0);
    background-position: 50%;
    padding-left: 0;
    padding-right: 0;
  }

  .form_button.big {
    height: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
  }

  .form_button.form-button {
    width: 100%;
    text-align: left;
    background-position: 93%;
    border-radius: 12px;
    margin-right: 0;
    position: relative;
    right: 0;
  }

  .form_button.full {
    background-position: 68%;
    font-size: 16px;
  }

  .form_button.hero-submit-button {
    width: 100%;
    color: #fff;
    background-image: url('../images/Arrow-Icon.svg');
    background-position: 60%;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .verify-button.big {
    height: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
  }

  .verify-button.form-button {
    width: 100%;
    text-align: left;
    background-position: 93%;
    border-radius: 12px;
    margin-right: 0;
    position: relative;
    right: 0;
  }

  .verify-button.full {
    background-position: 68%;
    font-size: 16px;
  }

  .verify-button.hero-submit-button {
    width: 60px;
    color: rgba(255, 255, 255, 0);
    background-position: 50%;
    padding-left: 0;
    padding-right: 0;
  }

  .bussiness-button.big {
    height: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
  }

  .bussiness-button.form-button {
    width: 100%;
    text-align: left;
    background-position: 93%;
    border-radius: 12px;
    margin-right: 0;
    position: relative;
    right: 0;
  }

  .bussiness-button.full {
    background-position: 68%;
    font-size: 16px;
  }

  .bussiness-button.hero-submit-button {
    width: 60px;
    color: rgba(255, 255, 255, 0);
    background-position: 50%;
    padding-left: 0;
    padding-right: 0;
  }

  .left-arrow-wrap {
    align-items: center;
    margin-left: -29px;
    display: none;
    bottom: 0;
    left: 0;
  }

  .direction-icon.right {
    margin-top: 0;
    margin-right: 0;
    position: relative;
    left: 0;
  }

  .direction-icon.left {
    margin-top: 0;
    position: relative;
    right: 0;
  }

  .right-arrow-wrap {
    justify-content: center;
    align-items: center;
    display: none;
    bottom: 0;
  }

  .tab-drop-heading {
    font-size: 30px;
    display: none;
  }

  .slide-nav-2 {
    opacity: .16;
    position: relative;
  }

  .slider-wrap {
    padding-right: 13px;
  }

  .slider-wrap.trislider {
    width: 100%;
    height: auto;
    justify-content: center;
    padding: 37px 20px;
    display: flex;
    overflow: hidden;
  }

  .buttob-holder {
    justify-content: center;
    align-items: center;
    display: none;
  }

  .button-text.mobile {
    font-size: 16px;
  }

  .right-arrow-2 {
    width: 15vw;
  }

  .wrap {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .feature-image {
    width: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .section-2.center {
    padding-bottom: 10vh;
  }

  .slider-arrow {
    font-size: 24px;
  }

  .form-2, .button-wrap {
    width: 90vw;
    flex-direction: column;
  }

  .left-arrow {
    width: 15vw;
  }

  .hero-image {
    width: 80%;
  }

  .button-3.contact {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

  .heading-3 {
    font-size: 42px;
    line-height: 56px;
  }

  .number {
    font-size: 40px;
  }

  .feature-wrap, .feature-wrap.reverse {
    flex-direction: column;
  }

  .feature-icon {
    margin-bottom: 20px;
  }

  .feature-content {
    width: auto;
  }

  .feature-content.icons.numbers {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .quote-slider {
    width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .nav-inner {
    width: 100vw;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .image-2 {
    width: 100%;
  }

  .form-3 {
    width: 90vw;
    flex-direction: column;
  }

  .button-4.contact {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

  .cta-text-wrap {
    padding-top: 2rem;
    padding-left: 1rem;
  }

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

  .slider {
    width: 100%;
  }

  .slider-mask {
    width: 100%;
    max-width: none;
  }

  .navbar-2 {
    padding-top: 0;
  }

  .nav-middle {
    margin-bottom: 0;
  }

  .slider-slide {
    width: 100%;
  }

  .cta-image {
    margin-top: -3.975rem;
    transform: rotate(0);
  }

  .list-wrap {
    padding-left: 0;
  }

  .split-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-wrap: wrap;
  }

  .hero-img-wrap {
    margin-top: 0;
    transform: scale(.7)rotate(90deg);
  }

  .button-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-3.hero {
    padding-top: 7.75rem;
  }

  .heading-medium {
    font-size: 1.5rem;
  }

  .cta_card {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

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

  .cta_button-row {
    flex-direction: column;
    align-items: stretch;
  }

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

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .first_component, .icons_component {
    grid-template-columns: 1fr;
  }

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

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

  .hero_form {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer_top-wrapper {
    grid-row-gap: 48px;
  }

  .testimonials_list, .hero_content-wrapper {
    grid-template-columns: 1fr;
  }

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

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

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .header-image-wrapper {
    height: 22rem;
  }

  .footer-menu-wrapper, .header-component {
    grid-template-columns: 1fr;
  }

  .section-partners-logo.overflow-hidden-mobile {
    overflow: hidden;
  }

  .section-partners-logo.hero-section {
    padding-top: 80px;
  }

  .navbar_menu-dropdown {
    display: none;
  }

  .navbar_dropdwn-toggle {
    margin-left: auto;
    margin-right: auto;
  }

  .scroll-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sticky-container {
    height: auto;
  }

  .scroll-card {
    min-height: 20rem;
  }

  .faq-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header-blog {
    min-height: 680px;
  }

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

  .heading-h3.text-color-white.mobile {
    font-size: 28px;
  }

  .footer-6 {
    background-image: none;
    background-position: 50% 0;
    background-repeat: repeat-x;
    background-size: cover;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .h3.text-color-white {
    font-size: 18px;
  }

  .paragraph {
    font-size: 16px;
  }

  .paragraph.text-color-white {
    font-size: 14px;
  }

  .faq-question {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 10px 0;
  }

  .spacer-50px.mobile {
    height: 20px;
  }

  .h2 {
    font-size: 30px;
  }

  .faq-answer-inner {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .p-m-wrap {
    margin-left: 0;
  }

  .slide-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .logo-img._50-r-m {
    margin-right: 40px;
  }

  .cta-wrapper-2 {
    width: 100%;
    margin-top: 14px;
  }

  .build-form-input {
    font-size: 16px;
  }

  .hero-cta-input-holder-2 {
    grid-row-gap: 12px;
    box-shadow: none;
    padding: 12px;
  }

  .button-10.hero-submit-button {
    width: 60px;
    color: rgba(255, 255, 255, 0);
    background-position: 50%;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section-button-holder-2 {
    margin-top: 30px;
  }

  .error-message-hero {
    text-align: center;
    bottom: -50px;
  }

  .cta-input-holder-hero {
    grid-row-gap: 12px;
    box-shadow: none;
    padding: 12px;
    overflow: hidden;
  }

  .next-button.big {
    height: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
  }

  .next-button.form-button {
    width: 100%;
    text-align: left;
    background-position: 93%;
    border-radius: 12px;
    margin-right: 0;
    position: relative;
    right: 0;
  }

  .next-button.full {
    background-position: 68%;
    font-size: 16px;
  }

  .next-button.hero-submit-button {
    width: 60px;
    color: rgba(255, 255, 255, 0);
    background-position: 50%;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-wrapper-1, .cta-wrapper2, .cta-wrapper-3, .cta-wrapper-copy, .cta-wrapper-4 {
    max-width: 100%;
    margin-top: 14px;
  }

  .horizontal-slider-wrapper {
    padding-top: 0;
  }

  .card-buttons {
    padding-left: 20px;
  }

  .card-buttons-wrapper.flex {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    align-items: center;
  }

  .text-size-xlarge {
    font-size: 20px;
  }

  .arrow-down-button {
    margin-top: 214px;
  }

  .text-size-huge {
    font-size: 22px;
  }

  .global-title-text, .global-icon-x-small {
    display: none;
  }

  .heading-h1-2 {
    font-size: 44px;
  }

  .header-blog-2 {
    min-height: 680px;
  }

  .heading-h1-3 {
    font-size: 44px;
  }
}

#w-node-fb6e61c5-348f-515a-51ba-509ea31acd9b-7eab8aae, #w-node-_472e4dc8-aac6-32c2-d384-9ed9dd06f470-7eab8aae, #w-node-ce1de107-6610-a28f-6425-f2e2b7bfe727-7eab8aae, #w-node-_394d2e5f-fbd0-a45d-e96c-b4822bd54d1c-7eab8aae, #w-node-_251a05ba-2dc7-2b66-5016-96e45c369c1b-7eab8aae, #w-node-_85296290-8a4a-3ecc-6516-1a6d8dad9179-7eab8aae, #w-node-_85296290-8a4a-3ecc-6516-1a6d8dad9186-7eab8aae, #w-node-_85296290-8a4a-3ecc-6516-1a6d8dad9193-7eab8aae, #w-node-_85296290-8a4a-3ecc-6516-1a6d8dad91a0-7eab8aae, #w-node-_85296290-8a4a-3ecc-6516-1a6d8dad91ba-7eab8aae, #w-node-c7ed0788-44a3-6b3c-7bd5-efee05e25db8-7eab8aae, #w-node-_5e197c4f-3129-e68e-3c6d-c48c9f942077-7eab8aae, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc670687-7eab8ab6, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc670689-7eab8ab6, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc67068b-7eab8ab6, #w-node-_98d84ba8-b1c9-27a9-e3ca-bf11bc67068d-7eab8ab6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

#w-node-_49e40a72-74f3-1649-6d78-7811c5e5aae8-d507c005 {
  justify-self: center;
}

#w-node-_49e40a72-74f3-1649-6d78-7811c5e5aaf1-d507c005 {
  justify-self: end;
}

#w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab1e-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab24-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab2a-d507c005 {
  align-self: start;
}

#w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab35-d507c005 {
  justify-self: center;
}

#w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab50-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab56-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab5c-d507c005 {
  align-self: start;
}

#w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab6a-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab72-d507c005 {
  justify-self: center;
}

#w-node-_49e40a72-74f3-1649-6d78-7811c5e5abc9-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5abce-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5abd3-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5abeb-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5abf0-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5abf5-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac0d-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac12-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac17-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac1c-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac21-d507c005 {
  align-self: start;
}

#w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac3b-d507c005 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac3e-d507c005 {
  justify-self: start;
}

#w-node-_63c15241-41fc-4f0d-9c4d-9f50a582b1b4-8da019c7, #w-node-_63c15241-41fc-4f0d-9c4d-9f50a582b1bf-8da019c7, #w-node-_63c15241-41fc-4f0d-9c4d-9f50a582b1ca-8da019c7, #w-node-_63c15241-41fc-4f0d-9c4d-9f50a582b1d5-8da019c7, #w-node-_63c15241-41fc-4f0d-9c4d-9f50a582b244-8da019c7, #w-node-_63c15241-41fc-4f0d-9c4d-9f50a582b251-8da019c7, #w-node-_63c15241-41fc-4f0d-9c4d-9f50a582b25e-8da019c7, #w-node-_63c15241-41fc-4f0d-9c4d-9f50a582b26b-8da019c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_17aa1704-d94e-818a-327d-28b37827325f-d20b6883, #w-node-_17aa1704-d94e-818a-327d-28b378273261-d20b6883, #w-node-_17aa1704-d94e-818a-327d-28b378273263-d20b6883, #w-node-_17aa1704-d94e-818a-327d-28b378273265-d20b6883, #w-node-_17aa1704-d94e-818a-327d-28b378273267-d20b6883 {
  justify-self: center;
}

#w-node-_17aa1704-d94e-818a-327d-28b37827327b-d20b6883 {
  justify-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-eec48bb4-7097-222d-1919-0fb3ed1909af-0a144c54, #w-node-_593c6d01-8c32-d2cc-ddf9-6693ffc0aaba-0a144c54 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac3c-d507c005 {
    grid-area: 1 / 1 / 2 / 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab38-d507c005, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ab75-d507c005 {
    order: -9999;
  }

  #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac3c-d507c005 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac3e-d507c005 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_85296290-8a4a-3ecc-6516-1a6d8dad9186-7eab8aae, #w-node-_49e40a72-74f3-1649-6d78-7811c5e5ac3c-d507c005 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Overlay content box */
.overlay-content {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-out;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form label {
  font-weight: bold;
  font-size: 0.9rem;
}

.submit-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.submit-btn:hover {
  background: #0056b3;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-section-carousel {
    position: relative; /* allow normal flow */
  }

  .carousel-item {
    position: relative;     /* remove absolute */
    opacity: 0;             /* hide by default */
    animation: none !important; /* stop animation */
  }

  .carousel-item:first-child {
    opacity: 1; /* only show first slide */
  }
}
