:root {
  --background: #0d121b;
  --paragraphs: #fff9;
  --heading: white;
  --purple: #9f5bff;
  --border: #efe2d7;
  --shadow: #642c0012;
  --white: white;
  --accent-background: #fbf2eb;
  --blue: #2b4dff;
  --trans: #12b36100;
  --greytext: #9c9b9b;
  --grey: var(--background);
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--background);
  color: var(--paragraphs);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  display: flex;
}

h1 {
  color: var(--heading);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 60px;
  font-weight: 700;
  line-height: 122%;
}

h2 {
  color: var(--heading);
  letter-spacing: -.7px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 117%;
}

h3 {
  color: var(--heading);
  letter-spacing: -.7px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 36px;
  font-weight: 700;
  line-height: 117%;
}

h4 {
  color: var(--heading);
  letter-spacing: -.7px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 117%;
}

h5 {
  color: var(--heading);
  letter-spacing: -.3px;
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  line-height: 125%;
}

h6 {
  color: var(--heading);
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 135%;
}

p {
  margin-bottom: 28px;
}

a {
  color: var(--heading);
  text-decoration: underline;
  transition: color .2s;
}

a:hover {
  color: var(--purple);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 36px;
}

li {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
}

strong {
  color: var(--heading);
  font-weight: 700;
}

blockquote {
  border-left: 2px solid var(--border);
  color: var(--heading);
  margin-bottom: 28px;
  margin-left: 18px;
  padding: 0 24px;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 170%;
}

figure {
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  margin-top: 38px;
  margin-bottom: 38px;
  overflow: hidden;
}

figcaption {
  background-color: var(--white);
  text-align: center;
  margin-top: 0;
  padding: 14px 20px;
  font-size: 15px;
  line-height: 170%;
}

.navbar {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.grid-navbar {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.nav {
  align-items: center;
  display: flex;
}

.nav.right {
  justify-content: flex-end;
}

.logo {
  max-width: none;
  height: 50px;
}

.brand {
  justify-content: center;
  align-items: center;
  padding: 5px;
  display: flex;
}

.extra-nav-menu {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--heading);
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: "Inter 24 Pt", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 115%;
}

.nav-link.w--current {
  color: var(--heading);
  font-family: "Inter 24 Pt", sans-serif;
}

.nav-link.w--current:hover {
  color: var(--purple);
}

.navbar-bg {
  z-index: -10;
  background-color: var(--background);
  box-shadow: 0 15px 50px -10px var(--shadow);
  position: absolute;
  inset: 0%;
}

.nav-button {
  border: 2px solid var(--white);
  color: var(--white);
  text-align: center;
  background-color: #0000;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 115%;
  transition: background-color .2s, color .2s;
}

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

.section-navbar {
  font-family: "Inter 24 Pt", sans-serif;
}

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

.section-hero {
  background-color: #2dc35a00;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 0%;
  margin-bottom: 5%;
  padding: 0 30px 140px 0%;
  display: block;
  position: relative;
  overflow: hidden;
}

.section-hero.single-page {
  padding-bottom: 0;
}

.section-hero.single-blog-post {
  padding-bottom: 50px;
}

.section-hero.for-grid {
  align-self: stretch;
  padding-bottom: 85px;
  overflow: hidden;
}

.block-hero {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-end;
  margin-top: 2rem;
  margin-left: -10%;
  padding-bottom: 20px;
  padding-right: 220px;
  display: flex;
  position: absolute;
  top: 138px;
  overflow: hidden;
}

.heading-hero {
  max-width: 1100px;
  font-family: "Inter 18 Pt", sans-serif;
}

.paragraph-hero {
  max-width: 500px;
  margin-bottom: 34px;
  font-family: "Inter 24 Pt", sans-serif;
}

.button {
  background-color: var(--shadow);
  color: var(--white);
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition-property: background-color;
}

.button:hover {
  background-color: var(--purple);
  color: var(--white);
}

.button.outline {
  border: 2px solid var(--heading);
  color: var(--heading);
  background-color: #0000;
  padding: 16px 38px;
  transition: color .2s, background-color .2s;
}

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

.button.orange {
  background-color: var(--purple);
}

.button.orange:hover {
  background-color: var(--heading);
}

.button.white {
  background-color: var(--white);
  color: var(--heading);
  transition: color .2s, background-color .2s;
}

.button.white:hover {
  background-color: var(--purple);
  color: var(--white);
}

.text-accent {
  color: var(--purple);
  background-color: #8056f345;
  border-radius: 8px;
  padding-left: .25em;
  padding-right: .25em;
  display: inline-block;
}

.block-hero-img {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 10vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.app-screen---hero-1 {
  z-index: 10;
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  width: 80%;
  position: relative;
}

.app-screen---hero-2 {
  z-index: 20;
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  width: 26%;
  position: absolute;
  inset: auto 20px -40px auto;
}

.block-circle---hero-2 {
  z-index: 15;
  width: 26%;
  position: absolute;
  inset: auto 20px -40px auto;
}

.image-circle---1 {
  width: 50%;
  margin-top: -34%;
  margin-left: -27%;
  position: absolute;
}

.image-circle---2 {
  width: 30%;
  margin-top: -20%;
  margin-left: -45%;
  position: absolute;
}

.image-circle---3 {
  width: 20%;
  margin-top: 9%;
  margin-left: 22%;
  position: absolute;
}

.block-circle---hero-1 {
  z-index: 5;
  width: 80%;
  position: absolute;
}

.image-circle---4 {
  width: 25%;
  margin-top: -8%;
  margin-left: 83%;
  position: absolute;
}

.image-circle---5 {
  width: 12%;
  margin-top: -14%;
  margin-left: 97%;
  position: absolute;
}

.image-circle---6 {
  width: 8%;
  margin-top: -17%;
  margin-left: 85%;
  position: absolute;
}

.image-circle---7 {
  width: 14%;
  margin-top: 7%;
  margin-left: -7%;
  position: absolute;
}

.image-circle---8 {
  width: 8%;
  margin-top: -2%;
  margin-left: -11%;
  position: absolute;
}

.image-circle---9 {
  width: 6%;
  margin-top: -12%;
  margin-left: -1%;
  position: absolute;
}

.section {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  padding: 85px 30px;
  display: flex;
}

.section.company {
  margin-top: 0%;
}

.block-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  display: flex;
}

.heading {
  object-fit: fill;
  flex: 0 auto;
  align-self: center;
  width: 650px;
  padding-right: 15px;
  font-family: "Inter 18 Pt", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  overflow: visible;
}

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

.paragraph {
  color: var(--paragraphs);
  align-self: center;
  max-width: 300px;
  margin-bottom: 34px;
  font-family: "Inter 24 Pt", sans-serif;
}

.paragraph.white {
  color: #9da3ab;
  max-width: none;
  display: block;
}

.grid-feature {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 20px;
}

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

.icon-feature-bg {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  padding: 25px;
  display: flex;
}

.icon-feature-bg.margin {
  margin-top: -40px;
}

.icon-feature {
  width: 34px;
  height: 34px;
}

.paragraph-feature {
  max-width: 330px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 170%;
}

.heading-feature {
  margin-bottom: 14px;
}

.block-sticky {
  margin-top: 85px;
  margin-bottom: 85px;
  position: sticky;
  top: 150px;
}

.app-screen---a {
  margin-top: 5%;
  margin-bottom: 60%;
  overflow: hidden;
}

.grid-app-screen---a {
  grid-column-gap: 2vw;
  grid-row-gap: 3vw;
  perspective: 1000px;
  grid-template-columns: 1fr 2.2fr;
  place-items: center;
  width: 130%;
  max-width: 1100px;
  padding-top: 80px;
  padding-bottom: 50px;
  padding-left: 30px;
  transform: perspective(1000px);
}

.app-screen---a2 {
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  width: 100%;
}

.app-screen---a1 {
  box-shadow: 0 25px 50px -10px var(--shadow);
  transform-style: preserve-3d;
  border-radius: 24px;
  width: 100%;
  transform: translate3d(0, 0, -30px);
}

.app-screen---a3 {
  box-shadow: 0 25px 50px -10px var(--shadow);
  transform-style: preserve-3d;
  border-radius: 24px;
  width: 44%;
  transform: translate3d(0, 0, 30px);
}

.section-full {
  margin-top: 20%;
}

.grid-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(30px, 1fr) minmax(auto, 500px) minmax(auto, 700px) minmax(30px, 1fr);
  align-items: center;
}

.grid-sequence {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr 1fr .4fr 1fr;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 30px;
}

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

.icon-sequence-bg {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  padding: 25px;
  display: flex;
  position: relative;
}

.icon-sequence {
  width: 34px;
  height: 34px;
}

.number-sequence-bg {
  background-color: var(--purple);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
  position: absolute;
  inset: -10px -10px auto auto;
}

