@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi Variable;
  src: url('../fonts/Satoshi-Variable.woff2') format("woff2"), url('../fonts/Satoshi-Variable.woff2') format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.woff2') format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-LightItalic.woff2') format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --color--black: #101011;
  --color--white: #fbfbfb;
  --text-size--regular: 1rem;
  --heading--h2: 5rem;
  --heading--h6: 2rem;
  --color--dark-grey: #1f1f1f;
  --heading--h5: 2.5rem;
  --text-size--large: 1.5rem;
  --text-size--tiny: .75rem;
  --grye2: #868686;
  --grey-3: #bebebe;
  --heading--h1: 10.5rem;
  --heading--h4: 3rem;
  --text-size--small: .875rem;
  --auca_main: #687531;
  --auca_sub: #97a850;
  --color--orange: #ed5145;
  --color--grey: #353535;
  --heading--h3: 4rem;
  --text-size--medium: 1.125rem;
}

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

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

.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(--color--black);
  color: var(--color--white);
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.hero-style-guide-wrapper {
  background-color: #121212;
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
  padding: 13rem 2rem 2rem;
  overflow: hidden;
}

.text-size-regular {
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

.heading-2 {
  font-size: var(--heading--h2);
  font-weight: 300;
  line-height: 1;
}

.text-box {
  max-width: 27rem;
}

.text-box.large {
  max-width: 60rem;
}

.hero-style-guide-content {
  grid-row-gap: 1.5rem;
  color: #f3f3f3;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container {
  width: 100%;
  max-width: 100rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
}

.container.medium {
  max-width: 90rem;
}

.container.small {
  max-width: 90rem;
  margin-bottom: 0;
}

.padding-global {
  margin-bottom: 0;
  padding: 0 2.5rem;
}

.padding-global.small {
  padding-left: 1rem;
  padding-right: 1rem;
}

.padding-global.price-section {
  margin-top: 6rem;
  margin-bottom: 8rem;
}

.padding-global.section7 {
  margin-top: 140px;
  margin-bottom: 140px;
}

.rich-text h1 {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.rich-text p {
  margin-bottom: 1.5rem;
}

.rich-text h2, .rich-text h3, .rich-text h4 {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.rich-text img {
  border-radius: .5rem;
  overflow: hidden;
}

.rich-text h5 {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.rich-text blockquote {
  margin-bottom: 1.5rem;
}

.rich-text h6 {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.button-text-absolute {
  position: absolute;
  bottom: -2rem;
}

.style-guide-header {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 4.5rem;
  display: flex;
}

.style-tag {
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #fbfbfb33;
  border-radius: 10rem;
  padding: .625rem 1.5rem;
  font-weight: 500;
}

.text-weight-medium {
  font-family: PT Sans, sans-serif;
  font-weight: 500;
}

.typography-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.style-gudie-content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-gudie-content.grid {
  grid-column-gap: 3rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-size: 2rem;
  display: grid;
}

.style-guide-menu-links {
  grid-row-gap: 1.5rem;
  opacity: .5;
  color: #fbfbfb;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.style-guide-menu-links:hover, .style-guide-menu-links.w--current {
  opacity: 1;
}

.button-line {
  background-color: #3f3f3f;
  width: 100%;
  height: 1px;
}

.text-size-xsmall {
  letter-spacing: .5px;
  font-size: 1rem;
}

.text-size-xsmall.text-style-caps {
  text-transform: uppercase;
}

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

.heading-6 {
  font-size: var(--heading--h6);
  line-height: 1.15;
}

.heading-6.text-weight-medium {
  color: var(--color--dark-grey);
  font-family: PT Sans, sans-serif;
  font-weight: 700;
}

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

.button {
  grid-row-gap: .25rem;
  color: #fbfbfb;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.text-size-large {
  font-size: var(--text-size--large);
}

.typography-content {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-size-tiny {
  font-size: var(--text-size--tiny);
}

.color-palette-card {
  grid-row-gap: 2rem;
  border: 1px solid #dfddda;
  border-radius: 1rem;
  flex-direction: column;
  padding: .5rem .5rem 2rem;
  display: flex;
}

.style-guide-content {
  margin-bottom: 10rem;
}

.text-size-medium {
  color: var(--grye2);
  letter-spacing: -.5px;
  width: 370px;
  font-family: PT Sans, sans-serif;
  font-size: 1.125rem;
}

.text-size-medium.white {
  font-family: PT Sans, sans-serif;
}

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

.text-size-medium.dd._3 {
  width: 350px;
}

.heading-1 {
  font-size: var(--heading--h1);
  font-weight: 300;
  line-height: 1;
}

.text-weight-regular {
  font-weight: 400;
}

.button-text {
  flex-direction: column;
  display: flex;
  position: relative;
}

.style-guide-component {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  margin-bottom: 10rem;
}

.style-guide-menu {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.heading-4 {
  font-size: var(--heading--h4);
  line-height: 1.15;
}

.heading-4.text-weight-bold {
  color: var(--color--white);
  -webkit-text-stroke-color: var(--color--white);
}

.heading-4.text-weight-medium {
  font-family: PT Sans, sans-serif;
  font-size: var(--heading--h6);
  font-weight: 500;
  line-height: 1.5;
}

.heading-4.text-weight-medium.price {
  color: var(--grye2);
  font-size: var(--text-size--large);
  font-weight: 400;
}

.heading-4.text-weight-medium.review {
  color: var(--color--white);
}

.text-weight-light {
  font-weight: 300;
}

.heading-5 {
  font-size: var(--heading--h5);
  line-height: 1.25;
}

.heading-5.text-weight-bold {
  font-family: PT Sans, sans-serif;
  font-weight: 700;
}

.text-size-small {
  font-size: var(--text-size--small);
}

.text-size-small.text-weight-bold {
  color: var(--auca_main);
  font-family: PT Sans, sans-serif;
}

.class-name-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 6rem;
  display: flex;
}

.class-name-wrapper.margin-bottom-0 {
  margin-bottom: 0;
}

.color-palette {
  border: 1px solid #ffffff1a;
  border-radius: 1rem;
  width: 100%;
  height: 10rem;
}

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

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

.color-palette.color-black {
  background-color: var(--color--black);
}

.color-palette.color-dark-grey {
  background-color: var(--color--dark-grey);
}

.color-palette.color-grey {
  background-color: var(--color--grey);
}

.style-guide-menu-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.color-palette-text {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.section-style-guide {
  margin-top: 5.75rem;
}

.heading-3 {
  font-size: var(--heading--h3);
  line-height: 1;
}

.sticky-menu {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 4rem;
}

.trusted-by-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: center;
  margin-top: 4rem;
  display: flex;
}

.read-more-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  transition: all .25s;
  display: flex;
}

.read-more-button:hover {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
}

.hero-wrapper {
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  display: flex;
}

.primary-button {
  color: var(--color--white);
  background-color: #687531;
  border-radius: 50rem;
  justify-content: center;
  align-items: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.trusted-by-hero-logos {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logos {
  justify-content: center;
  align-items: center;
  height: 2rem;
  display: flex;
}

.double-button-component {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.double-button-component.margin-top-button-hero {
  margin-top: 2.8rem;
}

.double-button-component.margin-top-button-features {
  margin-top: .5rem;
}

.max-width-50ch {
  max-width: 50ch;
}

.hero-component {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.secondary-button-text {
  z-index: 2;
  margin-left: .9rem;
  position: relative;
}

.vertical-line-tag {
  opacity: .5;
  color: #fff;
  background-color: #fff;
  width: 1px;
  height: 1rem;
}

.opacity-50 {
  opacity: .5;
}

.opacity-60 {
  opacity: .6;
}

.secondary-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--color--white);
  border: 1px solid #353535;
  border-radius: 50rem;
  justify-content: center;
  align-items: center;
  padding-left: .5rem;
  padding-right: .5rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.read-more-tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid var(--auca_main);
  color: var(--color--white);
  border-radius: 2.3125rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
  text-decoration: none;
  display: flex;
}

.arrow {
  width: auto;
  height: auto;
}

.integrations-block {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: #1f1f1f;
  border-radius: 1rem;
  flex-flow: column;
  align-items: center;
  padding: 4rem 5rem 2.4rem;
  display: flex;
}

.integrations-block.second {
  width: 40%;
}

.integrations-block.first {
  width: 60%;
}

.max-width-46ch {
  max-width: 46ch;
}

.header {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  color: var(--color--dark-grey);
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 63ch;
  display: flex;
}

.opacity-70 {
  opacity: .7;
}

.integrations-image {
  border-radius: .875rem;
  justify-content: center;
  align-items: center;
  height: 10rem;
  display: flex;
  overflow: hidden;
}

.features-cards-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.integrations-content-component {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.home-integrations-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.integrations-content {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.home-features-wrapper {
  grid-column-gap: 5.5rem;
  grid-row-gap: 5.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10rem;
  display: flex;
}

.features {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.features-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.max-width-48ch {
  max-width: 48ch;
}

.features-content {
  max-width: 20ch;
}

.testimonial-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 140px;
  display: grid;
}

.testimonial-grid._2 {
  box-sizing: border-box;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 5fr;
  place-content: space-around stretch;
  align-self: stretch;
  place-items: start center;
  width: 100%;
  display: grid;
  overflow: visible;
}

.testimonial-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  text-align: left;
  flex-flow: column;
  align-items: center;
  margin-top: 8rem;
  display: flex;
  position: static;
}

.icon {
  width: 50%;
}

.icon.review {
  width: 100%;
}

.quote-icon {
  justify-content: center;
  align-items: center;
  width: .8rem;
  height: .8rem;
  display: flex;
}

.testimonial-image {
  border-radius: .5rem;
  max-width: 3rem;
  max-height: 3rem;
  overflow: hidden;
}

.max-width-40ch {
  max-width: 60ch;
}

.testimonial-component {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 50vw;
  display: flex;
}

.testimonial-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.testimonial-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--color--grey);
  border-radius: 15px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 41ch;
  height: 100%;
  padding: 2.5rem 3rem;
  transition: background-color .25s;
  display: flex;
}

.testimonial-card:hover {
  background-color: #1f1f1f;
}

.testimonial-card._2 {
  justify-content: space-between;
  align-items: center;
  width: 84rem;
}

.testimonial-person-info {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.steps-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #141313;
  border: 1px solid #393939;
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  height: 80vh;
  display: grid;
  overflow: hidden;
}

.steps-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #fbfbfb;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.left-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 6rem 5rem;
  display: flex;
}

.steps-stack-component {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.steps-image {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.right-content {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: relative;
}

.steps-tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid #ed51458c;
  border-radius: 2.3125rem;
  justify-content: center;
  align-items: center;
  padding: .5rem .75rem;
  display: flex;
}

.image {
  align-self: center;
  width: 42%;
}

.image._3 {
  width: 100%;
  max-width: 120%;
  height: 49%;
}

.image.main {
  width: 100%;
}

.steps-description {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  opacity: .7;
  flex-flow: column;
  max-width: 40ch;
  display: flex;
}

.max-width-42ch {
  max-width: 42ch;
}

.steps-item {
  position: sticky;
  top: 8vh;
}

.steps-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.max-width-30ch {
  max-width: 30ch;
}

.credits-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.credits {
  text-decoration: none;
  transition: opacity .2s;
}

.credits:hover {
  opacity: .8;
}

.footer-grid-wrap {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.vertical-line {
  background-color: #8e8c87;
  width: 1px;
  height: .8rem;
}

.footer-social-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

.footer-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.paragraph {
  color: #ffffff80;
}

.icon-embed {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.footer-grid {
  grid-column-gap: 5rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.footer-heading {
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 4rem;
  margin-bottom: 5rem;
  display: flex;
  position: relative;
}

.footer-link {
  color: #8e8c87;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .25s;
}

.footer-link:hover {
  color: #ebebeb;
  transform: translate(0, -2px);
}

.footer-links {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.footer-social {
  background-color: #f0f0f0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: .7rem;
  transition: all .3s;
  display: flex;
}

.footer-social:hover {
  color: #c9d4d8;
  background-color: #ed5145;
  transform: translate(0, -2px);
}

.text-color-white {
  opacity: 1;
  color: #ebebeb;
}

.footer-component {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 0;
  display: flex;
}

.trusted-by-about-component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  align-items: center;
  margin-top: 7rem;
  display: flex;
}

.trusted-by-about-logos {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: grid;
}

.opacity-80 {
  opacity: .8;
}

.about-features-image {
  border-radius: 1rem;
  width: 100%;
  height: 25rem;
  margin-bottom: .5rem;
  position: relative;
  overflow: hidden;
}

.max-width-33ch {
  max-width: 33ch;
}

.about-features-wrapper {
  grid-column-gap: 4.8rem;
  grid-row-gap: 4.8rem;
  flex-flow: column;
  align-items: center;
  margin-top: 12rem;
  display: flex;
}

.about-features-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.about-features-content {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  max-width: 40ch;
  display: flex;
}

.about-features-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: grid;
}

.about-features-header {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 50vw;
  display: flex;
}

.max-width-26ch {
  max-width: 26ch;
}

.phase-cards-wrapper {
  grid-column-gap: 6.6rem;
  grid-row-gap: 6.6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 12rem;
  display: flex;
}

.phase-number {
  opacity: .2;
  color: #fbfbfb;
}

.phase-cards-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: grid;
}

.phase-cards {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
  background-color: #151515;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 55vh;
  padding: 4rem 3rem 4.3rem;
  display: flex;
}

.phase-cards-header {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 50vw;
  display: flex;
}

.phase-cards-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 29ch;
  display: flex;
}

.team-card {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.team-grid {
  grid-column-gap: 1.375rem;
  grid-row-gap: 1.375rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.team-content {
  grid-column-gap: .375px;
  grid-row-gap: .375px;
  flex-flow: column;
  align-items: flex-start;
  margin-left: .75rem;
  display: flex;
}

.children-perspective {
  perspective: 1000px;
}

.team-image {
  border-radius: 1rem;
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.team-wrapper {
  grid-column-gap: 4.6rem;
  grid-row-gap: 4.6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: flex;
}

.team-header {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 48vw;
  display: flex;
}

.caps {
  text-transform: uppercase;
}

.banner-button-line {
  background-color: var(--auca_sub);
  color: #ed5145;
  width: 100%;
  height: 1px;
  position: relative;
  overflow: hidden;
}

.banner-overlay {
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(45deg, #101011e6, #10101108);
  position: absolute;
  inset: 0%;
}

.banner-background {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.bottom-content {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.button-content {
  grid-column-gap: 13.8125rem;
  grid-row-gap: 13.8125rem;
  display: flex;
}

.banner-content {
  z-index: 3;
  grid-column-gap: 16rem;
  grid-row-gap: 16rem;
  flex-flow: column;
  align-items: stretch;
  display: flex;
  position: relative;
}

.banner-button {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  color: var(--color--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

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

.banner-wrapper {
  border-radius: 1rem;
  flex-flow: column;
  padding: 3.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.max-width-38ch {
  max-width: 38ch;
}

.top-content {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.max-width-75ch {
  max-width: 75ch;
}

.check-icon-wrap {
  background-color: #ddd;
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 1.75em;
  min-width: 1.75rem;
  height: 1.75rem;
  min-height: 1.75rem;
  padding-bottom: .15rem;
  display: flex;
}

.features-component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  perspective: 100vw;
  perspective-origin: 50%;
  flex-flow: column;
  width: 100%;
  height: auto;
  display: flex;
}

.features-heading {
  grid-row-gap: .625rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100ch;
}

.features-heading.align-left {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.check-icon {
  width: .875rem;
  height: auto;
  padding-top: .2rem;
}

.features-vantages-content {
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding-left: 3vw;
  display: flex;
}

.features-wrapper {
  grid-column-gap: 7.5rem;
  grid-row-gap: 7.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10rem;
  margin-bottom: 8rem;
  display: flex;
}

.gradient-overlay {
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(0deg, #101011, #1010111a);
  position: absolute;
  inset: 0%;
}

.gradient-overlay.bigger {
  pointer-events: none;
  height: 50vw;
}

.gradient-overlay.hero {
  height: 100vh;
}

.features-image-container {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.check-list {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.check-item {
  grid-column-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.features-image-wrapper {
  background-color: #64646400;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 35vw;
  min-width: 35rem;
  max-width: 40rem;
  height: 30vw;
  min-height: 30rem;
  max-height: 40rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.features-image-wrapper.step3 {
  min-width: 30rem;
}

.features-image-wrapper.step2 {
  min-width: 25rem;
  min-height: 25rem;
}

.features-heading-wrapper {
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 576px;
  display: flex;
}

.features-icon-wrapper {
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
}

.features-vantages {
  grid-column-gap: 5vw;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.max-width-55ch {
  max-width: 55ch;
}

.blog-list-wrap {
  width: 100%;
}

.blog-list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.empty-state {
  text-align: center;
  background-color: #0000;
}

.blog-card {
  grid-row-gap: 1rem;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.blog-card-image {
  border-radius: .5rem;
  width: 100%;
  height: 40vh;
  overflow: hidden;
}

.card-content {
  z-index: 2;
  grid-row-gap: .75rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: .5rem;
  margin-left: .3rem;
  text-decoration: none;
  display: flex;
}

.title-wrapper {
  color: #fbfbfb;
  max-width: 60ch;
  text-decoration: none;
}

.blog-content-wrapper {
  grid-row-gap: 6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  display: flex;
}

.max-width-70ch {
  max-width: 70ch;
}

.faq-component {
  grid-column-gap: 0px;
  grid-row-gap: 4.8125rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 7.5rem;
  display: flex;
}

.faq-list {
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  position: relative;
}

.faq-item {
  cursor: pointer;
  background-color: #dfdfdf0f;
  border-radius: .5rem;
  flex-flow: column;
  padding: 1.5rem;
  transition: background-color .25s;
  display: flex;
}

.faq-item:hover {
  background-color: #dfdfdf1a;
}

.faq-top {
  z-index: 1;
  cursor: pointer;
  position: relative;
}

.faq-title-wrapper {
  z-index: 10;
  height: 100%;
  padding-right: 5rem;
  position: relative;
}

.faq-action-wrapper {
  z-index: 25;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0 0% auto;
}

.faq-bottom {
  z-index: 10;
  margin-right: 12rem;
  position: relative;
  overflow: hidden;
}

.faq-bottom-content {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  opacity: .7;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  display: grid;
}

.price-button {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.price-button.enterprise {
  width: auto;
}

.contain {
  object-fit: contain;
}

.enterprise-content {
  grid-column-gap: 2rem;
  align-items: center;
  display: flex;
}

.enterprise-text {
  margin-left: 1.5rem;
}

.pricing-grid-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  margin-top: 4.5rem;
  display: flex;
}

.enterprise-banner {
  color: #fbfbfb;
  background-color: #151515;
  border: 1px solid #393939;
  border-radius: .5rem;
  justify-content: space-between;
  width: 100%;
  padding: 2.5rem 2rem;
  text-decoration: none;
  display: flex;
}

.pricing-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.price-icon {
  background-color: #393939;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: .9rem;
  display: flex;
}

.price-icon.black {
  background-color: #101011;
}

.price-card {
  grid-row-gap: 4rem;
  background-color: #151515;
  border-radius: .5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 55svh;
  padding: 2.5rem 2rem 4rem;
  display: flex;
}

.price-card:nth-child(2n) {
  background-color: #1f1f1f;
}

.price-card.dark-grey {
  background-color: var(--color--dark-grey);
}

.price-card-heading {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.price-check-item {
  grid-column-gap: .75rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.price {
  grid-column-gap: .75rem;
  align-items: flex-end;
  display: flex;
}

.price-check {
  width: .875rem;
  height: auto;
}

.margin-bottom-05 {
  margin-bottom: .4rem;
}

.price-check-list {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.price-card-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.price-check-icon {
  background-color: #393939;
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 1.75em;
  min-width: 1.75rem;
  height: 1.75rem;
  min-height: 1.75rem;
  display: flex;
}

.price-features-wrap {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.max-width-90ch {
  max-width: 90ch;
}

.blog-image-wrapper {
  border-radius: .5rem;
  width: 90vw;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.blog-overlay {
  background-image: linear-gradient(#10101100 10%, #101011db);
  position: absolute;
  inset: 0%;
}

.blog-component {
  grid-row-gap: 4rem;
  flex-direction: column;
  width: 100%;
  max-width: 100ch;
  margin: 9.5rem auto 7.5rem;
  display: flex;
}

.rich-text-paddig {
  grid-row-gap: 4.5rem;
  flex-direction: column;
  padding-left: 1.25rem;
  display: flex;
}

.features-hero-image {
  border-radius: 1rem;
  width: 95vw;
  height: 80vh;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.about-hero-image {
  border-radius: 1.5rem;
  width: 95vw;
  height: 90vh;
  margin-top: 3.2rem;
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
}

.not-found-heading {
  font-size: 23.1113rem;
  font-weight: 900;
  line-height: 1.15;
}

.larst-card-nav {
  opacity: 1;
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: .5rem;
  transition: opacity .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.larst-card-nav:hover {
  opacity: .7;
}

.brand {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  display: flex;
}

.right-navbar-content {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  align-items: center;
  display: flex;
}

.navbar-component {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  display: flex;
}

.nav-menu {
  z-index: 2;
  grid-column-gap: 2.875rem;
  grid-row-gap: 2.875rem;
  align-items: center;
  display: flex;
}

.nav-menu-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.link-block-navbar {
  color: var(--color--white);
  justify-content: center;
  align-items: center;
  padding: .46rem .75rem;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.link-block-navbar:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.mobile-navbar-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: none;
}

.navbar {
  background-color: #0000;
  position: absolute;
  inset: 0% 0% auto;
}

.navbar-link {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--color--white);
  padding-top: .2rem;
  padding-bottom: .2rem;
  text-decoration: none;
  transition: all .25s;
  position: relative;
}

.nav-link:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.about-hero-interaction {
  flex-flow: column;
  align-items: center;
  height: 200vh;
  display: flex;
  position: relative;
}

.hero-sticky-component {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  margin-top: 5.5rem;
  display: flex;
  position: sticky;
  top: 5vh;
  bottom: 5vh;
}

.sticky-images {
  border-radius: 1.5rem;
  width: 30vw;
  height: 30vw;
  position: absolute;
  overflow: hidden;
}

.sticky-images.left {
  z-index: 2;
  margin-top: 5vh;
  right: 58vw;
}

.sticky-images.middle {
  z-index: 3;
}

.sticky-images.right {
  z-index: 1;
  margin-top: 5vh;
  left: 58vw;
}

.password {
  opacity: .37;
  filter: invert();
  width: 10rem;
  margin-left: auto;
  margin-right: auto;
}

.password-heading {
  text-align: center;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.5;
}

.display-none {
  display: none;
}

.text-field {
  color: var(--color--white);
  font-size: var(--text-size--regular);
  background-color: #fbfbfb33;
  border: 1px solid #0000;
  border-radius: 0;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
  transition: all .4s;
}

.text-field:hover {
  color: var(--color--white);
  border-width: .5px;
  border-color: #fbfbfb40;
  border-radius: .5rem;
  padding-left: 1.2rem;
}

.text-field:active {
  color: var(--color--black);
}

.text-field:focus {
  border-color: var(--color--black);
  color: var(--color--white);
}

.submit-button {
  z-index: 3;
  color: #0000;
  background-color: #0000;
  position: absolute;
  inset: 0%;
}

.instruction-content-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  margin-top: 15vh;
  display: flex;
}

.instruction-heading {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.instructions {
  grid-column-gap: 1.3125rem;
  grid-row-gap: 1.3125rem;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.instructions-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.divider-line-instructions {
  background-color: var(--color--white);
  opacity: .1;
  width: 100%;
  height: 1px;
}

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

.style-guide-hero {
  background-color: #000;
  border-bottom: 1px solid #333;
}

.hero-changelog-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #000;
  border-radius: 1rem;
  flex-flow: column;
  width: 100%;
  margin-top: 1rem;
  padding: 12rem 3rem 3rem;
  display: flex;
  overflow: hidden;
}

.style-guide-heading {
  font-size: 6.125vw;
  font-weight: 300;
  line-height: 1;
}

.changelog-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 82%);
  width: 100%;
  margin-bottom: 10rem;
}

.style-guide-text {
  font-size: 2.75rem;
  line-height: 1.55;
}

.opacity-85 {
  opacity: .8;
}

.license-content {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-size-huge {
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1.2;
}

.style-guide-button {
  grid-row-gap: .25rem;
  color: #e5e5e5;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  overflow: hidden;
}

.style-guide-button:hover {
  opacity: .5;
}

.license-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 6.2rem;
  margin-bottom: 7.7rem;
}

.overflow-hidden {
  overflow: clip;
}

.error-message {
  text-align: center;
  background-color: #e54e4e;
  border-radius: .5rem;
}

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

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-field-contact {
  color: #fbfbfb;
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #c9d4d833;
  border-radius: 0;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
  font-size: 1rem;
  transition: all .4s;
}

.text-field-contact:hover {
  color: #fbfbfb;
  border-width: 1px;
  border-color: #c9d4d81a;
  padding-left: 1.2rem;
}

.text-field-contact:active {
  color: #212121;
}

.text-field-contact:focus {
  color: #fbfbfb;
  border-color: #212121;
}

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

.form-content {
  width: 100%;
}

.success-message {
  color: #000;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: .6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.text-size-medium-vw {
  font-size: 1vw;
  font-weight: 400;
}

.form-wrapper {
  width: 50%;
}

.text-size-contact {
  font-size: 1.375rem;
}

.name-wrapper-contact {
  width: 100%;
}

.contact-button {
  background-color: #1d1d1f;
  border-radius: .3rem;
  transition: all .25s;
}

.contact-button.align-center {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact-wrapper {
  grid-column-gap: 6.125rem;
  grid-row-gap: 6.125rem;
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  display: flex;
}

.button-elipse {
  background-color: #e16f66;
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 3rem;
}

.button-wrapper {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: 12rem;
  justify-content: flex-end;
  align-items: center;
  padding-left: .4px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-icon {
  z-index: 2;
  background-color: var(--color--dark-grey);
  border-radius: 12rem;
  padding: .6rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-icon.absolute {
  z-index: 1;
  opacity: 0;
  border-radius: 13rem;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: 0%;
  overflow: hidden;
}

.icon-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: center;
  width: 1rem;
  display: flex;
  overflow: hidden;
}

.line-fill {
  z-index: 2;
  background-color: var(--color--white);
  color: var(--color--white);
  position: absolute;
  inset: 0% auto 0% 0%;
}

.mask-frame {
  background-color: var(--color--orange);
  display: none;
  position: absolute;
  inset: 0%;
}

.delete-this {
  z-index: 10;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--color--white);
  border-radius: .75rem;
  flex-flow: column;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
}

.modal-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.modal-text {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  flex-flow: column;
  display: flex;
}

.max-width-37ch {
  max-width: 37ch;
}

.modal-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.webflix-link {
  color: #101828;
}

.modal-button {
  color: var(--color--white);
  text-align: center;
  cursor: pointer;
  background-color: #101011;
  border-radius: .5rem;
  width: 100%;
  padding: .8rem 1rem;
  text-decoration: none;
  transition: all .25s;
}

.modal-button:hover {
  background-color: #101011cc;
  transform: scale(.98);
}

.modal-embed {
  display: flex;
}

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

.margin-top-description {
  margin-top: 2rem;
}

.heading-2-instruction {
  font-size: var(--heading--h2);
  font-weight: 300;
  line-height: 1;
}

.heading-2-instruction.text-weight-bold {
  font-weight: 700;
}

.f-h1-heading {
  color: var(--color--dark-grey);
  letter-spacing: -.04em;
  -webkit-text-stroke-color: #687531;
  margin-top: 0;
  margin-bottom: 0;
  font-family: PT Sans, sans-serif;
  font-size: 58px;
  line-height: 1.2;
}

.f-header-button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.f-button-neutral {
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #687531;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.f-button-neutral:hover {
  background-color: #282556;
}

.f-button-neutral.video {
  border: 1px solid var(--grey-3);
  color: #fff0;
  background-color: #fff;
  padding-right: 24px;
}

.f-button-neutral._2 {
  border: 1px solid var(--grey-3);
  color: var(--color--black);
  background-color: #fff;
}

.text-block-7 {
  font-family: PT Sans, sans-serif;
}

.text-block-7.video {
  color: var(--grye2);
  padding-right: 6px;
}

.f-button-secondary {
  color: #160042;
  letter-spacing: -.02em;
  background-color: #fff;
  border: 1px solid #e4e6f1;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .3s, background-color .3s;
  display: flex;
}

.f-button-secondary:hover {
  background-color: #f3f5fb;
  border-color: #0000;
}

.heading-7 {
  color: #1a1a1a;
  margin-top: 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 600;
  line-height: 48px;
}

.heading-7.white {
  color: #fff;
}

.heading-7.white.mobile {
  color: var(--color--dark-grey);
  font-family: PT Sans, sans-serif;
  font-size: 48px;
  line-height: 60px;
}

.heading-7.white.mobile.price {
  font-family: PT Sans, sans-serif;
}

.heading-7.white.mobile.price.event {
  word-break: keep-all;
}

.uui-pricing11_price {
  color: #292929;
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.text-span {
  color: #687531;
}

.uui-pricing11_price-text {
  color: #292929;
  letter-spacing: normal;
  margin-left: .25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.rt-change-font {
  font-weight: 300;
}

.rt-category-cards-text-3 {
  color: #150438;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}

.rt-category-cards-text-3.rt-text-white {
  color: #fff;
}

.rt-about-one-team-content {
  max-width: 170px;
  margin-bottom: 60px;
  position: relative;
}

.rt-about-one-team-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 10px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

.rt-about-one-team-block.rt-margin-top-hundred {
  margin-top: 100px;
}

.rt-about-one-team-block.rt-margin-top-hundred.rt-margin-off.rt-mobile-landscape-full-width.rt-background-dark {
  margin-top: 0;
}

.rt-about-one-team-block.rt-margin-buttom-hundred {
  margin-bottom: 100px;
}

.rt-about-one-team-block.rt-margin-buttom-hundred.rt-margin-off.rt-mobile-landscape-full-width.rt-background-dark {
  margin-bottom: 0;
}

.rt-component-container-3 {
  width: 100%;
  max-width: 1290px;
  position: relative;
}

.rt-autofit-cover {
  object-fit: cover;
}

.rt-about-one-team-social {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.rt-about-one-team-overlay {
  background-image: linear-gradient(#20222400, #1b1c1e);
}

.rt-title-top {
  color: #150438;
  letter-spacing: .01px;
  font-size: 14px;
  line-height: 28px;
}

.rt-title-top.rt-align-center.rt-padding-bottom-twenty-2.rt-text-white {
  color: #fff;
}

.rt-about-one-team-main {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  max-width: 1260px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.rt-merquee-two-text {
  color: #fff6;
  flex: none;
  font-size: 6.25rem;
  line-height: 5rem;
}

.rt-body-font-16 {
  color: #462720;
  letter-spacing: .1rem;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.rt-body-font-16.rt-text-capitalize {
  text-transform: uppercase;
}

.rt-home-three-about-text-underline {
  background-color: #6d6d6d;
  width: 268px;
  height: 1px;
  margin: 10px auto;
}

.rt-box-merquee {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.rt-home-three-about-main {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 80px;
  padding-right: 15px;
  display: flex;
}

.rt-home-three-about-box {
  text-decoration: none;
}

.rt-home-three-about-box.rt-padding-top-fourty {
  margin-top: 40px;
}

.rt-home-three-about-box.rt-padding-top-eighty {
  margin-top: 80px;
}

.rt-home-three-about-image-merquee-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 10%;
}

.rt-component-section-3 {
  color: #6d6d6d;
  background-color: #fff;
  width: 100%;
  padding: 80px 15px;
  font-size: 17px;
  font-weight: 300;
  line-height: 29px;
  position: relative;
}

.rt-auto-fit-5 {
  object-fit: cover;
}

.rt-auto-fit-5.rt-landskape-image-full-width {
  border-radius: 10px;
}

.rt-body-font {
  color: #6d6d6d;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.875rem;
}

.rt-body-font.rt-text-center-2.rt-text-black {
  color: #150438;
}

.rt-home-three-image-view-button {
  background-color: #fcf6f4;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
}

.rt-home-three-about-view-button-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.rt-home-three-about-text {
  padding-top: 30px;
}

.rt-home-three-about-image {
  cursor: none;
  position: relative;
  overflow: hidden;
}

.rt-home-one-offer-text {
  z-index: 3;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.rt-home-one-offer-image-overlay {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(0deg, #0009, #fff0 58%);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: absolute;
  inset: 0%;
}

.rt-home-one-offer-image-overlay.price {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  background-image: linear-gradient(0deg, #000, #fff0);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.rt-home-one-offer-left-arrow {
  border: 1px solid #116df8;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  display: flex;
  inset: 5% auto auto 80%;
}

.rt-home-one-offer-right-arrow {
  border: 1px solid #116df8;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  display: flex;
  inset: 5% 5% auto auto;
}

.rt-home-one-offer-image {
  background-color: #131218;
  border-radius: 10px;
  height: 440px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.rt-inner-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.rt-inner-container.rt-position-relative {
  position: relative;
}

.rt-top-heading-text {
  color: #c99b8f;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
}

.rt-top-heading-text.rt-text-blue-2 {
  color: #116df8;
}

.rt-top-heading-text.rt-change-style-two {
  color: #e0ecff;
  letter-spacing: 0;
  font-size: 13px;
}

.rt-home-one-top-heading-text {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.rt-auto-fit-two {
  object-fit: cover;
}

.rt-auto-fit-two.rt-offer-image.rt-responsive-image-full-width {
  margin-bottom: 140px;
}

.rt-home-one-offer-mask {
  max-width: 744px;
  overflow: visible;
}

.rt-home-one-top-heading-line-2 {
  background-color: #c99b8f;
  width: 62px;
  height: 1px;
}

.rt-home-one-top-heading-line-2.rt-colour-blue {
  background-color: #116df8;
}

.rt-display-off-2 {
  display: none;
}

.rt-home-one-offer-heading {
  max-width: 540px;
}

.rt-home-one-offer-heading.rt-overflow-hidden {
  overflow: hidden;
}

.rt-home-one-offer-slider {
  background-color: #ddd0;
  height: auto;
  position: static;
}

.rt-home-one-offer-wrapper {
  flex: none;
  margin-right: -30vw;
  padding-top: 40px;
  overflow: hidden;
}

.rt-home-one-offer-main {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.rt-home-one-offer {
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

.rt-heading-five-10 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.rt-heading-five-10.rt-change-color-white {
  color: #fff;
}

.rt-home-one-offer-item {
  cursor: pointer;
  border-left: 1px solid #e1d6d3;
  border-right: 1px solid #e1d6d3;
  flex: none;
  padding-left: 40px;
  padding-right: 40px;
}

.div-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

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

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

.mask, .slide {
  height: 400px;
}

.background-video-2 {
  border-radius: 15px 15px 0 0;
  height: 250px;
}

.heading-8 {
  color: var(--color--dark-grey);
  height: auto;
  font-family: PT Sans, sans-serif;
  font-size: 16px;
}

.div-block-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 400px;
  display: grid;
}

.slider {
  background-color: #a37a7a00;
  flex: none;
  align-self: stretch;
  width: 64rem;
  height: 400px;
}

.div-block-6 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 70px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
}

.image-2 {
  width: 25%;
  height: auto;
}

.uui-logo_component-2 {
  flex-wrap: nowrap;
  width: auto;
  height: 2rem;
  display: flex;
}

.uui-logo_logotype-2 {
  flex: none;
  width: auto;
  height: 100%;
}

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

.uui-button-secondary-gray {
  grid-column-gap: .5rem;
  color: #344054;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #d0d5dd;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button-secondary-gray:hover {
  color: #1d2939;
  background-color: #f9fafb;
}

.uui-button-secondary-gray:focus {
  background-color: #fff;
  box-shadow: 0 1px 2px #1018280d, 0 0 0 4px #f2f4f7;
}

.uui-button-secondary-gray.show-tablet {
  display: none;
}

.uui-navbar08_menu {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
  position: static;
}

.uui-button {
  grid-column-gap: .5rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #687531;
  border: 1px solid #687531;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button:hover {
  background-color: #6941c6;
  border-color: #6941c6;
}

.uui-button:focus {
  background-color: #7f56d9;
  box-shadow: 0 1px 2px #1018280d, 0 0 0 4px #f4ebff;
}

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

.uui-navbar08_menu-button {
  padding: 0;
}

.uui-navbar08_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.uui-logo_image-2 {
  flex: none;
  width: auto;
  height: 100%;
  display: none;
}

.uui-navbar08_logo-link {
  padding-left: 0;
}

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

.uui-button-tertiary-gray:hover {
  color: #344054;
  background-color: #f9fafb;
}

.uui-button-tertiary-gray.hide-tablet {
  mix-blend-mode: normal;
}

.image-3 {
  width: 15%;
  height: auto;
}

.uui-footer01_left-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 32rem;
  display: flex;
}

.uui-footer01_bottom-wrapper {
  text-align: right;
  border-top: 1px solid #eaecf0;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
}

.f-footer-social {
  color: #160042;
  background-color: #ecf0f8;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: color .3s;
  display: flex;
}

.f-footer-social:hover {
  color: #642eff;
}

.section-5 {
  background-color: #f7f9fd;
}

.uui-space-xsmall-4 {
  width: 100%;
  min-height: 1rem;
}

.uui-footer01_top-wrapper {
  grid-column-gap: 3vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr auto .25fr;
  align-items: start;
}

.uui-logo_component-3 {
  flex-wrap: nowrap;
  width: auto;
  height: 2rem;
  display: flex;
}

.uui-logo_logotype-3 {
  flex: none;
  width: 200px;
  height: 160%;
  padding-bottom: 40px;
}

.uui-footer01_menu-wrapper {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: center stretch;
  margin-top: 15px;
}

.uui-footer01_menu-wrapper.mobile {
  grid-column-gap: .5rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .9fr 1fr 1.25fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin-top: 0;
  padding-bottom: 5px;
  display: grid;
}

.uui-footer01_menu-wrapper.mobile._1 {
  grid-template-columns: 1fr 1fr 1fr;
}

.uui-footer01_menu-wrapper.mobile.d {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

.uui-footer01_menu-wrapper.mobile.d.x {
  grid-row-gap: 0rem;
  margin-top: 0;
}

.uui-footer01_menu-wrapper.mobile.d.x.n {
  grid-column-gap: 0rem;
  grid-template-columns: 1fr;
}

.uui-footer01_menu-wrapper.mobile.d._2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1.2fr .6fr;
  justify-content: stretch;
  padding-bottom: 10px;
}

.uui-footer01_menu-wrapper.mobile._2 {
  grid-template-columns: 1.2fr .8fr;
}

.f-footer-social-row-large {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 60px;
  display: flex;
}

.text-block-11 {
  color: var(--grye2);
  letter-spacing: -.5px;
  font-family: PT Sans, sans-serif;
  font-weight: 500;
}

.text-block-11.e {
  color: var(--grey-3);
}

.f-footer-detail {
  color: #292929;
  letter-spacing: -.5px;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.uui-footer01_logo-link {
  margin-bottom: 2rem;
  line-height: 60px;
}

.f-icon-regular {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color .2s;
  display: flex;
}

.f-footer-social-group {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.uui-padding-vertical-xlarge-2 {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.footer {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.div-block-8 {
  height: 300px;
}

.uui-pricing11_plan-name-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.uui-heading-xxsmall-3 {
  color: #fff;
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  font-family: PT Sans, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.uui-heading-xxsmall-3.sma {
  color: #fff;
  width: auto;
  margin-bottom: .125rem;
  font-family: Open Sans, sans-serif;
  font-size: .7rem;
  font-weight: 400;
}

.uui-heading-xxsmall-3.sma.price {
  letter-spacing: -.5px;
  padding-bottom: 20px;
}

.uui-heading-xxsmall-3.sma.price.dd {
  text-decoration: line-through;
}

.uui-heading-xxsmall-3.sma.price.dd.event {
  font-weight: 700;
  text-decoration: none;
}

.uui-heading-xxsmall-3.sma.price.dd.event2 {
  padding-bottom: 0;
}

.uui-heading-xxsmall-3.sma.price.dd.basic {
  text-decoration: none;
}

.uui-heading-xxsmall-3.sma.dd {
  width: 240px;
  font-size: .7rem;
  font-weight: 300;
}

.uui-heading-xxsmall-3.sma.dd.kk {
  width: 280px;
}

.uui-pricing11_plan-name-wrapper-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-10 {
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 0;
}

.uui-button-6 {
  grid-column-gap: .5rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #687531;
  border: 1px solid #687531;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-bottom: 0;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button-6:hover {
  background-color: #6941c6;
  border-color: #6941c6;
}

.uui-button-6:focus {
  background-color: #7f56d9;
  box-shadow: 0 1px 2px #1018280d, 0 0 0 4px #f4ebff;
}

.uui-button-6.size2 {
  width: 200px;
}

.text-block-12 {
  font-family: PT Sans, sans-serif;
}

.div-block-11 {
  background-color: var(--auca_main);
  padding-top: 10px;
  padding-left: 20px;
}

.div-block-11.premium {
  background-color: #6b55e9;
  border-bottom-right-radius: 10px;
  height: 30px;
  margin-top: 0;
  padding-top: 0;
  padding-right: 20px;
}

.div-block-11.premium.recomeend {
  background-color: var(--auca_main);
}

.text-block-13 {
  object-fit: fill;
  height: auto;
  padding-top: 2px;
  font-family: PT Sans, sans-serif;
  text-decoration: none;
  overflow: visible;
}

.background-video-3 {
  width: auto;
  height: 100%;
}

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

.text-block-14 {
  color: var(--color--grey);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.text-block-15 {
  font-family: PT Sans, sans-serif;
}

.text-block-15.h {
  font-weight: 700;
}

.text-block-16 {
  color: var(--grey-3);
  font-family: PT Sans, sans-serif;
}

.section-6, .section-8 {
  background-color: var(--color--dark-grey);
}

.section-9 {
  background-color: #fff;
}

.div-block-13 {
  height: auto;
}

.color {
  background-color: #f0f0f0;
}

.image-6 {
  width: 50%;
}

.div-block-14 {
  margin-top: 80px;
  margin-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}

.bold-text {
  color: var(--auca_main);
}

.description {
  color: var(--grye2);
  font-family: PT Sans, sans-serif;
  font-style: italic;
}

.bold-text-2, .text-block-17 {
  font-family: PT Sans, sans-serif;
}

.text-block-17.event {
  opacity: 1;
  color: var(--grye2);
}

.image-7 {
  width: 24px;
  height: 24px;
}

.text-span-4 {
  color: var(--auca_main);
  font-weight: 700;
}

.text-span-5 {
  color: var(--color--dark-grey);
  -webkit-text-stroke-color: var(--color--dark-grey);
  font-weight: 700;
}

.h {
  color: var(--auca_main);
  font-family: PT Sans, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.link-2, .link-3 {
  color: var(--color--dark-grey);
}

.livechat-button {
  background-color: #000;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  display: flex;
}

.chat-block {
  background-color: #fff;
  border-radius: 8px;
  width: 80%;
  padding: 15px;
}

.close-live-chat-container {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
  display: flex;
}

.live-icon-chat {
  margin-right: 0;
}

.top-section {
  justify-content: space-between;
  align-items: center;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: auto 30px 30px auto;
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 25%;
  text-decoration: none;
  display: flex;
}

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: #383838;
  transform: scale(1.05);
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
  position: static;
}

.live-chat-top-text.block {
  color: #b0b0b0;
  margin-bottom: 10px;
  font-size: 12px;
}

.chat-section {
  background-color: #e6ddd4;
  height: 50%;
  padding: 16px 20px;
}

.small-whatsapp-icon {
  margin-right: 10px;
}

.live-icon {
  background-color: var(--color--orange);
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: 5px auto auto 5px;
}

.whatsapp-chat {
  background-color: #fff;
  border: 1px solid #00000029;
  border-radius: 20px;
  flex-direction: column;
  width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.live-chat-bottom-text {
  font-size: 10px;
}

.live-chat-bottom-text.block {
  margin-bottom: 5px;
  font-size: 12px;
}

@media screen and (min-width: 1280px) {
  .container {
    border-style: none;
    margin-bottom: 0;
  }

  .container.small, .padding-global.price-section {
    margin-bottom: 0;
  }

  .padding-global.section7 {
    margin-bottom: 0;
  }

  .text-weight-medium {
    font-family: PT Sans, sans-serif;
  }

  .heading-6.text-weight-medium {
    color: var(--color--dark-grey);
    font-family: PT Sans, sans-serif;
    font-size: var(--heading--h5);
  }

  .text-size-medium {
    color: var(--grye2);
    width: 600px;
    font-family: PT Sans, sans-serif;
    font-size: 1.125rem;
  }

  .text-size-medium.white {
    color: var(--grey-3);
    width: auto;
    font-family: PT Sans, sans-serif;
  }

  .text-size-medium.white._3 {
    font-weight: 400;
  }

  .text-size-medium.h {
    width: 390px;
  }

  .text-size-medium.dd._1 {
    width: 370px;
  }

  .text-size-medium.g {
    width: 380px;
  }

  .text-size-medium._3 {
    font-weight: 400;
  }

  .heading-4.text-weight-bold {
    color: var(--color--dark-grey);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: var(--heading--h4);
    font-weight: 600;
  }

  .heading-4.text-weight-medium {
    color: var(--color--white);
    font-family: PT Sans, sans-serif;
    font-size: var(--heading--h5);
    letter-spacing: -2px;
    -webkit-text-stroke-color: var(--color--white);
    line-height: 1.2;
  }

  .heading-4.text-weight-medium.review {
    color: var(--color--white);
    font-size: var(--heading--h4);
    font-weight: 600;
  }

  .heading-5.text-weight-bold {
    font-family: PT Sans, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    overflow: visible;
  }

  .text-size-small.text-weight-bold {
    color: var(--auca_main);
    -webkit-text-stroke-color: var(--auca_main);
    font-family: PT Sans, sans-serif;
  }

  .max-width-50ch {
    max-width: 60ch;
  }

  .read-more-tag {
    border-color: var(--auca_main);
  }

  .testimonial-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 160px;
  }

  .testimonial-grid._2 {
    align-self: center;
    max-width: 84rem;
  }

  .icon {
    width: 40%;
    height: 40%;
  }

  .icon.review {
    width: 100%;
    height: 100%;
  }

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

  .max-width-40ch {
    max-width: 60ch;
  }

  .testimonial-content {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .testimonial-card {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    background-color: var(--color--grey);
    border-radius: 15px;
    padding-bottom: 1rem;
  }

  .testimonial-card.hide-landscape {
    background-color: var(--color--grey);
    border-radius: 15px;
  }

  .testimonial-card._2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 64rem;
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .steps-card {
    border-style: solid;
    border-color: var(--grye2);
    background-color: #a0b44c;
    grid-template-columns: 1fr 1.5fr;
    height: 70vh;
  }

  .steps-content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .steps-tag {
    border-color: var(--auca_sub);
  }

  .image {
    align-self: center;
    width: 49%;
    max-width: 90%;
    height: auto;
  }

  .image._3 {
    width: 99%;
    max-width: 100%;
    height: 50%;
  }

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

  .image.main {
    width: 100%;
    max-width: 100%;
    height: 700px;
  }

  .steps-item {
    border: 1px #000;
  }

  .steps-wrapper {
    margin-top: 0;
    padding-bottom: 60px;
  }

  .credits-wrapper {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    color: #8f8f8f;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    font-family: PT Sans, sans-serif;
  }

  .footer-social-wrapper {
    margin-top: 1rem;
    margin-bottom: 4rem;
  }

  .footer-links-wrapper {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    margin-bottom: 0;
  }

  .paragraph {
    color: #8f8f8f;
  }

  .footer-heading {
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  .footer-links {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .footer-social {
    background-color: #f0f0f0;
    transition: all .3s;
  }

  .footer-component {
    padding-top: 4rem;
  }

  .footer-component.footer {
    padding-top: 0;
  }

  .about-features-image {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .about-features-card {
    color: var(--color--black);
    background-color: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .banner-button-line {
    background-color: var(--auca_main);
  }

  .bottom-content {
    grid-column-gap: 1.9rem;
    grid-row-gap: 1.9rem;
  }

  .banner-content {
    grid-column-gap: 7.6rem;
    grid-row-gap: 7.6rem;
    margin-top: 90px;
  }

  .banner-wrapper {
    border-radius: 1.5rem;
    height: 400px;
    padding-bottom: 1rem;
  }

  .check-icon-wrap {
    background-color: #ddd;
  }

  .features-vantages-content {
    grid-row-gap: 1rem;
  }

  .features-wrapper {
    grid-column-gap: 5.8rem;
    grid-row-gap: 5.8rem;
    height: 100%;
    margin-top: 8rem;
  }

  .features-image-container {
    width: auto;
    height: auto;
  }

  .check-list {
    grid-row-gap: .7rem;
  }

  .features-image-wrapper {
    background-color: #dfdfdf00;
    width: 400px;
    min-width: 600px;
    max-width: 400px;
    height: 600px;
    min-height: 400px;
    max-height: 600px;
  }

  .features-image-wrapper.step3 {
    width: auto;
    min-width: 600px;
    max-width: 600px;
    height: auto;
    max-height: 500px;
  }

  .features-image-wrapper.step2 {
    width: 500px;
    height: 500px;
  }

  .features-vantages {
    grid-column-gap: 7vw;
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .f-h1-heading {
    color: var(--color--dark-grey);
    font-family: PT Sans, sans-serif;
  }

  .f-button-neutral {
    transition-property: background-color;
  }

  .f-button-neutral.video {
    height: auto;
  }

  .text-block-7 {
    font-family: PT Sans, sans-serif;
  }

  .text-block-7.video {
    height: auto;
  }

  .heading-7.white.mobile {
    color: var(--color--dark-grey);
    font-family: PT Sans, sans-serif;
  }

  .uui-pricing11_price {
    margin-top: .5rem;
    margin-bottom: 1rem;
    font-size: 28px;
  }

  .text-span-2 {
    color: var(--auca_sub);
  }

  .div-block {
    background-image: url('../images/pexels-michael-block-1691617-3225529.jpg');
    background-position: 0 0;
    background-size: auto;
  }

  .rt-home-one-offer-text {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
  }

  .rt-home-one-offer-image-overlay {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-image: linear-gradient(#fff0 46%, #000);
    grid-template: "."
                   "Area"
                   / 1fr;
    grid-auto-columns: 1fr;
    place-items: end start;
    display: grid;
  }

  .rt-home-one-offer-image-overlay.price {
    background-image: linear-gradient(0deg, #000, #000 0%, #0000);
  }

  .rt-home-one-offer-left-arrow {
    left: 82%;
  }

  .rt-home-one-offer-image {
    height: 600px;
    margin-bottom: 160px;
  }

  .rt-home-one-offer-image.non {
    height: 500px;
  }

  .rt-auto-fit-two.rt-offer-image.rt-responsive-image-full-width {
    background-color: #0000;
    margin-bottom: 0;
  }

  .rt-auto-fit-two.rt-offer-image.tree {
    height: 100%;
  }

  .rt-home-one-offer-main {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    display: flex;
  }

  .rt-heading-five-10 {
    font-size: 25px;
    line-height: 35px;
  }

  .div-block-2 {
    box-sizing: content-box;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0;
    display: grid;
  }

  .div-block-2._1 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .text-block-8 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: var(--text-size--large);
    flex: 0 auto;
    margin-top: 0;
    padding-top: 0;
    text-decoration: none;
  }

  .text-block-8.main {
    width: var(--text-size--large);
  }

  .text-block-9 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  }

  .video {
    height: 400px;
  }

  .background-video {
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    height: 250px;
  }

  .div-block-3 {
    border: 0px solid var(--color--dark-grey);
    background-color: var(--color--white);
    color: var(--color--black);
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
  }

  .div-block-4 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .mask {
    height: 400px;
  }

  .slide {
    height: auto;
  }

  .background-video-2 {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 300px;
  }

  .heading-8 {
    color: var(--color--grey);
    background-color: #fff0;
    flex: 1;
    font-family: PT Sans, sans-serif;
    font-size: 16px;
    font-weight: 600;
  }

  .div-block-5 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    height: 400px;
    display: grid;
  }

  .slide-nav {
    justify-content: flex-start;
    align-items: center;
    width: 50px;
    height: 50px;
    line-height: 1rem;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
  }

  .slider {
    background-color: #ddd0;
    align-self: stretch;
    height: 430px;
  }

  .div-block-6 {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    color: var(--color--black);
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0 0 15px 15px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    display: flex;
  }

  .image-2 {
    width: 10%;
    height: auto;
  }

  .left-arrow {
    inset: 0% auto 0% 0%;
  }

  .uui-logo_component-2 {
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 3rem;
  }

  .uui-logo_logotype-2 {
    width: 100px;
    height: auto;
  }

  .uui-navbar08_container {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .uui-button-tertiary-gray.hide-tablet {
    color: var(--grye2);
    transition-property: none;
  }

  .text-block-10 {
    -webkit-text-stroke-color: var(--color--white);
  }

  .image-3 {
    aspect-ratio: custom;
    width: 15%;
    height: auto;
    margin-bottom: 20px;
    display: block;
  }

  .uui-footer01_bottom-wrapper {
    -webkit-text-stroke-color: var(--color--grey);
    border-top-color: #6a6b6e;
    margin-top: 0;
  }

  .f-footer-social {
    background-color: #43434b;
  }

  .section-5 {
    background-color: #1e1e20;
  }

  .uui-logo_logotype-3 {
    opacity: 1;
    width: 180px;
    margin-bottom: 0;
  }

  .uui-footer01_menu-wrapper.mobile {
    grid-column-gap: 1rem;
    grid-row-gap: 0rem;
    flex-flow: row;
    flex: 1;
    grid-template-rows: auto;
    grid-template-columns: .75fr .75fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    margin-top: 0;
    display: grid;
    overflow: visible;
  }

  .uui-footer01_menu-wrapper.mobile.d {
    grid-row-gap: 1rem;
    grid-template-columns: 2fr 2fr;
  }

  .uui-footer01_menu-wrapper.mobile.d._2 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 6fr 4fr;
    padding-bottom: 20px;
  }

  .text-block-11 {
    text-align: center;
    font-family: PT Sans, sans-serif;
  }

  .f-footer-detail {
    -webkit-text-stroke-color: #8f8f8f;
  }

  .f-icon-regular {
    color: #292929;
  }

  .div-block-7 {
    padding-bottom: 140px;
  }

  .footer {
    margin-left: 0;
    margin-right: 5px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-4 {
    flex: 0 auto;
    width: 15%;
    height: auto;
  }

  .uui-pricing11_plan-name-wrapper {
    font-size: var(--heading--h5);
    font-weight: 400;
  }

  .uui-heading-xxsmall-3 {
    color: #fff;
    font-family: PT Sans, sans-serif;
    font-size: var(--heading--h5);
    padding-left: 30px;
    overflow: visible;
  }

  .uui-heading-xxsmall-3.sma {
    font-size: var(--text-size--regular);
    width: 360px;
    padding-right: 10px;
    font-weight: 300;
  }

  .uui-heading-xxsmall-3.sma.price {
    padding-bottom: 30px;
  }

  .uui-heading-xxsmall-3.sma.price.dd {
    grid-column-gap: 0rem;
    width: 290px;
    margin-bottom: .125rem;
    padding-bottom: 0;
    text-decoration: none;
  }

  .uui-heading-xxsmall-3.sma.price.dd.event {
    padding-bottom: 30px;
    font-family: PT Sans, sans-serif;
    font-weight: 600;
    text-decoration: none;
  }

  .uui-heading-xxsmall-3.sma.price.dd.event2 {
    text-decoration: line-through;
  }

  .uui-heading-xxsmall-3.sma.dd {
    width: 310px;
    font-family: PT Sans, sans-serif;
    font-size: 1rem;
  }

  .uui-heading-xxsmall-3.sma.dd.kk {
    width: 300px;
  }

  .div-block-9 {
    padding-bottom: 40px;
  }

  .div-block-10 {
    width: auto;
    margin-left: 30px;
    padding-left: 0;
  }

  .uui-button-6 {
    width: 140px;
    padding: .5rem 0;
  }

  .uui-button-6.size2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .text-block-12 {
    font-family: PT Sans, sans-serif;
    font-size: var(--text-size--regular);
    font-weight: 500;
  }

  .div-block-11 {
    background-color: #687531;
    border-bottom-right-radius: 20px;
    height: 10px;
    padding-top: 0;
    padding-bottom: 40px;
    padding-right: 20px;
    line-height: 1;
  }

  .div-block-11.premium {
    background-color: #6b55e9;
  }

  .text-block-13 {
    padding-top: 10px;
    padding-left: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .background-video-3 {
    height: 100%;
    text-decoration: overline;
    position: relative;
    overflow: scroll;
  }

  .text-block-14 {
    color: var(--color--grey);
  }

  .text-block-15 {
    color: var(--color--grey);
    font-family: PT Sans, sans-serif;
  }

  .text-block-15.h {
    color: var(--auca_main);
  }

  .text-block-16 {
    color: #e9e9e9;
    max-width: 600px;
    font-family: PT Sans, sans-serif;
  }

  .section-6 {
    background-color: var(--color--dark-grey);
    margin-bottom: 0;
  }

  .section-7 {
    margin-bottom: 0;
  }

  .section-8 {
    background-color: var(--color--dark-grey);
  }

  .div-block-12 {
    height: 0;
    padding-bottom: 20px;
  }

  .section-9 {
    background-color: var(--color--white);
    color: var(--color--white);
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .color {
    background-color: #f0f0f0;
  }

  .image-5 {
    width: 80%;
    height: 80%;
  }

  .image-6 {
    width: 40%;
    height: 40%;
  }

  .text-span-3 {
    color: var(--auca_main);
  }

  .background-video-4 {
    height: 1000px;
    overflow: scroll;
  }

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

  .div-block-14 {
    padding: 0 100px;
  }

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

  .description {
    color: var(--grye2);
    font-family: PT Sans, sans-serif;
    font-style: italic;
  }

  .bold-text-2, .text-block-17, .paragraph-2 {
    font-family: PT Sans, sans-serif;
  }

  .text-span-5, .link-2, .link-3 {
    color: var(--color--dark-grey);
  }

  .live-icon {
    background-color: var(--color--orange);
  }
}

@media screen and (min-width: 1920px) {
  .text-size-medium.white {
    width: auto;
  }

  .text-size-medium.dd._1 {
    width: 360px;
  }

  .text-size-medium.g {
    width: 370px;
  }

  .text-size-medium._3 {
    font-weight: 400;
  }

  .testimonial-grid._2 {
    flex: 0 auto;
    grid-template-columns: 1.25fr;
  }

  .testimonial-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .testimonial-card._2 {
    justify-content: space-between;
    align-items: flex-start;
    min-width: 84px;
    max-width: 84rem;
    padding-left: 3rem;
  }

  .image.main {
    vertical-align: baseline;
    display: inline-block;
  }

  .section-9 {
    background-color: var(--color--white);
    color: #fff;
  }

  .livechat-button {
    transition: all .2s;
  }

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

  .whatsapp-chat {
    display: none;
  }

  .text-span-7 {
    letter-spacing: -1px;
  }
}

@media screen and (max-width: 991px) {
  .heading-2 {
    font-size: 4.5rem;
  }

  .container {
    margin-bottom: 0;
  }

  .container.small {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .style-guide-header {
    margin-bottom: 0;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
  }

  .heading-6 {
    font-size: 1.75rem;
  }

  .text-size-large {
    font-size: 1.4rem;
  }

  .text-size-medium {
    text-align: left;
    align-self: center;
    width: 320px;
  }

  .text-size-medium.white {
    width: auto;
  }

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

  .text-size-medium.h {
    text-align: center;
  }

  .text-size-medium.m {
    text-align: left;
    width: 260px;
  }

  .text-size-medium.dd {
    width: 390px;
  }

  .text-size-medium.dd._1, .text-size-medium.dd._3 {
    text-align: center;
  }

  .text-size-medium.d2 {
    text-align: center;
    width: 320px;
  }

  .text-size-medium.g {
    text-align: center;
  }

  .text-size-medium.dddd {
    text-align: left;
    width: 300px;
  }

  .text-size-medium._3 {
    align-self: flex-start;
    width: auto;
  }

  .heading-1 {
    font-size: 8rem;
    line-height: 1.15;
  }

  .style-guide-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

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

  .heading-4.text-weight-medium {
    letter-spacing: -1px;
    max-width: 300px;
  }

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

  .section-style-guide {
    margin-top: 4rem;
  }

  .heading-3 {
    font-size: 3.5rem;
  }

  .trusted-by-hero-logos {
    flex-flow: wrap;
  }

  .max-width-50ch {
    max-width: none;
  }

  .integrations-block.second {
    width: 100%;
    padding: 2rem 2.5rem;
  }

  .integrations-block.first {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 2.5rem;
  }

  .header {
    max-width: 70vw;
  }

  .features-cards-wrapper {
    margin-top: 6rem;
  }

  .integrations-content-component {
    flex-flow: column;
  }

  .home-features-wrapper {
    margin-top: 8rem;
  }

  .features-grid {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
    align-self: flex-start;
    padding-left: 0;
  }

  .testimonial-grid._2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex: 0 auto;
    justify-content: start;
    align-self: center;
    place-items: end start;
  }

  .testimonial-wrapper {
    margin-top: 8rem;
  }

  .testimonial-component {
    max-width: none;
  }

  .testimonial-card {
    justify-content: space-between;
    align-items: flex-start;
    width: 340px;
  }

  .testimonial-card._2 {
    justify-content: space-between;
    align-items: flex-start;
    max-width: 43rem;
    padding-top: 0;
    padding-left: 3rem;
  }

  .steps-card {
    border-radius: 1rem;
    flex-flow: column;
    height: auto;
  }

  .steps-content {
    width: 100%;
  }

  .left-content {
    justify-content: space-between;
    width: 100%;
    padding: 4rem 4rem 4rem 2rem;
  }

  .right-content {
    width: 100%;
    height: 50vh;
  }

  .image {
    flex: none;
    width: 33%;
    height: 100%;
  }

  .image._3 {
    flex: none;
    height: 72%;
  }

  .steps-description {
    max-width: none;
  }

  .steps-item {
    position: relative;
    top: auto;
  }

  .steps-wrapper {
    margin-top: 0;
  }

  .credits-wrapper {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
  }

  .footer-social-wrapper, .footer-heading {
    margin-bottom: 4rem;
  }

  .footer-social {
    background-color: #f0f0f0;
  }

  .footer-component {
    min-height: 0;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .trusted-by-about-logos {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
    flex-flow: wrap;
  }

  .max-width-33ch {
    max-width: 50ch;
  }

  .about-features-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 8rem;
  }

  .about-features-card {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .about-features-content {
    max-width: 50ch;
  }

  .about-features-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    display: flex;
  }

  .about-features-header {
    max-width: none;
  }

  .phase-cards-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 8rem;
  }

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

  .phase-cards {
    height: auto;
    padding: 3rem 2.5rem;
  }

  .phase-cards-header {
    max-width: none;
  }

  .team-grid {
    flex-flow: column;
    display: flex;
  }

  .team-image {
    height: auto;
  }

  .team-wrapper {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .team-header {
    max-width: none;
  }

  .check-icon-wrap {
    justify-content: center;
    align-self: auto;
    align-items: center;
  }

  .features-component {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    flex-flow: column;
    margin-bottom: 0;
    display: flex;
  }

  .features-heading {
    text-align: left;
    align-items: flex-start;
  }

  .features-heading.align-left {
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .features-vantages-content {
    order: 1;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 100%;
  }

  .features-wrapper {
    margin-top: 8rem;
  }

  .gradient-overlay {
    background-image: linear-gradient(0deg, #101011, #10101196);
  }

  .gradient-overlay.bigger {
    height: 100vw;
  }

  .features-image-container {
    width: 100%;
  }

  .check-list {
    justify-content: center;
    align-self: center;
    align-items: center;
    padding-left: 0;
  }

  .check-item {
    grid-column-gap: 0rem;
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .check-item.ss {
    grid-column-gap: 0rem;
  }

  .check-item.rr {
    grid-column-gap: .6rem;
    grid-row-gap: .6rem;
  }

  .features-image-wrapper {
    width: 100%;
    min-width: auto;
    max-width: none;
    height: 30vw;
    max-height: 50rem;
  }

  .features-heading-wrapper {
    max-width: none;
  }

  .features-icon-wrapper {
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 96px;
    display: flex;
  }

  .features-vantages {
    grid-column-gap: 0vw;
    grid-row-gap: 3rem;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

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

  .blog-card {
    width: 100%;
    max-width: none;
  }

  .faq-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .faq-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .faq-title-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 3rem;
    display: flex;
  }

  .faq-action-wrapper {
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    right: 0;
  }

  .faq-bottom {
    margin-right: 0;
  }

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

  .enterprise-content {
    grid-row-gap: 1rem;
    flex-direction: column;
  }

  .enterprise-text {
    margin-left: 0;
  }

  .enterprise-banner {
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: center;
  }

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

  .price-card {
    min-height: auto;
  }

  .price-check-list {
    padding-left: 0;
  }

  .utility-page-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .blog-component {
    max-width: none;
    margin-top: 8rem;
    margin-bottom: 6rem;
  }

  .rich-text-paddig {
    padding-left: 0;
  }

  .not-found-heading {
    font-size: 18rem;
  }

  .larst-card-nav {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .menu-button {
    border-radius: 4px;
    overflow: hidden;
  }

  .menu-button.w--open {
    background-color: #7d7d7d66;
  }

  .right-navbar-content {
    display: none;
  }

  .navbar-component {
    padding-top: .6rem;
    padding-bottom: .6rem;
  }

  .nav-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: #fff;
    background-color: #1a1a1a;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    position: absolute;
  }

  .nav-menu-wrap {
    justify-content: flex-end;
    align-items: center;
  }

  .mobile-navbar-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: space-around;
    display: flex;
  }

  .menu-icon {
    color: #b5b5b5;
  }

  .nav-link {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    display: flex;
  }

  .password-heading {
    white-space: nowrap;
    font-size: 10vw;
  }

  .style-guide-heading {
    font-size: 7rem;
  }

  .changelog-component {
    flex-flow: column;
    display: flex;
  }

  .style-guide-text {
    font-size: 2rem;
  }

  .text-size-huge {
    font-size: 2.3rem;
  }

  .license-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 5.3rem;
    margin-bottom: 6rem;
  }

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

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

  .form-wrapper {
    width: 100%;
  }

  .heading-2-instruction {
    font-size: 4.5rem;
  }

  .heading-7.white.mobile.price.event {
    word-break: keep-all;
  }

  .rt-category-cards-text-3.rt-text-white {
    max-width: none;
  }

  .rt-about-one-team-block {
    flex: 0 auto;
  }

  .rt-about-one-team-block.rt-margin-top-hundred.rt-margin-off {
    margin-top: 0;
  }

  .rt-about-one-team-block.rt-margin-buttom-hundred.rt-margin-off {
    margin-bottom: 0;
  }

  .rt-about-one-team-main {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .rt-home-three-about-main {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
    display: grid;
  }

  .rt-home-three-about-box.rt-padding-top-fourty, .rt-home-three-about-box.rt-padding-top-eighty {
    margin-top: 0;
  }

  .rt-home-three-about-image-merquee-wrapper, .rt-home-three-about-view-button-wrapper {
    display: none;
  }

  .rt-home-one-offer-text {
    align-items: center;
    padding-left: 20px;
    padding-right: 0;
  }

  .rt-home-one-offer-image-overlay.price {
    background-image: linear-gradient(180deg, #0000, #101011 84%, var(--color--black) 100%, #00000108);
  }

  .rt-home-one-offer-left-arrow {
    inset: auto auto 0% 35%;
  }

  .rt-home-one-offer-right-arrow {
    inset: auto 35% 0% auto;
  }

  .rt-inner-container.rt-position-relative.rt-padding-bottom {
    padding-bottom: 90px;
  }

  .rt-home-one-offer-heading {
    max-width: 100%;
  }

  .rt-home-one-offer-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .rt-home-one-offer {
    padding-top: 70px;
  }

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

  .menu-icon_component {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .uui-navbar08_button-wrapper {
    flex-direction: column-reverse;
    align-items: stretch;
    display: flex;
  }

  .uui-button-secondary-gray.show-tablet {
    display: block;
  }

  .uui-navbar08_menu {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-top: 1px solid #f2f4f7;
    align-items: flex-start;
    height: 100vh;
    margin-left: 0;
    padding: 1.5rem 2rem 5rem;
    position: absolute;
    overflow: auto;
  }

  .menu-icon_line-middle {
    background-color: #344054;
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-bottom {
    background-color: #344054;
    border-radius: 1rem;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .uui-navbar08_menu-right {
    flex-direction: column-reverse;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    padding-bottom: 7rem;
  }

  .uui-navbar08_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon_line-top {
    background-color: #344054;
    border-radius: 1rem;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .uui-footer01_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .uui-footer01_menu-wrapper.mobile {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr;
  }

  .uui-footer01_menu-wrapper.mobile._2 {
    grid-column-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1.2fr;
  }

  .f-footer-social-row-large {
    margin-left: 0;
  }

  .text-block-11 {
    letter-spacing: -1px;
  }

  .uui-padding-vertical-xlarge-2 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .uui-heading-xxsmall-3.sma {
    font-size: .6rem;
    font-weight: 300;
  }

  .uui-heading-xxsmall-3.sma.price.dd {
    margin-bottom: 0;
  }

  .uui-heading-xxsmall-3.sma.dd {
    word-break: keep-all;
    width: 190px;
    font-size: .8rem;
  }

  .uui-heading-xxsmall-3.sma.dd.kk {
    width: 200px;
  }

  .div-block-10 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 180px;
    margin-right: 0;
    display: block;
  }

  .uui-button-6.size2 {
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-12 {
    font-size: var(--text-size--small);
  }

  .image-5 {
    width: 50%;
  }

  .image-6 {
    text-align: center;
    max-width: 50%;
  }

  .description {
    letter-spacing: -1px;
    width: 330px;
  }

  .text-span-6 {
    letter-spacing: -2px;
  }

  .whatsapp-block {
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .hero-style-guide-wrapper {
    padding-top: 8rem;
  }

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

  .container.small {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .style-guide-header {
    font-size: .875rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .heading-6 {
    font-size: 1.5rem;
  }

  .text-size-large {
    font-size: 1.3rem;
  }

  .text-size-medium {
    width: 310px;
    font-size: 1.2rem;
  }

  .text-size-medium.m {
    width: 300px;
  }

  .text-size-medium.dd._1 {
    width: 380px;
  }

  .text-size-medium.g, .text-size-medium.ff {
    width: 340px;
  }

  .heading-1 {
    font-size: 6.5rem;
  }

  .style-guide-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .style-guide-menu {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

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

  .heading-3 {
    font-size: 3rem;
  }

  .double-button-component.margin-top-button-features {
    margin-top: 0;
  }

  .integrations-block.second, .integrations-block.first {
    width: 100%;
  }

  .header {
    max-width: none;
  }

  .features-cards-wrapper {
    margin-top: 4rem;
  }

  .integrations-content-component {
    flex-flow: column;
  }

  .home-features-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 6rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    align-self: center;
  }

  .testimonial-wrapper {
    margin-top: 6rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-card.hide-landscape {
    display: none;
  }

  .testimonial-card._2 {
    max-width: 33rem;
    padding-left: 2rem;
  }

  .steps-card {
    display: flex;
  }

  .left-content {
    padding: 3rem 2rem 2rem 3rem;
  }

  .image {
    flex: none;
    width: 45%;
  }

  .image._3 {
    flex: none;
    height: 54%;
  }

  .steps-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 6rem;
  }

  .credits-wrapper {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    flex-flow: row;
    align-self: flex-start;
  }

  .footer-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    background-color: #f0f0f0;
  }

  .footer-component {
    padding-top: 4rem;
  }

  .trusted-by-about-logos {
    grid-row-gap: 3rem;
    display: flex;
  }

  .about-features-image {
    height: 20rem;
  }

  .max-width-33ch {
    max-width: none;
  }

  .about-features-wrapper {
    margin-top: 6rem;
  }

  .about-features-card {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .phase-cards-wrapper {
    margin-top: 6rem;
  }

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

  .phase-cards {
    padding: 2.5rem 2rem;
  }

  .team-wrapper {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .banner-content {
    grid-column-gap: 10rem;
    grid-row-gap: 10rem;
  }

  .banner-wrapper {
    padding: 2.5rem;
  }

  .features-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .features-wrapper {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .features-image-wrapper {
    flex: 1;
  }

  .blog-list {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .faq-bottom-content {
    padding-bottom: 0;
  }

  .price-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .utility-page-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .blog-component {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .rich-text-paddig {
    padding-left: 0;
  }

  .not-found-heading {
    font-size: 12rem;
  }

  .navbar-component {
    padding-top: .3rem;
    padding-bottom: .3rem;
  }

  .mobile-navbar-content {
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
  }

  .style-guide-heading {
    font-size: 6rem;
  }

  .style-guide-heading.mobile {
    font-size: 4rem;
  }

  .changelog-component {
    grid-template-columns: 1fr;
  }

  .style-guide-text {
    font-size: 2rem;
    line-height: 1.15;
  }

  .license-content {
    grid-row-gap: 4rem;
    flex-direction: column;
  }

  .text-size-huge {
    font-size: 2rem;
    line-height: 1.3;
  }

  .license-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    margin-top: 4.2rem;
    margin-bottom: 5.7rem;
  }

  .delete-this {
    left: 1.5rem;
  }

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

  .f-h1-heading {
    margin-top: 0;
    font-size: 48px;
  }

  .uui-pricing11_price {
    font-size: 2.25rem;
  }

  .rt-autofit-cover.rt-mobile-landscape-image-full-width {
    width: 100%;
    height: 100%;
  }

  .rt-home-three-about-main {
    grid-template-columns: 1fr;
  }

  .rt-auto-fit-5.rt-landskape-image-full-width {
    width: 100%;
    height: 100%;
  }

  .rt-home-one-offer-left-arrow {
    left: 30%;
  }

  .rt-home-one-offer-right-arrow {
    right: 30%;
  }

  .rt-home-one-offer-mask {
    width: 100%;
    max-width: none;
  }

  .rt-home-one-offer-wrapper {
    margin-right: 0;
  }

  .rt-home-one-offer-item {
    padding-left: 0;
    padding-right: 0;
  }

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

  .div-block-2._1 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .uui-button-secondary-gray {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray:hover {
    color: #344054;
    background-color: #fff;
  }

  .uui-navbar08_menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-button {
    font-size: 1rem;
  }

  .uui-button:hover {
    background-color: #7f56d9;
    border-color: #7f56d9;
  }

  .uui-button-tertiary-gray:hover {
    color: #475467;
    background-color: #0000;
  }

  .image-3 {
    width: 10%;
    height: auto;
  }

  .uui-footer01_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 3rem;
  }

  .uui-space-xsmall-4 {
    min-height: .75rem;
  }

  .uui-footer01_top-wrapper {
    grid-row-gap: 3rem;
  }

  .uui-footer01_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .uui-footer01_menu-wrapper.mobile {
    grid-template-columns: 1fr;
  }

  .uui-footer01_logo-link {
    margin-bottom: 1.5rem;
    padding-left: 0;
  }

  .uui-padding-vertical-xlarge-2 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .uui-heading-xxsmall-3 {
    font-size: 1.125rem;
  }

  .uui-heading-xxsmall-3.sma.price.dd {
    width: 220px;
  }

  .uui-button-6 {
    font-size: 1rem;
  }

  .uui-button-6:hover {
    background-color: #7f56d9;
    border-color: #7f56d9;
  }

  .whatsapp-block {
    bottom: 15px;
    right: 15px;
  }
}

@media screen and (max-width: 479px) {
  .hero-style-guide-wrapper {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-2 {
    font-size: 3.5rem;
    line-height: 1.1;
  }

  .container {
    margin-bottom: 0;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-global.price-section {
    margin-top: 0;
  }

  .divider-line {
    width: 100%;
  }

  .heading-6 {
    font-size: 1.25rem;
  }

  .text-size-large {
    font-size: 1.2rem;
  }

  .style-guide-content {
    margin-bottom: 6rem;
  }

  .text-size-medium {
    text-align: left;
    letter-spacing: -.5px;
    width: 240px;
    font-size: 1rem;
  }

  .text-size-medium.white {
    width: auto;
  }

  .text-size-medium.white._3 {
    object-fit: contain;
    width: auto;
  }

  .text-size-medium.h {
    width: 250px;
  }

  .text-size-medium.m {
    text-align: center;
    width: 240px;
  }

  .text-size-medium.f {
    width: 220px;
  }

  .text-size-medium.dd._1 {
    text-align: center;
    word-break: keep-all;
    width: 240px;
  }

  .text-size-medium.dd._3 {
    text-align: center;
    word-break: keep-all;
    width: 254px;
  }

  .text-size-medium.d2 {
    text-align: center;
    width: 260px;
  }

  .text-size-medium.g {
    text-align: center;
    word-break: keep-all;
    width: 240px;
  }

  .text-size-medium.dddd {
    width: 260px;
  }

  .text-size-medium.ff {
    width: 240px;
  }

  .text-size-medium.ff.f {
    text-align: center;
  }

  .heading-1 {
    font-size: 5rem;
  }

  .style-guide-component {
    width: 100%;
  }

  .style-guide-menu {
    grid-column-gap: 1rem;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .heading-4.text-weight-medium {
    letter-spacing: -2px;
  }

  .heading-5 {
    font-size: 1.75rem;
  }

  .heading-5.text-weight-bold {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .text-size-small.text-weight-bold {
    color: var(--auca_sub);
  }

  .style-guide-menu-wrapper {
    width: 100%;
  }

  .heading-3 {
    font-size: 2.75rem;
  }

  .sticky-menu, .primary-button {
    width: 100%;
  }

  .trusted-by-hero-logos {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .logos {
    height: auto;
  }

  .double-button-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: center;
    width: 100%;
  }

  .secondary-button-text {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 2.5rem;
    display: flex;
  }

  .secondary-button {
    width: 100%;
    padding-top: .4rem;
    padding-bottom: .4rem;
  }

  .read-more-tag {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    border-color: var(--auca_sub);
    border-radius: 5rem;
    flex-flow: row;
    width: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .integrations-block.second, .integrations-block.first {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding: 1rem;
  }

  .integrations-image {
    height: 8rem;
  }

  .features-grid {
    grid-row-gap: 3rem;
    flex-flow: column;
    display: flex;
  }

  .features-content {
    max-width: none;
  }

  .testimonial-grid {
    flex: 0 auto;
    align-self: flex-start;
    place-items: center stretch;
  }

  .icon {
    width: 32%;
  }

  .icon.review {
    width: 100%;
  }

  .testimonial-card {
    width: 290px;
    max-width: none;
    height: auto;
    padding: 1.5rem;
  }

  .testimonial-card._2 {
    max-width: 18rem;
  }

  .steps-content {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .left-content {
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .steps-stack-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .right-content {
    flex-flow: column;
    align-items: center;
    padding-right: 1.75rem;
  }

  .steps-tag {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    border-radius: 1rem;
    flex-flow: row;
    width: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .image {
    width: 80%;
  }

  .image._3 {
    width: 60%;
    height: 80%;
  }

  .steps-item {
    top: auto;
  }

  .credits-wrapper {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-social-wrapper {
    margin-bottom: 2rem;
  }

  .footer-links-wrapper {
    text-align: center;
  }

  .footer-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    place-items: flex-start center;
  }

  .footer-links {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-social {
    background-color: #f0f0f0;
  }

  .about-features-content {
    margin-left: 0;
    margin-right: 0;
  }

  .phase-cards {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .button-content {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: space-between;
    width: 100%;
    display: flex;
  }

  .banner-content {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
  }

  .banner-button {
    width: 100%;
  }

  .banner-wrapper {
    padding: 1.5rem;
  }

  .check-icon-wrap {
    width: 1.2em;
    min-width: 1.2rem;
    height: 1.2rem;
    min-height: 1.2rem;
  }

  .check-icon-wrap.kk {
    margin-top: 3px;
  }

  .features-heading {
    width: 100%;
  }

  .features-heading.align-left {
    grid-row-gap: .5rem;
    text-align: center;
    flex: 0 auto;
    justify-content: center;
    align-self: center;
    align-items: center;
    max-width: none;
  }

  .check-icon {
    width: .6rem;
  }

  .features-vantages-content {
    padding-left: 0;
  }

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

  .check-item {
    grid-column-gap: .2rem;
    justify-content: center;
    align-items: flex-start;
  }

  .check-item.rr {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: center;
    align-items: center;
  }

  .check-item.rr.f {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features-image-wrapper {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .features-image-wrapper.step2 {
    min-width: 15rem;
    min-height: 20rem;
    max-height: 20px;
  }

  .features-heading-wrapper {
    text-align: center;
    justify-content: center;
    align-self: center;
    align-items: center;
    position: static;
  }

  .blog-list {
    grid-row-gap: 0rem;
  }

  .blog-card {
    grid-row-gap: 1rem;
    padding-bottom: 3rem;
  }

  .card-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-title-wrapper {
    padding-right: 3.5rem;
  }

  .faq-bottom-content {
    display: flex;
  }

  .price-button {
    align-items: stretch;
  }

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

  .blog-component {
    margin-top: 6rem;
  }

  .rich-text-paddig {
    margin-bottom: 2rem;
    padding-left: 0;
  }

  .not-found-heading {
    font-size: 7rem;
  }

  .larst-card-nav {
    border-top-right-radius: 0;
    border-bottom-left-radius: .5rem;
    padding-left: 2rem;
  }

  .navbar-component {
    padding-top: .2rem;
    padding-bottom: .2rem;
  }

  .nav-menu {
    width: 100%;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .about-hero-interaction {
    height: auto;
    margin-top: 4rem;
  }

  .hero-sticky-component {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: static;
  }

  .sticky-images {
    border-radius: .5rem;
  }

  .sticky-images.left {
    width: 100%;
    max-width: none;
    height: 50vw;
    margin-top: 0;
    position: relative;
    right: auto;
  }

  .sticky-images.middle {
    width: 100%;
    max-width: none;
    height: 50vw;
    position: relative;
  }

  .sticky-images.right {
    width: 100%;
    max-width: none;
    height: 50vw;
    margin-top: 0;
    position: relative;
    left: auto;
  }

  .divider-line-instructions {
    width: 100%;
  }

  .hero-changelog-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .style-guide-heading {
    font-size: 5rem;
    line-height: 1.1;
  }

  .style-guide-heading.mobile {
    font-size: 3rem;
  }

  .changelog-component {
    width: 100%;
  }

  .style-guide-text {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .text-size-huge {
    font-size: 2rem;
  }

  .license-component {
    grid-row-gap: 1.75rem;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }

  .form, .form-wrapper {
    width: 100%;
  }

  .button-elipse {
    width: 20rem;
    height: 20rem;
  }

  .button-wrapper {
    justify-content: space-between;
    width: 100%;
  }

  .heading-2-instruction {
    font-size: 3rem;
    line-height: 1.1;
  }

  .f-h1-heading {
    word-break: keep-all;
    margin-left: 0;
    margin-right: 0;
    font-size: 40px;
  }

  .f-header-button-wrapper {
    justify-content: center;
    align-items: center;
  }

  .heading-7 {
    letter-spacing: -.5px;
  }

  .heading-7.white.mobile {
    text-align: center;
    word-break: keep-all;
    align-self: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 44px;
  }

  .heading-7.white.mobile.price {
    justify-content: center;
    align-self: center;
    align-items: center;
    padding-right: 0;
  }

  .rt-home-one-offer-text {
    padding-bottom: 20px;
    padding-right: 0;
  }

  .rt-home-one-offer-left-arrow {
    left: 15%;
  }

  .rt-home-one-offer-right-arrow {
    right: 15%;
  }

  .rt-home-one-offer-image.non {
    height: 200px;
  }

  .rt-home-one-top-heading-line-2 {
    display: none;
  }

  .rt-heading-five-10 {
    font-size: 18px;
    line-height: 22px;
  }

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

  .div-block-2._1 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }

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

  .image-3._22 {
    width: 12%;
    margin-bottom: 10px;
  }

  .uui-footer01_bottom-wrapper {
    margin-top: 2rem;
  }

  .uui-footer01_top-wrapper {
    grid-column-gap: 2vw;
    grid-row-gap: 20px;
  }

  .uui-footer01_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .uui-footer01_menu-wrapper.mobile {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    text-align: center;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    align-self: center;
    padding-left: 0;
    padding-right: 0;
  }

  .uui-footer01_menu-wrapper.mobile.d {
    grid-template-columns: 1.5fr 1.25fr;
  }

  .uui-footer01_menu-wrapper.mobile.d.x.n {
    align-self: center;
  }

  .uui-footer01_menu-wrapper.mobile.d._2 {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    grid-template-columns: 1.2fr .8fr;
    justify-content: center;
    align-self: center;
  }

  .uui-footer01_menu-wrapper.mobile._2 {
    align-self: center;
  }

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

  .uui-footer01_logo-link.mobile {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

  .uui-heading-xxsmall-3.sma.dd {
    font-size: .8rem;
  }

  .uui-heading-xxsmall-3.sma.dd.kk {
    width: 230px;
  }

  .background-video-3 {
    height: 100%;
  }

  .text-block-15 {
    letter-spacing: 0;
    word-break: keep-all;
  }

  .text-block-16 {
    letter-spacing: -.5px;
  }

  .image-5, .image-6 {
    width: 32%;
  }

  .description {
    color: var(--grye2);
    font-family: PT Sans, sans-serif;
    font-style: italic;
  }

  .bold-text-2 {
    word-break: keep-all;
  }

  .whatsapp-block {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    bottom: 0;
    right: 0;
  }

  .whatsapp-container {
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: 0;
  }

  .whatsapp-chat {
    width: 100%;
    height: 40vh;
    position: relative;
  }
}

#w-node-ed433ff9-d576-7289-14b4-67609061216d-25bfa9c6, #w-node-f520bd8e-be4d-e329-78de-87e9e35f4581-25bfa9c6, #w-node-_1432d29b-3001-39d7-5772-f3ac47e23e07-25bfa9c6, #w-node-_72703d61-14f0-4877-98a3-bc5e4046a400-25bfa9c6, #w-node-_1ddeea0a-aef3-2a9d-28dd-eabae51b5060-25bfa9c6, #w-node-_1ddeea0a-aef3-2a9d-28dd-eabae51b506b-25bfa9c6, #w-node-_1ddeea0a-aef3-2a9d-28dd-eabae51b5076-25bfa9c6, #w-node-_1ddeea0a-aef3-2a9d-28dd-eabae51b5081-25bfa9c6 {
  justify-self: end;
}

#w-node-c52b37c1-b41b-470f-f0bd-64b64424d120-25bfa9c6 {
  place-self: start;
}

#w-node-f016746c-00e6-6a90-8f3a-a7e8a8e4c752-25bfa9c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start;
}

#w-node-_1c6caff1-54fa-3ff1-83ec-ae30740bde72-25bfa9c6 {
  place-self: start;
}

#w-node-_1c6caff1-54fa-3ff1-83ec-ae30740bde96-25bfa9c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start;
}

#w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75419-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e7541f-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75425-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e7542b-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75438-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75443-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e7544e-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75459-25bfa9c6 {
  justify-self: end;
}

#w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75460-25bfa9c6 {
  place-self: center;
}

#w-node-b90658f3-f139-d7d2-bc4e-4770a846c4ce-25bfa9c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d826023-8024-a1f0-39f2-d2f6de24407a-f6a6712e, #w-node-_48603e4a-7379-9092-5d8c-7603939cca16-f6a6712e, #w-node-afb88b9f-6e58-cbc0-d795-d2d4b7b68f0d-f6a6712e, #w-node-afb88b9f-6e58-cbc0-d795-d2d4b7b68f0f-f6a6712e, #w-node-_851ce174-1ec7-951b-bebf-dac610b2f72c-f6a6712e, #w-node-afb88b9f-6e58-cbc0-d795-d2d4b7b68f13-f6a6712e, #w-node-a265c696-9203-366d-ab10-7adb879a55d2-f6a6712e, #w-node-a265c696-9203-366d-ab10-7adb879a55d4-f6a6712e, #w-node-a265c696-9203-366d-ab10-7adb879a55d8-f6a6712e, #w-node-_1133f29e-0af9-7591-40b9-8019940ba944-f6a6712e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_6509065d-a105-aa39-dc71-4f3041c8aa46-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aa5d-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aa62-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aa79-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aaa3-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aac7-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aae5-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aae7-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aaec-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aaf1-25bfa9cf, #w-node-dd7df214-e761-ab1d-aed6-2c451646c459-25bfa9cf, #w-node-a5049ae8-6674-d873-8e1f-2d15f2daee2e-25bfa9cf, #w-node-_6509065d-a105-aa39-dc71-4f3041c8aafa-25bfa9cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae73a4fa-4647-403b-a6f8-ac6ec692aaf8-25bfa9d0 {
  place-self: center;
}

#w-node-ae73a4fa-4647-403b-a6f8-ac6ec692aafa-25bfa9d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-ae73a4fa-4647-403b-a6f8-ac6ec692aafc-25bfa9d0, #w-node-ae73a4fa-4647-403b-a6f8-ac6ec692aafe-25bfa9d0, #w-node-ae73a4fa-4647-403b-a6f8-ac6ec692ab00-25bfa9d0, #w-node-ae73a4fa-4647-403b-a6f8-ac6ec692ab02-25bfa9d0, #w-node-ae73a4fa-4647-403b-a6f8-ac6ec692ab04-25bfa9d0, #w-node-ae73a4fa-4647-403b-a6f8-ac6ec692ab06-25bfa9d0, #w-node-ae73a4fa-4647-403b-a6f8-ac6ec692ab08-25bfa9d0, #w-node-ae73a4fa-4647-403b-a6f8-ac6ec692ab0a-25bfa9d0 {
  place-self: center;
}

#w-node-b0baddf6-0c43-40d8-7f14-c746c2b3a395-25bfa9d4, #w-node-_4ef4cf6b-b6f7-79e8-09e3-947f0eee47d5-25bfa9d5, #w-node-_2b8467f3-6f47-de62-983c-32440ef64dc1-25bfa9db, #w-node-f6f89a7d-c001-e637-1e54-4afb3bc7aa43-25bfa9db, #w-node-_2b8467f3-6f47-de62-983c-32440ef64de0-25bfa9db {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1280px) {
  #w-node-d2708cf6-bdab-ef91-e9d3-e2e4985fd625-25bfa9c6 {
    place-self: auto;
  }

  #w-node-_525f333e-16b4-a716-1c03-a45f2fadfa63-25bfa9c6, #w-node-_525f333e-16b4-a716-1c03-a45f2fadfa73-25bfa9c6, #w-node-_525f333e-16b4-a716-1c03-a45f2fadfa83-25bfa9c6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-bce44bca-f3c9-f5b8-17a5-4d832385b688-25bfa9c6 {
    grid-area: Area;
  }

  #w-node-_59f926b5-def0-43a2-5abe-c741a12301e4-25bfa9c6 {
    grid-area: Area;
    place-self: stretch start;
  }

  #w-node-f016746c-00e6-6a90-8f3a-a7e8a8e4c752-25bfa9c6 {
    align-self: start;
  }

  #w-node-_391d73c6-16ec-1d87-f949-25b9c1eb0679-25bfa9c6 {
    grid-area: Area;
  }

  #w-node-_391d73c6-16ec-1d87-f949-25b9c1eb067a-25bfa9c6 {
    grid-area: Area;
    place-self: stretch start;
  }

  #w-node-_1c6caff1-54fa-3ff1-83ec-ae30740bde76-25bfa9c6 {
    grid-area: Area;
  }

  #w-node-_1c6caff1-54fa-3ff1-83ec-ae30740bde77-25bfa9c6 {
    grid-area: Area;
    place-self: stretch start;
  }

  #w-node-_1c6caff1-54fa-3ff1-83ec-ae30740bde86-25bfa9c6 {
    grid-area: Area;
  }

  #w-node-_1c6caff1-54fa-3ff1-83ec-ae30740bde87-25bfa9c6 {
    grid-area: Area;
    place-self: stretch start;
  }

  #w-node-_1c6caff1-54fa-3ff1-83ec-ae30740bde96-25bfa9c6 {
    align-self: start;
  }

  #w-node-_1c6caff1-54fa-3ff1-83ec-ae30740bde99-25bfa9c6 {
    grid-area: Area;
  }

  #w-node-_1c6caff1-54fa-3ff1-83ec-ae30740bde9a-25bfa9c6 {
    grid-area: Area;
    place-self: stretch start;
  }

  #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75460-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75466-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e7546c-25bfa9c6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3d826023-8024-a1f0-39f2-d2f6de24407a-f6a6712e, #w-node-_48603e4a-7379-9092-5d8c-7603939cca16-f6a6712e, #w-node-afb88b9f-6e58-cbc0-d795-d2d4b7b68f0d-f6a6712e, #w-node-afb88b9f-6e58-cbc0-d795-d2d4b7b68f0f-f6a6712e, #w-node-_851ce174-1ec7-951b-bebf-dac610b2f72c-f6a6712e, #w-node-afb88b9f-6e58-cbc0-d795-d2d4b7b68f13-f6a6712e, #w-node-a265c696-9203-366d-ab10-7adb879a55d2-f6a6712e, #w-node-a265c696-9203-366d-ab10-7adb879a55d4-f6a6712e, #w-node-a265c696-9203-366d-ab10-7adb879a55d8-f6a6712e, #w-node-_1133f29e-0af9-7591-40b9-8019940ba944-f6a6712e {
    place-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75460-25bfa9c6 {
    place-self: start;
  }

  #w-node-afb88b9f-6e58-cbc0-d795-d2d4b7b68f0f-f6a6712e, #w-node-a265c696-9203-366d-ab10-7adb879a55d4-f6a6712e {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_525f333e-16b4-a716-1c03-a45f2fadfa63-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75460-25bfa9c6 {
    place-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_525f333e-16b4-a716-1c03-a45f2fadfa63-25bfa9c6, #w-node-_380c7e97-6dc3-d2ba-8aa8-dc52d4e75460-25bfa9c6 {
    justify-self: stretch;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2'), url('../fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}