.number-sequence {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.paragraph-sequence {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 170%;
}

.img-arrow---1 {
  width: 100%;
  max-width: 110px;
  margin-top: 15px;
}

.img-arrow---2 {
  width: 100%;
  max-width: 110px;
  margin-top: 40px;
}

.circle---a {
  position: relative;
}

.block-circle---a {
  width: 100%;
}

.image-circle---a1 {
  width: 16%;
  margin-top: 2%;
  margin-left: 44%;
  position: absolute;
}

.image-circle---a3 {
  width: 8%;
  margin-top: -19%;
  margin-left: 36%;
  position: absolute;
}

.image-circle---a2 {
  width: 10%;
  margin-top: -7%;
  margin-left: 57%;
  position: absolute;
}

.grid-2-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  width: 100%;
}

.app-screen---b {
  z-index: 10;
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  width: 100%;
  position: relative;
}

.block-app-screen---b {
  position: relative;
}

.block-circle---b {
  width: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-circle---b1 {
  width: 20%;
  margin-top: -14%;
  margin-left: -5%;
  position: absolute;
}

.image-circle---b2 {
  width: 10%;
  margin-top: 4%;
  margin-left: 13%;
  position: absolute;
}

.image-circle---b3 {
  width: 8%;
  margin-top: 0%;
  margin-left: -7%;
  position: absolute;
}

.block-right {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10%;
}

.check {
  background-color: var(--white);
  box-shadow: 0 10px 20px -5px var(--shadow);
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 14px;
  display: flex;
}

.icon-check {
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: var(--purple);
  width: 15px;
  height: 15px;
}

.block-check {
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.heading-check {
  margin-bottom: 0;
}

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

.grid-row {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-content: start;
  align-items: start;
}

.block-left {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 10%;
}

.testimonial {
  background-color: var(--accent-background);
  border-radius: 24px;
  padding: 30px 40px 35px;
}

.paragraph-testimonial {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 170%;
}

.client {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.client-avatar {
  box-shadow: 0 15px 30px -10px var(--shadow);
  object-fit: cover;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 16px;
}

.name {
  margin-bottom: 2px;
}

.info {
  font-size: 15px;
  line-height: 120%;
}

.collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list-wrapper {
  width: 100%;
  margin-top: 15px;
}

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

.image-blog {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 165px;
  transition: transform .3s, box-shadow .3s;
}

.image-blog:hover {
  box-shadow: 0 5px 10px -5px var(--shadow);
  transform: scale(.98);
}

.image-blog.large {
  height: 340px;
}

.category-blog {
  color: var(--purple);
  background-color: #ff65011f;
  border-radius: 8px;
  margin-top: 27px;
  padding: 5px 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
}

.category-blog.hero {
  margin-top: 0;
  margin-left: 7px;
  margin-right: 7px;
}

.link-heading-blog {
  margin: 14px 10px 16px;
  text-decoration: none;
}

.date-blog {
  opacity: .5;
  color: var(--heading);
  font-size: 15px;
  line-height: 120%;
}

.date-blog.hero {
  margin-left: 7px;
  margin-right: 7px;
}

.heading-blog {
  margin-bottom: 0;
}

.empty-state {
  background-color: var(--accent-background);
  text-align: center;
  border-radius: 12px;
}

.empty-text {
  color: var(--heading);
  padding: 4px;
  line-height: 140%;
}

.link-image-blog {
  width: 100%;
}

.grid-banner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--blue);
  color: var(--blue);
  -webkit-text-stroke-color: var(--blue);
  border-radius: 24px;
  grid-template-rows: auto;
  width: 100%;
}

.text-banner {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 70px 5% 70px 13%;
  display: flex;
}

.form-banner {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-field-white {
  color: var(--white);
  background-color: #ffffff1a;
  border: 1px solid #fff0;
  border-radius: 50px;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.text-field-white:focus {
  border-color: #ffffff40;
}

.text-field-white::placeholder {
  color: #ffffff80;
}

.submit-button-white {
  background-color: var(--white);
  color: var(--heading);
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition: color .2s, background-color .2s;
}

.submit-button-white:hover {
  background-color: var(--purple);
  color: var(--white);
}

.form-block-banner {
  max-width: 420px;
}

.img-banner {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.app-screen---c {
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: relative;
  top: 60px;
  left: 75px;
  overflow: hidden;
}

.block-app-screen---c {
  border-radius: 0 0 24px;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.block-circle---c-down {
  width: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-circle---c1 {
  width: 26%;
  margin-top: -21%;
  margin-left: 3%;
  position: absolute;
}

.image-circle---c2 {
  width: 10%;
  margin-top: -22%;
  margin-left: 30%;
  position: absolute;
}

.block-circle---c-top {
  width: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.image-circle---c3 {
  width: 20%;
  margin-top: 4%;
  margin-left: 76%;
  position: absolute;
}

.image-circle---c4 {
  width: 11%;
  margin-top: -6%;
  margin-left: 67%;
  position: absolute;
}

.success-text {
  color: var(--trans);
  line-height: 140%;
}

.success-message {
  background-color: #12b36126;
  border-radius: 12px;
  padding: 18px 26px;
}

.error-message {
  background-color: #ff65011a;
  border-radius: 12px;
  margin-top: 12px;
  padding: 18px 26px;
}

.error-text {
  color: var(--purple);
  line-height: 140%;
}

.section-footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding: 85px 30px 58px;
  display: flex;
}

.grid-footer {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 2.8fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  margin-bottom: 74px;
}

.footer-down {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.paragraph-footer {
  margin-bottom: 0;
  font-family: Inter;
  font-size: 16px;
  line-height: 170%;
}

.logo-footer {
  height: 60px;
  margin-bottom: 30px;
  display: block;
}

.link-footer {
  color: var(--heading);
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  display: block;
}

.heading-footer {
  opacity: .5;
  color: var(--heading);
  margin-bottom: 26px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.text-footer-down {
  color: #9b9ea5;
  font-family: "Inter 24 Pt", sans-serif;
  font-size: 14px;
  line-height: 130%;
}

.link-footer-down {
  color: var(--heading);
  text-decoration: none;
}

.grid-feature-large {
  grid-column-gap: 30px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.image-feature {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 224px;
}

.grid-faq {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 870px;
  margin-top: 5px;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 12px;
}

.accordion-header {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  transition: padding .2s;
  display: flex;
}

.accordion-header:hover {
  padding-left: 34px;
}

.accordion-content {
  padding-left: 30px;
  padding-right: 30px;
  display: block;
  overflow: hidden;
}

.heading-accordion {
  margin-bottom: 0;
}

.icon-arrow {
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

.paragraph-accordion {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 170%;
}

.grid-pricing {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  margin-top: 5px;
}

.plan {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  text-align: center;
  border-radius: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 42px 14%;
  display: flex;
}

.heading-plan {
  color: var(--purple);
  margin-bottom: 14px;
}

.heading-plan.blue {
  color: var(--blue);
}

.heading-plan.green {
  color: var(--trans);
}

.price-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.price-info {
  color: #9b9ea5;
  font-size: 20px;
  line-height: 100%;
}

.price {
  color: var(--heading);
  margin-left: 4px;
  margin-right: 4px;
  font-size: 55px;
  font-weight: 700;
  line-height: 100%;
}

.paragraph-plan {
  max-width: 270px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 170%;
}

.check-block-plan {
  justify-content: center;
  align-items: center;
  display: flex;
}

.check-plan {
  background-color: #ff65011a;
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 14px;
  display: flex;
}

.check-plan.blue {
  background-color: #5772ff1a;
}

.check-plan.green {
  background-color: #12b3611a;
}

.text-check-plan {
  color: var(--heading);
  text-align: left;
  font-weight: 500;
  line-height: 130%;
}

.grid-check-plan {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: center start;
  width: 100%;
  margin-bottom: 34px;
}

.button-small {
  background-color: var(--heading);
  color: var(--white);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 115%;
  transition-property: background-color;
}

.button-small:hover {
  background-color: var(--purple);
  color: var(--white);
}

.button-small.outline {
  border: 2px solid var(--heading);
  color: var(--heading);
  background-color: #0000;
  padding: 10px 20px;
  transition: color .2s, background-color .2s;
}

.button-small.outline:hover {
  background-color: var(--heading);
  color: var(--white);
}

.button-small.orange {
  background-color: var(--purple);
}

.button-small.orange:hover {
  background-color: var(--heading);
}

.button-small.white {
  background-color: var(--white);
  color: var(--heading);
  transition: color .2s, background-color .2s;
}

.button-small.white:hover {
  background-color: var(--purple);
  color: var(--white);
}

.collection-list-wrapper-large {
  width: 100%;
  margin-top: 0;
}

.collection-list-large {
  grid-column-gap: 30px;
  grid-row-gap: 85px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.blog-info {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 68px;
  display: flex;
}

.heading-hero-blog {
  max-width: 1100px;
  margin-bottom: 14px;
}

.image-blog-main {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  margin-bottom: 68px;
}

.rich-text-block-blog {
  width: 100%;
  max-width: 760px;
}

.image-company {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 480px;
  margin-top: 5%;
}

.grid-company-info {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 70px;
}

.company-info {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 30px;
  display: flex;
}

.heading-company-info {
  margin-bottom: 0;
}

.number-company-info {
  color: var(--purple);
  letter-spacing: -1px;
  margin-bottom: 10px;
  font-size: 55px;
  font-weight: 700;
  line-height: 100%;
}

.page-content {
  width: 100%;
  max-width: 720px;
}

.grid-image-page {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 42px;
  margin-bottom: 70px;
}

.image-page {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
}

.grid-single-page {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  align-items: center;
  width: 100%;
}

.contact-information {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.icon-contact-bg {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 25px;
  display: flex;
}

.icon-contact {
  width: 34px;
  height: 34px;
}

.heading-info-contact {
  margin-bottom: 0;
  font-family: "Inter 18 Pt", sans-serif;
}

.text-info-contact {
  color: var(--heading);
  font-family: "Inter 18 Pt", sans-serif;
  font-size: 15px;
  line-height: 135%;
}

.contact {
  z-index: 10;
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  text-align: center;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 50px 12%;
  display: flex;
  position: relative;
}

.heading-form {
  color: var(--blue);
}

.paragraph-form {
  color: var(--blue);
  max-width: 400px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 170%;
}

.form-block {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.text-field {
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 50px;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

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

.text-field::placeholder {
  color: #3b4555b3;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  display: grid;
}

.submit-button {
  background-color: var(--blue);
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
  border: 1px solid #000;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition: background-color .2s;
}

.submit-button:hover {
  background-color: var(--purple);
  color: var(--white);
}

.submit-button.orange {
  background-color: var(--purple);
}

.submit-button.orange:hover {
  background-color: var(--heading);
}

.textarea {
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 28px;
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 350px;
  margin-bottom: 13px;
  padding: 17px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.textarea:focus {
  border-color: #ff650180;
}

.textarea::placeholder {
  color: #3b4555b3;
}

.block-circle---d-down {
  z-index: 0;
  width: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.block-circle---d-top {
  z-index: 0;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.image-circle---d1 {
  width: 30%;
  margin-top: 14%;
  margin-left: 89%;
  position: absolute;
}

.image-circle---d2 {
  width: 20%;
  margin-top: 5%;
  margin-left: 105%;
  position: absolute;
}

.image-circle---d3 {
  width: 12%;
  margin-top: -6%;
  margin-left: 99%;
  position: absolute;
}

.image-circle---d4 {
  width: 20%;
  margin-top: -13%;
  margin-left: -8%;
  position: absolute;
}

.image-circle---d5 {
  width: 10%;
  margin-top: -25%;
  margin-left: -11%;
  position: absolute;
}

.image-circle---d6 {
  width: 8%;
  margin-top: -40%;
  margin-left: -14%;
  position: absolute;
}

.block-contact {
  position: relative;
}

.grid-account {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  width: 100%;
  min-height: 100vh;
}

.img-account {
  background-image: url('../images/sign-up.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.account {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 106px 50px 70px;
  display: flex;
  position: relative;
}

.block-account {
  width: 100%;
  max-width: 580px;
}

.account-form {
  z-index: 10;
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  text-align: center;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 50px 12%;
  display: flex;
}

.text-form {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 135%;
}

.text-account {
  margin-top: 24px;
  font-size: 14px;
  line-height: 135%;
}

.brand-account {
  justify-content: center;
  align-items: center;
  padding: 5px;
  display: flex;
  position: absolute;
  inset: 33px auto auto;
}

.button-login {
  border: 2px solid var(--heading);
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 16px 40px;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

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

.icon-login {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.text-login {
  font-weight: 500;
  line-height: 120%;
}

.space {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 60px;
}

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

.block-color {
  border: 1px solid var(--border);
  background-color: var(--background);
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 15px;
  display: flex;
}

.block-color.border {
  background-color: var(--border);
}

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

.block-color.accent-background {
  background-color: var(--accent-background);
}

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

.block-color.paragraphs {
  background-color: var(--paragraphs);
}

.block-color.orange {
  background-color: var(--purple);
}

.block-color.blue {
  background-color: var(--blue);
}

.block-color.green {
  background-color: var(--trans);
}

.block-color.shadow {
  background-color: var(--shadow);
}

.text-color {
  color: var(--heading);
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
}

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

.buttons {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 14px 18px;
}

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

.grid-button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  place-items: center start;
}

.grid-image-licensing {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.image-licensing {
  box-shadow: 0 25px 50px -10px var(--shadow);
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 300px;
}

.circle-licensing {
  width: 28%;
  margin-left: -6%;
  margin-right: -6%;
}

.block-circle-licensing {
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.block-icon-licensing {
  display: inline-block;
}

.icon-licensing-bg {
  background-color: var(--white);
  box-shadow: 0 25px 50px -10px var(--shadow);
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  margin-right: 18px;
  padding: 25px;
  display: inline-block;
}

.icon-licensing {
  width: 34px;
  height: 34px;
}

.font {
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  margin-bottom: 10px;
  padding: 25px 30px;
  display: flex;
}

.dm-sans {
  margin-bottom: 0;
}

.link-font {
  margin-right: 25px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 120px 30px 40px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 260px;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: stretch;
  display: grid;
}

.body {
  background-color: var(--background);
  overflow: visible;
}

.hero {
  color: var(--heading);
  text-align: center;
  flex: 0 auto;
  margin-bottom: 9px;
  margin-left: 8px;
  padding: 27px 0 20px;
  font-family: "Inter 18 Pt", sans-serif;
  font-size: 6rem;
  font-weight: 600;
  display: block;
}

.div-block-2 {
  color: var(--white);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#ff70ec, #8100d6 98%);
  -webkit-background-clip: text;
  background-clip: text;
  height: auto;
  margin-right: 45px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 0;
  font-family: "Inter 18 Pt", sans-serif;
  font-size: 80px;
  font-weight: 600;
  overflow: visible;
}

.div-block-3 {
  color: var(--white);
}

.div-block-4 {
  color: var(--white);
  margin-bottom: 0;
  margin-left: 0;
  margin-right: -174px;
  padding: 20px 0;
  font-family: "Inter 18 Pt", sans-serif;
  font-size: 6rem;
  font-weight: 600;
}

.spline-scene {
  box-sizing: border-box;
  object-fit: fill;
  width: 120svw;
  margin-top: -25%;
  padding-top: 0;
  overflow: hidden;
}

.spline-scene-2 {
  align-self: auto;
  width: 99.999vw;
  height: auto;
  margin-top: -10%;
  margin-left: 2%;
  overflow: visible;
}

.section2 {
  background-color: #ca4a4a00;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 700px;
  margin-top: 0%;
  padding: 0 30px;
  display: flex;
  overflow: visible;
}

.section2.complex {
  margin-top: -21%;
}

.link {
  font-family: "Inter 24 Pt", sans-serif;
}

.main-button-n {
  border-radius: 10em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1px;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px #912e7b99;
}

.main-button-n:hover {
  box-shadow: 0 0 80px #912e7b;
}

.button-bg {
  z-index: 1;
  background-color: #151515;
  border-radius: 10em;
  display: block;
  position: relative;
}

.button-inside {
  z-index: 2;
  grid-column-gap: .5em;
  opacity: 1;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  background-color: #151515;
  background-image: linear-gradient(90deg, #ffffffb3, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.7rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 115%;
  display: flex;
  position: static;
  inset: 1%;
}

.border-gradient {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 12rem;
  position: absolute;
  transform: rotate(-55deg);
}

.animated-gradient_embed {
  display: none;
}

.animated-gradient {
  font-family: "Inter 18 Pt", sans-serif;
  font-size: 100px;
  line-height: 100%;
}

.heading-2 {
  margin-bottom: 0;
  padding-right: 59px;
  font-size: 6rem;
  font-weight: 600;
  line-height: 100%;
}

.tdr-text {
  font-family: "Inter 18 Pt", sans-serif;
  font-size: 15px;
  font-weight: 500;
  display: inline;
}

.tdr-text.colored {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #15d0b4, #e022e6);
  -webkit-background-clip: text;
  background-clip: text;
}

.div-block {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  margin-right: 0;
  display: flex;
}

.track-overlay {
  z-index: 1;
  background-image: linear-gradient(#f9f5ff, #0000 50%, #f9f5ff);
  position: absolute;
  inset: 0%;
}

.track-overlay.unclickable {
  background-image: linear-gradient(#0d121b, #0000 50%, #0d121b);
  width: 100%;
  height: 100%;
  position: absolute;
}

.heading-large {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Inter 18 Pt", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.25;
}

.heading-large.rotate-text {
  color: #dcdfea;
  white-space: nowrap;
  font-weight: 600;
}

.infinite-rotation-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.track-vertical {
  flex-direction: column;
  display: block;
  position: absolute;
}

.vertical-scroll-wrapper {
  flex-direction: column;
  align-self: auto;
  align-items: flex-start;
  width: 43ch;
  font-family: "Inter 18 Pt", sans-serif;
  position: relative;
}

.text-rotation-wrapper {
  color: var(--white);
  margin-left: 5%;
  display: flex;
}

.main-wrapper {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.main-wrapper.taller {
  width: 100%;
  height: 100vh;
}

.image-circle---10 {
  width: 25%;
  margin-top: -8%;
  margin-left: 83%;
  position: absolute;
}

.image-circle---11 {
  width: 12%;
  margin-top: -14%;
  margin-left: 97%;
  position: absolute;
}

.image-circle---12 {
  width: 8%;
  margin-top: -17%;
  margin-left: 85%;
  position: absolute;
}

.image-circle---13 {
  width: 14%;
  margin-top: 7%;
  margin-left: -7%;
  position: absolute;
}

.image-circle---14 {
  width: 8%;
  margin-top: -2%;
  margin-left: -11%;
  position: absolute;
}

.image-circle---15 {
  width: 6%;
  margin-top: -12%;
  margin-left: -1%;
  position: absolute;
}

.image-circle---16 {
  width: 50%;
  margin-top: -34%;
  margin-left: -27%;
  position: absolute;
}

.image-circle---17 {
  width: 30%;
  margin-top: -20%;
  margin-left: -45%;
  position: absolute;
}

.image-circle---18 {
  width: 20%;
  margin-top: 9%;
  margin-left: 22%;
  position: absolute;
}

.button-2 {
  color: #fff;
  background-color: #0c1d37;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition-property: background-color;
}

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

.image-circle---19 {
  width: 8%;
  margin-top: -17%;
  margin-left: 85%;
  position: absolute;
}

.image-circle---20 {
  width: 12%;
  margin-top: -14%;
  margin-left: 97%;
  position: absolute;
}

.heading-hero-2 {
  max-width: 1100px;
}

.image-circle---21 {
  width: 8%;
  margin-top: -2%;
  margin-left: -11%;
  position: absolute;
}

.image-circle---22 {
  width: 50%;
  margin-top: -34%;
  margin-left: -27%;
  position: absolute;
}

.image-circle---23 {
  width: 6%;
  margin-top: -12%;
  margin-left: -1%;
  position: absolute;
}

.image-circle---24 {
  width: 14%;
  margin-top: 7%;
  margin-left: -7%;
  position: absolute;
}

.app-screen---hero-3 {
  z-index: 10;
  border-radius: 24px;
  width: 80%;
  position: relative;
  box-shadow: 0 25px 50px -10px #642c0012;
}

.block-hero-img-2 {
  background-color: var(--trans);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 10%;
  display: flex;
  position: relative;
}

.image-circle---25 {
  width: 30%;
  margin-top: -20%;
  margin-left: -45%;
  position: absolute;
}

.text-accent-2 {
  color: purple;
  background-color: #ff65011f;
  border-radius: 8px;
  padding-left: .25em;
  padding-right: .25em;
  display: inline-block;
}

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

.image-circle---26 {
  width: 20%;
  margin-top: 9%;
  margin-left: 22%;
  position: absolute;
}

.section-hero-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 190px 30px 140px;
  display: flex;
}

.section-hero-2.for-grid {
  padding-bottom: 85px;
  overflow: hidden;
}

.section-hero-2.single-page {
  padding-bottom: 0;
}

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

.app-screen---hero-4 {
  z-index: 20;
  border-radius: 24px;
  width: 26%;
  position: absolute;
  inset: auto 20px -40px auto;
  box-shadow: 0 25px 50px -10px #642c0012;
}

.spline-scene-3 {
  object-fit: scale-down;
  width: 120%;
  margin-left: -20%;
  overflow: hidden;
}

.section-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 85px 30px;
  display: flex;
}

.testimonial-2 {
  background-color: #fbf2eb;
  border-radius: 24px;
  padding: 30px 40px 35px;
}

.client-avatar-2 {
  object-fit: cover;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 16px;
  box-shadow: 0 15px 30px -10px #642c0012;
}

.heading-3 {
  color: var(--background);
  font-size: 40px;
}

.heading-3.white {
  color: #fff;
  font-family: "Inter 18 Pt", sans-serif;
  font-weight: 600;
}

.paragraph-2 {
  max-width: 470px;
  margin-bottom: 34px;
}

.paragraph-2.white {
  color: #9da3ab;
}

.app-screen---b-2 {
  z-index: 10;
  border-radius: 24px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px -10px #642c0012;
}

.check-2 {
  background-color: #302f2f;
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 14px;
  display: flex;
  box-shadow: 0 10px 20px -5px #642c0012;
}

.app-screen---c-2 {
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: relative;
  top: 60px;
  left: 75px;
}

.text-banner-2 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px 5% 70px 13%;
  display: flex;
}

.grid-banner-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-radius: 24px;
  grid-template-rows: auto;
  width: 100%;
  max-width: 1300px;
}

.block-app-screen---c-2 {
  border-radius: 0 0 24px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.submit-button-white-2 {
  color: #0c1d37;
  background-color: #fff;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition: color .2s, background-color .2s;
}

.submit-button-white-2:hover {
  color: #fff;
  background-color: #ff6501;
}

.text-field-white-2 {
  color: #fff;
  background-color: #ffffff1a;
  border: 1px solid #fff0;
  border-radius: 50px;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.text-field-white-2:focus {
  border-color: #ffffff40;
}

.text-field-white-2::placeholder {
  color: #ffffff80;
}

.error-text-2 {
  color: #ff6501;
  line-height: 140%;
}

.success-text-2 {
  color: #12b361;
  line-height: 140%;
}

.app-screen---c-3 {
  color: var(--background);
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: 24px;
  width: 75%;
  max-width: 500px;
  height: 100%;
  margin-left: 25%;
  position: relative;
  top: 60px;
  left: 75px;
  overflow: clip;
}

.block-app-screen---c-3 {
  border-radius: 0 0 24px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.submit-button-white-3 {
  color: #0c1d37;
  background-color: #fff;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition: color .2s, background-color .2s;
}

.submit-button-white-3:hover {
  color: #fff;
  background-color: #ff6501;
}

.text-field-white-3 {
  color: #fff;
  background-color: #ffffff1a;
  border: 1px solid #fff0;
  border-radius: 50px;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.text-field-white-3:focus {
  border-color: #ffffff40;
}

.text-field-white-3::placeholder {
  color: #ffffff80;
}

.app-screen---c-4 {
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: relative;
  top: 60px;
  left: 75px;
}

.grid-banner-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #0c1d37;
  border-radius: 24px;
  grid-template-rows: auto;
  width: 100%;
}

.block-app-screen---c-4 {
  border-radius: 0 0 24px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.submit-button-white-4 {
  color: #0c1d37;
  background-color: #fff;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition: color .2s, background-color .2s;
}

.submit-button-white-4:hover {
  color: #fff;
  background-color: #ff6501;
}

.text-field-white-4 {
  color: #fff;
  background-color: #ffffff1a;
  border: 1px solid #fff0;
  border-radius: 50px;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.text-field-white-4:focus {
  border-color: #ffffff40;
}

.text-field-white-4::placeholder {
  color: #ffffff80;
}

.div-block-5 {
  background-color: var(--trans);
  background-image: linear-gradient(#0000, #0d121b 43%), radial-gradient(circle at 50% 100%, #0d121b 59%, #fff0 63%, #75757500);
  width: 100%;
  min-width: 200px;
  height: 100%;
  min-height: 200px;
  margin-top: 15%;
  position: absolute;
  overflow: hidden;
}

.container {
  order: -1;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 15% 0 0%;
  display: block;
  position: relative;
}

.image {
  background-color: var(--trans);
  vertical-align: top;
  width: 100%;
  height: 100%;
}

.logo-2 {
  z-index: 10;
  object-fit: fill;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.layer_6 {
  z-index: 7;
  background-image: url('../images/Fire_Watch_Layer_6.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.hero-container {
  z-index: 99;
  background-color: #feddc8;
  width: 100%;
  height: 100vh;
  display: block;
  position: relative;
  overflow: hidden;
}

.layer_2 {
  z-index: 3;
  background-image: url('../images/Fire_Watch_Layer_2.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.layer_3 {
  z-index: 4;
  background-image: url('../images/Fire_Watch_Layer_3.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.image-2 {
  margin-top: 80px;
  margin-right: 2px;
}

.layer_0 {
  z-index: 1;
  background-image: url('../images/Fire_Watch_Layer_0.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.layer_5 {
  z-index: 6;
  background-image: url('../images/Fire_Watch_Layer_5.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.layer_1 {
  z-index: 2;
  background-image: url('../images/Fire_Watch_Layer_1.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.layer_4 {
  z-index: 5;
  background-image: url('../images/Fire_Watch_Layer_4.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.div-block-6 {
  justify-content: center;
  align-self: auto;
  width: 100%;
  height: auto;
  margin-top: 0%;
  display: flex;
  overflow: visible;
}

.div-block-7 {
  width: 100%;
  min-width: 0%;
  height: 100%;
}

.icon-contact-bg-2 {
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 25px;
  display: flex;
  box-shadow: 0 25px 50px -10px #642c0012;
}

.paragraph-hero-2 {
  max-width: 500px;
  margin-bottom: 34px;
  font-family: "Inter 24 Pt", sans-serif;
}

.heading-hero-3 {
  max-width: 1100px;
}

.text-info-contact-2 {
  color: #0c1d37;
  font-size: 15px;
  line-height: 135%;
}

.contact-2 {
  z-index: 10;
  text-align: center;
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 50px 12%;
  display: flex;
  position: relative;
  box-shadow: 0 25px 50px -10px #642c0012;
}

.heading-form-2 {
  color: var(--background);
  font-family: "Inter 18 Pt", sans-serif;
}

.heading-info-contact-2 {
  margin-bottom: 0;
}

.text-field-2 {
  color: #0c1d37;
  background-color: #fff;
  border: 1px solid #efe2d7;
  border-radius: 50px;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.text-field-2:focus {
  border-color: #ff650180;
}

.text-field-2::placeholder {
  color: #3b4555b3;
}

.submit-button-2 {
  color: #fff;
  background-color: #0c1d37;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition: background-color .2s;
}

.submit-button-2:hover {
  color: #fff;
  background-color: #ff6501;
}

.textarea-2 {
  color: #0c1d37;
  background-color: #fff;
  border: 1px solid #efe2d7;
  border-radius: 28px;
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 350px;
  margin-bottom: 13px;
  padding: 17px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.textarea-2:focus {
  border-color: #ff650180;
}

.textarea-2::placeholder {
  color: #3b4555b3;
}

.paragraph-form-2 {
  color: var(--background);
  max-width: 400px;
  margin-bottom: 22px;
  font-family: "Inter 24 Pt", sans-serif;
  font-size: 16px;
  line-height: 170%;
}

.heading-hero-4 {
  max-width: 1100px;
}

.text-info-contact-3 {
  color: #0c1d37;
  font-size: 15px;
  line-height: 135%;
}

.contact-3 {
  z-index: 10;
  text-align: center;
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 50px 12%;
  display: flex;
  position: relative;
  box-shadow: 0 25px 50px -10px #642c0012;
}

.text-field-3 {
  color: #0c1d37;
  background-color: #fff;
  border: 1px solid #efe2d7;
  border-radius: 50px;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 18px;
  line-height: 120%;
  transition: border-color .2s;
}

.text-field-3:focus {
  border-color: #ff650180;
}

.text-field-3::placeholder {
  color: #3b4555b3;
}

.submit-button-3 {
  color: #fff;
  background-color: #0c1d37;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  transition: background-color .2s;
}

.submit-button-3:hover {
  color: #fff;
  background-color: #ff6501;
}

.paragraph-form-3 {
  max-width: 400px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 170%;
}

.form-success-message {
  color: #176534;
  letter-spacing: -.015rem;
  background-color: #dcfce6;
  border-radius: 16px;
  padding: 12px 16px;
}

.absolute {
  position: absolute;
}

.absolute.bg-gradient {
  border-radius: 100%;
}

.absolute.bg-gradient._3 {
  opacity: .4;
  filter: blur(20px);
  pointer-events: none;
  background-image: radial-gradient(circle, #77193a, #77193a00);
  width: 340px;
  height: 340px;
  inset: auto auto -10% -10%;
}

.absolute.bg-gradient._4 {
  opacity: .3;
  filter: blur(60px);
  pointer-events: none;
  background-image: radial-gradient(circle, #421c86, #421c8600);
  width: 755px;
  height: 860px;
  inset: -40% -25% auto auto;
}

.absolute.bg-gradient._5 {
  opacity: .3;
  filter: blur(20px);
  pointer-events: none;
  background-image: radial-gradient(circle, #77193a, #77193a00);
  width: 340px;
  height: 380px;
  inset: -10% -10% auto auto;
}

.absolute.bg-gradient._1 {
  opacity: .1;
  filter: blur(136px);
  pointer-events: none;
  background-color: #411c86;
  width: 1230px;
  height: 1230px;
  inset: 10% auto auto -20%;
}

.absolute.bg-gradient._2 {
  opacity: .4;
  filter: blur(60px);
  pointer-events: none;
  background-image: radial-gradient(circle, #421c86, #421c8600);
  width: 800px;
  height: 780px;
  inset: auto auto -25% -25%;
}

.tac {
  text-align: center;
}

.relative {
  position: relative;
}

.relative.z-index-top {
  z-index: 9999;
  display: none;
}

.wrapper {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.headline {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.headline.xl {
  letter-spacing: -.125rem;
  font-size: 3.5rem;
  line-height: 1.1;
}

.headline.xl.tc-white-100 {
  min-width: 400px;
}

.input {
  box-shadow: none;
  letter-spacing: 0;
  border: 2px solid #e4e7eb;
  max-width: 100%;
  min-height: 32px;
  margin-bottom: 0;
  font-size: .875rem;
}

.input:hover {
  background-color: #f9fafb;
}

.input:active {
  background-color: #fff;
  border-color: #9c7ff4;
}

.input:focus {
  background-color: #fff;
  border-width: 2px;
  border-color: #9c7ff4;
}

.input::placeholder {
  color: #9ba3af;
}

.input.ghost {
  color: #fff;
  background-color: #0000;
  border-color: #ffffff3d;
}

.input.ghost::placeholder {
  color: #ffffff8f;
}

.body-text-m {
  letter-spacing: -.015rem;
  font-size: 1rem;
  line-height: 1.5;
}

.row {
  flex-wrap: wrap;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.row.ahc {
  justify-content: center;
  align-items: center;
}

.section-3 {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.page-wrapper {
  height: 100%;
}

.g-inline-m {
  grid-column-gap: 12px;
  display: flex;
}

.button-3 {
  grid-column-gap: 2px;
  color: #fff;
  text-align: center;
  background-color: #111827;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  min-width: 88px;
  height: 32px;
  padding: 4px 12px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: flex;
  box-shadow: 0 2px 2px #0000000a;
}

.button-3:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #9c7ff4;
}

.button-3[data-wf-focus-visible] {
  outline-offset: 2px;
  outline: 2px solid #9c7ff4;
}

.button-3.outline {
  color: #000000e0;
  background-color: #fff;
  border: 1px solid #e4e7eb;
}

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

.button-3.outline:active {
  box-shadow: none;
  background-color: #f9fafb;
}

.button-3.outline:focus-visible {
  outline-offset: 0px;
  outline-width: 3px;
}

.button-3.outline[data-wf-focus-visible] {
  outline-offset: 0px;
  outline-width: 3px;
}

.col {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.col.lg5 {
  width: 41.6667%;
}

.col.lg8 {
  width: 66.6667%;
}

.content-wrapper {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.spacer {
  width: 100%;
  height: 0;
}

.form-block-2 {
  width: 100%;
  margin-bottom: 0;
}

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

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

.asset.size-s {
  width: 48px;
  height: 48px;
}

.bgc-black-100 {
  background-color: #000;
}

.bgc-black-100.relative.overflow-hidden {
  background-color: var(--background);
  background-color: #0d121b;
  height: 100%;
  min-height: 1000px;
  overflow: hidden;
}

.form-inline {
  grid-column-gap: 8px;
  flex-direction: row;
}

.form-error-message {
  color: #981b1b;
  text-align: center;
  letter-spacing: -.015rem;
  background-color: #fee2e1;
  border-radius: 8px;
  margin-top: 24px;
  padding: 12px 16px;
}

.section-4 {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.section-4.full-screen.avc {
  height: 100%;
  min-height: 1500px;
}

.button-4 {
  grid-column-gap: 2px;
  color: #fff;
  text-align: center;
  background-color: #111827;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  min-width: 88px;
  height: 32px;
  padding: 4px 12px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: flex;
  box-shadow: 0 2px 2px #0000000a;
}

.button-4:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #9c7ff4;
}

.button-4[data-wf-focus-visible] {
  outline-offset: 2px;
  outline: 2px solid #9c7ff4;
}

.button-4.outline {
  color: #000000e0;
  background-color: #fff;
  border: 1px solid #e4e7eb;
}

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

.button-4.outline:active {
  box-shadow: none;
  background-color: #f9fafb;
}

.button-4.outline:focus-visible {
  outline-offset: 0px;
  outline-width: 3px;
}

.button-4.outline[data-wf-focus-visible] {
  outline-offset: 0px;
  outline-width: 3px;
}

.form-block-3 {
  width: 100%;
  margin-bottom: 0;
}

.image-3 {
  width: 200px;
}

.image-4 {
  border: 1px solid #fff;
  width: 200px;
  max-width: none;
  height: 200px;
}

.container-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  max-width: none;
  margin-top: 100px;
  margin-bottom: 10%;
  display: flex;
}

.image-5 {
  border: 1px solid #ca808000;
  width: 100px;
  max-width: none;
  padding-left: 2%;
}

.text-block {
  color: var(--greytext);
  width: 300px;
  font-family: "Inter 24 Pt", sans-serif;
}

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

.heading-hero-5 {
  max-width: 1100px;
  font-family: "Inter 18 Pt", sans-serif;
}

.text-accent-3 {
  color: #ff6501;
  background-color: #ff65011f;
  border-radius: 8px;
  padding-left: .25em;
  padding-right: .25em;
  display: inline-block;
}

.paragraph-3, .paragraph-4, .paragraph-5, .block-quote {
  font-family: "Inter 24 Pt", sans-serif;
}

.heading-4 {
  font-family: "Inter 18 Pt", sans-serif;
}

.privacy_section {
  background-color: #eff2ff;
  margin-top: 80px;
  padding: 100px 20px;
}

.privacy_content_wrapper {
  background-color: #fff;
  border: 1px solid #6969691a;
  border-radius: 20px;
  padding: 24px 40px;
  overflow: visible;
}

.legal_basis_text {
  color: #696969;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 4px;
  font-weight: 700;
  line-height: 1.6;
}

.datatable_mobile {
  display: none;
}

.header_section_wrapper {
  color: var(--background);
  align-items: flex-start;
  display: flex;
}

.read_more_data_wrapper {
  flex: 1;
  padding-left: 24px;
  display: block;
}

.content_wrapper {
  color: var(--background);
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  padding-left: 40px;
  display: flex;
}

.legal_basis_wrapper {
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.datatable_header_atom {
  align-items: center;
  width: 22%;
  height: 100%;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.datatable_header_atom.data_collected_shared {
  width: 26%;
}

.datatable_header_atom.data_collect {
  justify-content: center;
  width: 25%;
}

.datatable_header_atom.service_provider {
  width: 20%;
  height: 100%;
}

.datatable_header_atom.service_provider.third_party {
  width: 18%;
}

.datatable_header_atom.data_give {
  justify-content: center;
  width: 25%;
}

.datatable_header_atom.key_cookie {
  width: 30%;
  height: 100%;
}

.datatable_header_atom.purpose {
  width: 50%;
  height: 100%;
}

.datatable_header_atom.purpose.third_party {
  width: 34%;
}

.container-3 {
  z-index: 2;
  text-align: left;
  flex: 0 auto;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.datatable_text {
  color: #696969;
  margin-bottom: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.8;
}

.datatable_text.bold {
  font-weight: 700;
}

.sticky_menu_wrapper {
  z-index: 0;
  background-color: #0000;
  flex-direction: column;
  height: 400px;
  margin-bottom: 0;
  padding: 0 24px 0 0;
  display: flex;
  position: sticky;
  top: 182px;
  overflow: scroll;
}

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

.datatable_line {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  display: flex;
}

.small_datatable_header_atom {
  justify-content: center;
  width: 25%;
  padding: 8px;
  display: flex;
}

.small_datatable_header_atom.action {
  justify-content: flex-start;
  width: 50%;
  padding: 16px;
}

.divider {
  background-color: #69696926;
  border-radius: 2px;
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.divider.datatable {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.legal_bases_meaning_wrapper {
  flex: 1;
  height: auto;
  margin-top: 0;
  padding-left: 24px;
  overflow: hidden;
}

.sticky_menu_item {
  color: #696969;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  transition: color .2s;
}

.sticky_menu_item:hover {
  color: #4c14e9;
}

.sticky_menu_item.w--current {
  cursor: pointer;
}

.item_icon_header {
  flex-direction: row-reverse;
  align-items: flex-start;
  display: flex;
}

.privacy-bloc {
  align-items: stretch;
  display: flex;
}

.privacy-bloc.how_and_why, .privacy-bloc.our-role, .privacy-bloc.privacy_choices_rights, .privacy-bloc.cookies {
  flex-direction: column;
}

.privacy-bloc.collect-data {
  flex-direction: column;
  align-items: flex-start;
}

.privacy-bloc.data_storage, .privacy-bloc.third_parties, .privacy-bloc.datatype, .privacy-bloc.making_policy_great {
  flex-direction: column;
}

.list_datatable {
  color: #696969;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 12px;
  line-height: 20px;
}

.datatable_wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
}

.item_icon_wrapper {
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.accordion_content {
  flex-direction: row-reverse;
  align-items: stretch;
  height: auto;
  margin-top: 8px;
  display: flex;
  overflow: hidden;
}

.check-3 {
  background-color: #0000;
  border-radius: 0;
  width: 16px;
  height: 16px;
}

.check-3.on {
  background-color: #0000;
  background-image: url('../images/Check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  width: 16px;
  height: 16px;
}

.check-3.off {
  background-color: #0000;
  background-image: url('../images/Cross.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
}

.list_item_privacy {
  color: #696969;
  padding-bottom: 0;
  font-size: 15px;
  line-height: 22px;
}

.list_item_privacy.datatable_text {
  font-size: 12px;
  line-height: 1.8;
}

.data_reason_wrapper {
  flex-direction: column;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.item_icon_text {
  flex-direction: column;
  margin-left: 0;
  display: flex;
}

.mini_button {
  color: #fff;
  cursor: pointer;
  background-color: #4c14e9;
  border-radius: 4px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 4px 8px;
  font-size: 10px;
  line-height: 1.4;
  transition: background-color .2s, color .2s;
}

.mini_button:hover {
  color: #4c14e9;
  background-color: #eff2ff;
}

.mini_button.privacy_policy {
  margin-top: 4px;
  margin-left: 0;
  margin-right: 0;
}

.accordion_trigger {
  cursor: pointer;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
}

.read_more_line {
  object-fit: none;
  object-position: 100% 0%;
  background-color: #eff2ff;
  border-radius: 16px;
  flex: 0 auto;
  width: 8px;
  margin-left: 16px;
  display: flex;
  overflow: hidden;
}

.h5_alt {
  color: #696969;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.small_datatable_line {
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.arrow {
  width: 10px;
  height: 10px;
  margin-left: 4px;
  transform: rotate(0);
}

.privacy_grid {
  grid-column-gap: 0px;
  grid-template: "Lateral-Menu Content"
  / .5fr 1.25fr;
}

.intro_wrapper {
  text-align: center;
}

.datatable_header {
  background-color: #6969691a;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 32px;
  display: flex;
}

.datatable_line_atom {
  align-items: flex-start;
  width: 20%;
  height: auto;
  padding: 16px;
  display: flex;
}

.datatable_line_atom.place_processing {
  width: 22%;
}

.datatable_line_atom.data_give {
  justify-content: center;
  align-items: center;
  width: 25%;
}

.datatable_line_atom.purpose {
  width: 50%;
}

.datatable_line_atom.purpose.third_party {
  width: 34%;
}

.datatable_line_atom.data_collect {
  justify-content: center;
  align-items: center;
  width: 25%;
}

.datatable_line_atom.key_cookies {
  width: 30%;
}

.datatable_line_atom.service_provider {
  flex-direction: column;
  width: 18%;
}

.datatable_line_atom.data_collected_shared {
  width: 26%;
}

.datatable_category_name {
  color: #696969;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  line-height: 12px;
  display: flex;
}

.read_more_content_wrapper {
  flex: 1;
  padding-left: 24px;
  overflow: hidden;
}

.small_datatable_line_atom {
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 16px;
  display: flex;
}

.small_datatable_line_atom.action {
  justify-content: flex-start;
  width: 50%;
}

.legal_bases_meaning_tilte_wrapper {
  margin-bottom: 22px;
}

.privacy_icon {
  width: auto;
  max-width: 32px;
  height: auto;
  max-height: 32px;
  margin-right: 16px;
}

.privacy_icon.top-margin {
  margin-top: 6px;
}

.privacy_icon.top-margin.big {
  margin-top: 10px;
}

.read_more_text {
  color: #4c14e9;
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.small_dt_header {
  background-color: #6969691a;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.paragraph_centered {
  color: var(--background);
  text-align: center;
}

.section-5 {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.section-5.full-screen.avc {
  height: 100%;
  min-height: 1000px;
}

.image-6 {
  width: 200px;
}

.preloader {
  z-index: 999;
  background-color: #ec3a5a00;
  justify-content: center;
  align-items: center;
  display: block;
  position: fixed;
  inset: 0%;
}

.preloader-icon {
  background-color: var(--background);
  width: 200px;
  margin-top: 20%;
  margin-left: auto;
  margin-right: auto;
}

.section-6 {
  z-index: 2;
  background-color: var(--background);
  width: 100%;
  height: 100%;
  position: fixed;
}

.div-block-8 {
  margin-top: 40px;
  padding-bottom: 40px;
}

.code-embed {
  width: 70vw;
  height: 140vh;
  min-height: 0%;
  margin-top: 10%;
  margin-bottom: 10%;
}

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

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 17px;
  }

  .nav-link {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-menu {
    background-color: var(--background);
    box-shadow: 0 25px 50px -10px var(--shadow);
    padding-bottom: 20px;
  }

  .menu-button {
    color: var(--heading);
    border-radius: 50px;
    margin-left: 5px;
    padding: 10px;
    font-size: 22px;
    line-height: 100%;
    transition: color .2s, background-color .2s;
  }

  .menu-button.w--open {
    background-color: var(--purple);
    color: var(--white);
  }

  .section-hero {
    width: 100%;
    padding-top: 5%;
    padding-bottom: 120px;
    padding-right: 0;
  }

  .section-hero.single-blog-post {
    padding-bottom: 40px;
  }

  .section-hero.for-grid {
    padding-bottom: 75px;
  }

  .block-hero {
    margin-top: -4rem;
  }

  .block-hero-img {
    margin-top: 0;
  }

  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .heading {
    font-size: 45px;
  }

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

  .block-sticky {
    margin-top: 75px;
    margin-bottom: 75px;
  }

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

  .grid-3-columns {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

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

  .block-left {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 12% 40px;
    display: flex;
  }

  .collection-list {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .image-blog {
    height: 25vw;
  }

  .image-blog.large {
    height: 28vw;
  }

  .section-footer {
    padding-top: 75px;
    padding-bottom: 48px;
  }

  .grid-footer {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 64px;
  }

  .grid-feature-large {
    grid-column-gap: 20px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .image-feature {
    height: 25vw;
  }

  .grid-pricing {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .collection-list-large {
    grid-column-gap: 20px;
    grid-row-gap: 75px;
  }

  .blog-info, .image-blog-main {
    margin-bottom: 58px;
  }

  .image-company {
    height: 40vw;
  }

  .grid-company-info {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 20px;
    margin-bottom: 65px;
  }

  .number-company-info {
    font-size: 45px;
  }

  .grid-image-page {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 37px;
    margin-bottom: 65px;
  }

  .grid-single-page {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .block-contact {
    width: 100%;
    max-width: 650px;
  }

  .hero, .div-block-4 {
    font-size: 4rem;
  }

  .spline-scene-2 {
    aspect-ratio: auto;
  }

  .section2 {
    margin-top: 0%;
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .section2.complex {
    margin-top: -40%;
  }

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

  .tdr-text {
    font-size: 15px;
  }

  .track-overlay.unclickable {
    height: auto;
  }

  .heading-large {
    font-size: 2.25rem;
  }

  .heading-large.rotate-text._9 {
    font-size: 45px;
  }

  .heading-large.rotate-text._1 {
    font-size: 45px;
    line-height: 1;
  }

  .heading-large.rotate-text._4, .heading-large.rotate-text._5, .heading-large.rotate-text._17, .heading-large.rotate-text._2, .heading-large.rotate-text._14, .heading-large.rotate-text._3, .heading-large.rotate-text._11, .heading-large.rotate-text._12, .heading-large.rotate-text._16, .heading-large.rotate-text._7, .heading-large.rotate-text._15, .heading-large.rotate-text._13, .heading-large.rotate-text._6, .heading-large.rotate-text._10, .heading-large.rotate-text._8, .heading-large.rotate-text._18 {
    font-size: 45px;
  }

  .track-vertical {
    line-height: 150%;
  }

  .vertical-scroll-wrapper {
    width: auto;
    height: 3.2rem;
    font-size: 3rem;
    font-weight: 600;
    overflow: hidden;
  }

  .text-rotation-wrapper {
    flex-direction: column;
  }

  .image-circle---10 {
    margin-top: 35%;
  }

  .block-hero-img-2 {
    margin-top: 90px;
  }

  .section-hero-2 {
    padding-top: 170px;
    padding-bottom: 120px;
  }

  .section-hero-2.for-grid {
    padding-bottom: 75px;
  }

  .spline-scene-3 {
    width: 200%;
  }

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

  .container {
    height: auto;
    margin-top: 10%;
  }

  .div-block-6 {
    margin-top: 25%;
  }

  .headline.xl {
    font-size: 3rem;
  }

  .container-2 {
    margin-top: 200px;
  }

  .image-5 {
    width: 60px;
  }

  .text-block {
    text-align: left;
    font-size: 15px;
  }

  .privacy_section {
    margin-top: 99px;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .datatable_mobile {
    display: none;
  }

  .datatable_header_atom.data_collected_shared {
    align-items: center;
    width: 26%;
  }

  .datatable_header_atom.place_processing {
    width: 18%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .datatable_header_atom.service_provider {
    width: 24%;
  }

  .datatable_header_atom.service_provider.third_party {
    flex-wrap: wrap;
    width: 26%;
    overflow: visible;
  }

  .datatable_header_atom.purpose {
    width: 46%;
  }

  .datatable_header_atom.purpose.third_party {
    width: 30%;
  }

  .container-3 {
    width: 90%;
  }

  .sticky_menu_wrapper {
    flex-direction: row;
    height: auto;
    display: none;
  }

  .small_data_table {
    display: none;
  }

  .item_icon_header {
    flex-direction: row-reverse;
    align-items: flex-start;
    display: flex;
  }

  .item_icon_wrapper {
    flex-direction: column-reverse;
  }

  .privacy_grid {
    grid-template: "Lateral-Menu"
                   "Content"
                   / 1fr;
    margin-top: 0;
    display: flex;
  }

  .datatable_header {
    justify-content: space-between;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .datatable_line_atom {
    width: 24%;
  }

  .datatable_line_atom.place_processing {
    width: 18%;
  }

  .datatable_line_atom.purpose {
    width: 46%;
  }

  .datatable_line_atom.purpose.third_party {
    width: 30%;
  }

  .datatable_line_atom.service_provider {
    width: 26%;
  }

  .datatable_category_name {
    flex-wrap: nowrap;
    font-size: 10px;
    line-height: 12px;
  }

  .privacy_icon.top-margin {
    margin-top: 8px;
  }

  .preloader-icon {
    margin-top: 50%;
  }
}

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

  h2 {
    font-size: 37px;
  }

  h3 {
    font-size: 29px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 19px;
  }

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

  .grid-navbar {
    grid-template-columns: auto auto auto;
  }

  .section-hero {
    padding: 160px 20px 110px;
  }

  .section-hero.single-blog-post {
    padding-bottom: 30px;
  }

  .section-hero.for-grid {
    padding-bottom: 65px;
  }

  .block-hero {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-top: -10rem;
  }

  .block-hero-img {
    margin-top: 80px;
  }

  .section {
    padding: 65px 20px;
  }

  .heading {
    white-space: pre-wrap;
    word-break: normal;
    overflow-wrap: anywhere;
    width: 100%;
    font-size: 40px;
  }

  .heading.scroll {
    margin-left: 0%;
    font-size: 35px;
  }

  .grid-feature {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    justify-content: center;
  }

  .paragraph-feature {
    max-width: 430px;
  }

  .block-sticky {
    margin-top: 65px;
    margin-bottom: 0;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
    top: 0;
  }

  .app-screen---a {
    margin-bottom: 10%;
  }

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

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

  .img-arrow---1, .img-arrow---2 {
    display: none;
  }

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

  .block-app-screen---b {
    margin-left: 8%;
    margin-right: 8%;
  }

  .block-right {
    padding-top: 0;
    padding-left: 10%;
    padding-right: 10%;
  }

  .block-left {
    padding-bottom: 30px;
    padding-left: 6%;
    padding-right: 6%;
  }

  .image-blog.large {
    height: 50vw;
  }

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

  .text-banner {
    padding-left: 10%;
    padding-right: 10%;
  }

  .section-footer {
    padding: 65px 20px 38px;
  }

  .grid-footer {
    grid-row-gap: 70px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 54px;
  }

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

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

  .grid-feature-large {
    grid-template-columns: 1fr;
  }

  .image-feature {
    height: 50vw;
  }

  .grid-pricing, .collection-list-large, .grid-company-info {
    grid-template-columns: 1fr;
  }

  .company-info {
    padding: 30px 20px;
  }

  .number-company-info {
    font-size: 40px;
  }

  .grid-image-page, .grid-account {
    grid-template-columns: 1fr;
  }

  .img-account {
    display: none;
  }

  .account {
    padding-left: 10%;
    padding-right: 10%;
  }

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

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

  .hero {
    direction: ltr;
    text-align: center;
    white-space: nowrap;
    overflow-wrap: normal;
    margin-bottom: 0;
    margin-left: 10%;
    padding-bottom: 20px;
    padding-left: 85px;
    font-size: 45px;
  }

  .div-block-4 {
    margin-right: -68px;
    font-size: 45px;
  }

  .section2 {
    padding: 65px 20px;
  }

  .animated-gradient, .heading-2 {
    font-size: 45px;
  }

  .tdr-text, .tdr-text.colored {
    font-size: 15px;
  }

  .div-block {
    grid-column-gap: .6em;
  }

  .heading-large {
    font-size: 1.875rem;
  }

  .heading-large.rotate-text._9, .heading-large.rotate-text._1, .heading-large.rotate-text._4, .heading-large.rotate-text._5, .heading-large.rotate-text._17, .heading-large.rotate-text._2, .heading-large.rotate-text._14, .heading-large.rotate-text._3, .heading-large.rotate-text._11, .heading-large.rotate-text._12, .heading-large.rotate-text._16, .heading-large.rotate-text._7, .heading-large.rotate-text._15, .heading-large.rotate-text._13, .heading-large.rotate-text._6, .heading-large.rotate-text._10, .heading-large.rotate-text._8, .heading-large.rotate-text._18 {
    font-size: 45px;
  }

  .track-vertical {
    font-size: 3rem;
  }

  .vertical-scroll-wrapper {
    height: 54px;
    margin-left: 0%;
    overflow: hidden;
  }

  .text-rotation-wrapper {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    margin-left: 0%;
  }

  .image-circle---10 {
    width: 15%;
    margin-top: -39%;
  }

  .image-circle---21 {
    margin-top: 36%;
  }

  .image-circle---24 {
    margin-top: -28%;
  }

  .block-hero-img-2 {
    margin-top: 80px;
  }

  .section-hero-2 {
    padding: 160px 20px 110px;
  }

  .section-hero-2.for-grid {
    padding-bottom: 65px;
  }

  .spline-scene-3 {
    width: 120%;
    margin-left: 0%;
  }

  .section-2 {
    padding: 65px 20px;
  }

  .text-banner-2 {
    padding-left: 10%;
    padding-right: 10%;
  }

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

  .app-screen---c-3 {
    width: 0%;
    margin-left: 0%;
    overflow: visible;
  }

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

  .wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  .headline.xl {
    letter-spacing: -.0625rem;
    font-size: 2.5rem;
  }

  .col {
    padding-left: 12px;
    padding-right: 12px;
  }

  .privacy_section, .privacy_content_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .datatable_mobile {
    width: 100%;
    display: block;
  }

  .read_more_data_wrapper {
    padding-left: 16px;
  }

  .content_wrapper {
    padding-left: 40px;
  }

  .container-3 {
    width: 90%;
  }

  .datatable_text.mobile {
    margin-bottom: 24px;
  }

  .small_data_table {
    width: 100%;
    display: block;
  }

  .small_datatable_header_atom {
    flex: 0 auto;
    justify-content: center;
    align-items: flex-end;
    width: 25%;
    padding: 8px 16px;
    display: flex;
  }

  .small_datatable_header_atom.action {
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-end;
    width: 50%;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .datatable_header_mobile {
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    display: flex;
  }

  .legal_bases_meaning_wrapper {
    padding-left: 16px;
  }

  .list_datatable.mobile {
    margin-bottom: 24px;
  }

  .datatable_wrapper {
    display: none;
  }

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

  .privacy_grid {
    margin-top: 0;
    display: flex;
  }

  .h5_top_margin {
    margin-top: 24px;
  }

  .datatable_category_name.mobile {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .read_more_content_wrapper {
    padding-left: 16px;
  }

  .small_datatable_line_atom {
    justify-content: center;
    align-items: center;
    width: 25%;
    padding: 16px;
    display: flex;
  }

  .small_datatable_line_atom.action {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 50%;
  }

  .privacy_icon {
    width: auto;
    max-width: 24px;
    max-height: 24px;
  }

  .small_dt_header {
    background-color: #6969691a;
    border-radius: 8px;
    justify-content: space-between;
    display: flex;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .extra-nav-menu {
    display: none;
  }

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

  .section-hero.single-blog-post {
    padding-bottom: 20px;
  }

  .section-hero.for-grid {
    padding-bottom: 55px;
  }

  .block-hero {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    margin-left: 21vw;
    top: 1vh;
  }

  .block-hero-img {
    margin-top: 70px;
  }

  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .grid-feature {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .paragraph-feature {
    max-width: 300px;
  }

  .block-sticky {
    margin-top: 55px;
  }

  .section-full {
    margin-bottom: 13%;
  }

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

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

  .block-left {
    padding-bottom: 20px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .testimonial {
    padding: 24px 28px;
  }

  .collection-list {
    grid-template-columns: 1fr;
  }

  .image-blog {
    height: 50vw;
  }

  .text-banner {
    text-align: center;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .form-banner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section-footer {
    padding-top: 55px;
    padding-bottom: 28px;
  }

  .grid-footer {
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .plan {
    padding: 35px 10%;
  }

  .blog-info, .image-blog-main {
    margin-bottom: 48px;
  }

  .grid-company-info {
    margin-bottom: 55px;
  }

  .heading-company-info {
    font-size: 16px;
  }

  .number-company-info {
    margin-bottom: 5px;
    font-size: 35px;
  }

  .grid-image-page {
    margin-top: 27px;
    margin-bottom: 55px;
  }

  .contact-information {
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .icon-contact-bg {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .heading-info-contact {
    max-width: 280px;
    font-size: 20px;
  }

  .text-info-contact {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .contact {
    padding: 40px 10%;
  }

  .account {
    padding-bottom: 50px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .account-form {
    padding-left: 10%;
    padding-right: 10%;
  }

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

  .grid-button {
    grid-auto-flow: row;
  }

  .utility-page-wrap {
    padding: 110px 10px 30px;
  }

  .hero {
    padding-bottom: 0;
    font-size: 40px;
  }

  .div-block-2 {
    margin-right: 0;
    font-size: 40px;
  }

  .div-block-4 {
    margin-right: 0;
    padding-top: 0;
    font-size: 40px;
  }

  .section2 {
    margin-top: 0%;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .tdr-text {
    font-size: 15px;
  }

  .div-block {
    grid-column-gap: .4em;
  }

  .block-hero-img-2 {
    margin-top: 70px;
  }

  .section-hero-2 {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .section-hero-2.for-grid {
    padding-bottom: 55px;
  }

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

  .testimonial-2 {
    padding: 24px 28px;
  }

  .text-banner-2 {
    text-align: center;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .div-block-5 {
    margin-top: 11%;
  }

  .image {
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 17px;
    overflow: hidden;
  }

  .icon-contact-bg-2 {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .text-info-contact-2 {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .contact-2 {
    padding: 40px 10%;
  }

  .heading-info-contact-2 {
    max-width: 280px;
    font-size: 20px;
  }

  .text-info-contact-3 {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .contact-3 {
    padding: 40px 10%;
  }

  .absolute.bg-gradient._3 {
    width: 200px;
    height: auto;
  }

  .headline.xl {
    letter-spacing: -.05rem;
    font-size: 2.25rem;
    line-height: 1;
  }

  .form-inline {
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .text-block {
    font-size: 15px;
    line-height: 140%;
  }

  .privacy_section {
    margin-top: 78px;
    padding-left: 0;
    padding-right: 0;
  }

  .privacy_content_wrapper {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .datatable_mobile {
    width: auto;
  }

  .header_section_wrapper {
    align-items: flex-start;
  }

  .read_more_data_wrapper {
    padding-left: 24px;
  }

  .content_wrapper {
    flex: 1;
    padding-left: 24px;
  }

  .container-3 {
    width: 90%;
  }

  .legal_bases_meaning_wrapper {
    padding-left: 24px;
  }

  .item_icon_header {
    flex-direction: row-reverse;
    align-items: flex-start;
    display: flex;
  }

  .item_icon_wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .read_more_line {
    margin-left: 0;
  }

  .privacy_grid {
    margin-top: 0;
    display: flex;
  }

  .datatable_category_name, .datatable_category_name.center {
    font-size: 9px;
  }

  .read_more_content_wrapper {
    padding-left: 24px;
  }

  .privacy_icon {
    max-width: 16px;
    max-height: 16px;
    margin-right: 8px;
  }

  .privacy_icon.top-margin {
    margin-top: 12px;
  }

  .privacy_icon.top-margin.big {
    margin-top: 15px;
  }

  .preloader-icon {
    width: 150px;
  }
}

#w-node-div-block-6-e59b0ccc {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-div-block-5-e59b0ccc {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
}

#w-node-image-e59b0ccc, #w-node-_8fdb0733-9c0b-9d9a-d4ac-47309542a143-e59b0ccc {
  justify-self: center;
}

#year.w-node-a356b439-03a6-d2ba-f8ea-2798c86c1960-5b0e2fb7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d0dc812c-ec2f-fd6d-6ad9-77361725f73c-1725f73b {
  place-self: auto start;
}

@media screen and (max-width: 991px) {
  #w-node-div-block-15-e59b0ccc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ac6e8a2a-998f-e4a1-570b-352af0c8f406-e59b0cd2 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-div-block-6-e59b0ccc {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-div-block-5-e59b0ccc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-div-block-12-e59b0ccc, #w-node-_05a355ab-252f-c341-0851-8eaf39a9bdf2-e59b0ccc {
    order: -9999;
  }

  #w-node-da92ec24-0a93-58e4-1a73-58ed5b0e2fba-5b0e2fb7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-div-block-15-e59b0ccc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-ExtraBold.ttf') format('truetype'), url('../fonts/Inter_28pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-Bold.ttf') format('truetype'), url('../fonts/Inter_18pt-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-BoldItalic.ttf') format('truetype'), url('../fonts/Inter_18pt-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-ExtraBoldItalic.ttf') format('truetype'), url('../fonts/Inter_24pt-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-Bold.ttf') format('truetype'), url('../fonts/Inter_24pt-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-BoldItalic.ttf') format('truetype'), url('../fonts/Inter_28pt-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 18 Pt';
  src: url('../fonts/Inter_18pt-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 24 Pt';
  src: url('../fonts/Inter_24pt-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter 28 Pt';
  src: url('../fonts/Inter_28pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}