:root {
  --text-color: #0d1221;
  --secondary-color: #0068db;
  --primary-color: #0079ff;
  --accent-2: #fdfdfd;
  --white: white;
  --accent-3: #6e717a;
  --accent-4: #f6f7fb;
  --accent-5: #b53cff;
  --accent-1: #ff3b30;
  --black: black;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--text-color);
  font-family: Inter Variablefont Slnt Wght, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lora Variablefont Wght, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 112.5%;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lora Variablefont Wght, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 125%;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

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

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

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

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

.container-large.full-frame {
  max-width: 120rem;
}

.container-large.smaller {
  max-width: 60rem;
}

.btn {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--text-color);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-family: Inter Variablefont Slnt Wght, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 171%;
  text-decoration: none;
  transition: opacity .2s;
  display: inline-flex;
}

.btn:hover {
  opacity: .8;
}

.btn.is-blue {
  background-image: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
  color: var(--accent-2);
  border: 1px solid rgba(255, 255, 255, .4);
}

.btn.is-blue:hover {
  background-image: linear-gradient(180deg, var(--primary-color), var(--primary-color));
}

.btn.cta-btn {
  color: var(--white);
  background-color: rgba(255, 255, 255, .15);
}

.btn.is-nav {
  transition-property: all;
  transition-duration: .4s;
}

.btn.is-nav:hover, .btn.is-nav.w--current {
  color: var(--secondary-color);
}

.btn.display-none {
  display: none;
}

.preorder-modal_trigger {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
}

.main-wrapper {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

.hero-section {
  background-image: linear-gradient(rgba(0, 121, 255, .08), rgba(0, 0, 0, 0));
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 50vh;
  min-height: 30rem;
  max-height: 50rem;
  padding-bottom: 32px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.hero-section.smaller {
  height: 25vh;
  min-height: 15rem;
  max-height: 30rem;
  padding-bottom: 0;
}

.hero-content-wrapper {
  z-index: 2;
  width: 100%;
  max-width: 60rem;
  position: relative;
}

.margin-bottom16 {
  margin-bottom: 16px;
}

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

.padding-section-large.bottom-0 {
  padding-bottom: 0;
}

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

.margin-bottom32 {
  margin-bottom: 32px;
}

.margin-bottom64 {
  margin-bottom: 64px;
}

.richtext {
  color: var(--accent-3);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 171%;
}

.richtext.smaller {
  font-size: 12px;
  line-height: 133%;
}

.richtext.smaller.text-color-dark {
  color: var(--text-color);
}

.richtext.is-accent4 {
  color: var(--accent-4);
}

.hero-btn-group-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gist-blue-icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  max-height: 80rem;
  padding-top: 10vh;
  display: flex;
}

.gist-blue-icon {
  z-index: 9;
  object-fit: contain;
  width: 260px;
  height: 260px;
  position: relative;
}

.first-animate-section {
  position: relative;
}

.progress-grid {
  grid-column-gap: 88px;
  grid-row-gap: 88px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  display: grid;
}

.progress-item {
  width: 100%;
}

.h4-text {
  font-family: Inter Variablefont Slnt Wght, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 133%;
}

.margin-bottom12 {
  margin-bottom: 12px;
}

.frame-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  min-height: 40rem;
  display: grid;
}

.frame-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.frame-img-wrapper.align-right {
  text-align: right;
}

.frame-img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.frame-contents {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 120px;
  display: flex;
}

.features-slider {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 40px;
  display: none;
  position: relative;
}

.features-mask {
  max-width: 35%;
  overflow: visible;
}

.swiper-slide {
  padding-bottom: 0;
  padding-right: 24px;
  display: inline-block;
  width: 35% !important;
}

.swiper-slide.is-visions-slide {
  padding-right: 36px;
  width: 36% !important;
}

.swiper-slide.is-gists-slide {
  width: 350px !important;
}

.features-btn-icon {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.sliders-nav {
  font-size: .5rem;
  display: none;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.sliders-arrow {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  transition: all .4s ease-in-out;
  display: inline-flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: translate(0, -100%);
}

.sliders-arrow:hover {
  transform: translate(4px, -100%);
}

.sliders-arrow.is-left {
  right: 40px;
}

.sliders-arrow.is-left:hover {
  transform: translate(-4px, -100%);
}

.h3-text {
  color: var(--text-color);
  font-family: Lora Variablefont Wght, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 125%;
}

.margin-bottom40 {
  margin-bottom: 40px;
}

.features-slide-inner {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: rgba(13, 18, 33, .03);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 24px 32px;
  display: flex;
}

.feature-icon {
  max-height: 80px;
}

.margin-bottom4 {
  margin-bottom: 4px;
}

.h5-text {
  color: var(--text-color);
  font-family: Inter Variablefont Slnt Wght, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}

.overflow-hidden {
  overflow: hidden;
}

.visions-slider {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 64px;
  position: relative;
}

.vision-slide-inner {
  background-color: rgba(13, 18, 33, .03);
  border-radius: 16px;
  padding: 40px;
}

.visions-slide {
  padding-bottom: 0;
  padding-right: 36px;
}

.visions-mask {
  max-width: 36%;
  overflow: visible;
}

.margin-bottom24 {
  margin-bottom: 24px;
}

.works-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  display: grid;
}

.works-item {
  border-radius: 24px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding: 64px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.works-img {
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.works-img.is-everywhere {
  object-position: 85% 30%;
}

.work-item-content {
  width: 100%;
}

.text-color-accent4 {
  color: var(--accent-4);
}

.opacity80 {
  opacity: .8;
}

.accent-section {
  background-color: rgba(13, 18, 33, .03);
}

.accent-section.overflow-hidden.display-none {
  display: none;
}

.testimonial-slider {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  transform: translate(-50%);
}

.testimonial-slider.first {
  transform: translate(-65%);
}

.testimonial-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  border: 1px solid rgba(13, 18, 33, .1);
  border-radius: 10px;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 450px;
  padding: 24px;
  display: flex;
}

.testimonial-author-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-icon {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.name-icon-flexbox {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-name-txt {
  font-size: 16px;
  font-weight: 500;
}

.testimonial-footer {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--accent-3);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 133%;
  display: flex;
}

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

.margin-bottom56 {
  margin-bottom: 56px;
}

.gists-slider {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 64px;
  position: relative;
}

.gists-mask {
  width: 350px;
  overflow: visible;
}

.gists-slide {
  padding-bottom: 0;
  padding-right: 24px;
}

.gists-slide-inner {
  background-color: var(--accent-2);
  border-radius: 16px;
  transition: all .4s ease-in-out;
}

.gists-slide-inner:hover {
  transform: scale(.95);
}

.gist-cover-wrapper {
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.gist-cover {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gist-footer {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.gist-title {
  color: var(--text-color);
  font-family: Inter Variablefont Slnt Wght, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  min-height: 48px;
}

.gist-desription-short {
  color: var(--accent-3);
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 133%;
  overflow: hidden;
}

.gist-footer-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gist-highlight-wrapper {
  border: 7px solid var(--accent-5);
  opacity: 0;
  pointer-events: none;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.gist-highlight-wrapper.is--active {
  opacity: 1;
}

.gist-highlight-text-wrapper {
  background-color: var(--accent-5);
  border-top-right-radius: 8px;
  padding: 4px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

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

.section-bg-darkblue {
  background-color: var(--text-color);
}

.section-bg-darkblue.is--relative {
  position: relative;
}

.b2b-grid {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: .9fr 1.1fr;
  grid-auto-columns: 1fr;
  height: 80vh;
  max-height: 50rem;
  display: grid;
}

.b2b-bg-icon {
  mix-blend-mode: overlay;
  min-height: 80%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.b2b-content {
  width: 100%;
}

.opacity60 {
  opacity: .6;
}

.b2b-icons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.b2b-icon {
  background-image: linear-gradient(#17203b, #35436b);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
}

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

.b2b-icon-img {
  width: 140px;
  height: 140px;
}

.b2b-icon-x {
  width: 40px;
  height: 40px;
}

.faq-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: start;
  justify-items: stretch;
  display: grid;
}

.faq-item {
  border-bottom: 1px solid rgba(13, 18, 33, .1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq-header {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  display: flex;
}

.faq-icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

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

.faq-answer {
  background-color: rgba(13, 18, 33, .05);
  border-radius: 16px;
  padding: 24px;
}

.faq-title-wrapper {
  width: 50%;
}

.faq-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 133%;
}

.faq-body {
  overflow: hidden;
}

.cta-wrapper {
  background-image: linear-gradient(#001f42, #0061cc);
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 40px 64px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-bg-icon {
  z-index: 0;
  opacity: .2;
  mix-blend-mode: overlay;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.cta-content {
  z-index: 1;
  max-width: 35rem;
  position: relative;
}

.footer {
  background-color: #0d1221;
}

.footer-flexbox {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-left-wrapper, .footer-right-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-padding {
  padding-top: 24px;
  padding-bottom: 24px;
}

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

.neutral-richtext {
  font-size: 14px;
  font-weight: 400;
  line-height: 171%;
}

.line-vertical {
  background-color: var(--accent-4);
  opacity: .2;
  width: 1px;
  height: 24px;
}

.line-vertical.is-dark {
  background-color: #0d1221;
}

.footer-btn {
  color: var(--white);
  padding: 8px 12px;
  font-family: Inter Variablefont Slnt Wght, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 171%;
  text-decoration: none;
  transition: all .4s;
}

.footer-btn:hover {
  color: var(--primary-color);
}

.navbar-component {
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
}

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

.navbar-logolink {
  padding-left: 0;
}

.navbar-menu {
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  display: flex;
  position: static;
}

.navbar1_menu-button {
  padding: 0;
}

.navbar-cta-group {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.max-width-80 {
  max-width: 80%;
}

.menu-mobil-flex-correcion {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

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

.animate-icon {
  max-width: 15vw;
}

.animate-icon-wrapper {
  z-index: -1;
}

.animate-icon-wrapper.left-top {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: translate(-2.5vw, -100%);
}

.animate-icon-wrapper.right-top {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: translate(2.5vw, -100%);
}

.animate-icon-wrapper.left-middle {
  position: absolute;
  top: 3vh;
  bottom: auto;
  left: 20%;
  right: auto;
}

.animate-icon-wrapper.right-middle {
  position: absolute;
  top: 5vh;
  bottom: auto;
  left: auto;
  right: 18%;
}

.animate-icon-wrapper.center-top {
  position: absolute;
  top: 18vh;
  left: 50%;
  transform: translate(50%);
}

.animate-icon-wrapper.center-center-right {
  position: absolute;
  top: 35vh;
  right: 22%;
}

.animate-icon-wrapper.center-center-left {
  position: absolute;
  top: 35vh;
  left: 22%;
}

.animate-icon-wrapper.top-left-bottom {
  position: absolute;
  top: 21vh;
  bottom: auto;
  left: 5%;
  right: auto;
}

.frame-img-overlay, .work-item-scrollin-overlay {
  background-color: var(--primary-color);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.work-item-scrollin-overlay.first, .work-item-scrollin-overlay.second, .work-item-scrollin-overlay.third {
  transform: translate(0, -100%);
}

.faq-body-padding {
  padding-top: 8px;
  padding-bottom: 16px;
}

.work-item-gradient {
  z-index: -1;
  background-image: linear-gradient(180deg, rgba(13, 18, 33, 0) 37.5%, var(--text-color));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.site-loader-component {
  z-index: 9999;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loader-icons-wrapper {
  align-self: center;
  position: relative;
}

.loader-big-iicon {
  object-fit: contain;
  width: 260px;
  height: 260px;
}

.loader-movable-icon {
  z-index: -1;
  position: absolute;
  top: 20%;
  left: 20%;
}

.mobil-menu-line {
  display: none;
}

.btn-mobil-flexed {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-scroll-overlay {
  z-index: -1;
  background-color: var(--white);
  opacity: 0;
  background-image: linear-gradient(rgba(0, 121, 255, .08), rgba(0, 121, 255, 0));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(0, -100%);
}

.fs-cc-prefs_space-small {
  margin-bottom: .75rem;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  margin-left: .75rem;
  padding: .625rem;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, .1);
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 2.5rem 2rem;
  overflow: auto;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  top: -.75rem;
  bottom: auto;
  left: auto;
  right: -.75rem;
  box-shadow: -1px 1px 12px rgba(51, 51, 51, .1);
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-manager_icon {
  width: 2rem;
  height: 2rem;
}

.fs-cc-banner_text-link {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-manager_button {
  color: var(--text-color);
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  flex-direction: column;
  padding: .625rem;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid rgba(51, 51, 51, .15);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: rgba(13, 18, 33, .4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs-cc-prefs_label {
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-prefs_button {
  background-color: var(--primary-color);
  border: 2px solid rgba(13, 18, 33, .1);
  border-radius: 999rem;
  margin-right: .5rem;
  padding: .625rem 1.5rem;
  font-size: .875rem;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: #fff;
}

.fs-cc-banner_text {
  color: var(--text-color);
  margin-right: 1.5rem;
}

.fs-cc-banner_close-icon {
  color: var(--text-color);
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-prefs_text {
  color: var(--text-color);
  font-size: .75rem;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  top: auto;
  bottom: 1.25rem;
  left: 1.25rem;
  right: auto;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  max-width: 36rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-right: -.5rem;
  display: flex;
}

.fs-cc-prefs_close-icon {
  color: var(--text-color);
  width: 1rem;
  height: 1rem;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 2.5rem;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-banner_button {
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  border-radius: 999rem;
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: .625rem 1.25rem;
  font-size: 1rem;
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--primary-color);
  background-color: var(--white);
  color: var(--primary-color);
}

.fs-cc-prefs_title {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: #f5f6ff;
  border-top: 1px solid rgba(67, 83, 255, .16);
  padding: 1.5rem 2rem;
  display: none;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: visible !important;
}

.slider-arrow-wrapper {
  padding-top: 40px;
  position: relative;
}

.slider-arrow-wrapper.bigger {
  padding-top: 64px;
}

@media screen and (min-width: 1440px) {
  .hero-content-wrapper {
    margin-top: 15rem;
  }
}

@media screen and (min-width: 1920px) {
  .features-mask {
    max-width: 22vw;
  }

  .ultrawide-fix {
    padding-left: 5%;
    padding-right: 5%;
  }

  .visions-mask, .gists-mask {
    max-width: 23vw;
  }
}

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

  .hero-section {
    padding-top: 6rem;
  }

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

  .progress-grid {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
  }

  .frame-contents {
    padding: 44px;
  }

  .features-slider {
    display: block;
  }

  .features-mask {
    max-width: 60%;
  }

  .swiper-slide, .swiper-slide.is-visions-slide {
    width: 60% !important;
  }

  .visions-mask {
    max-width: 60%;
  }

  .works-item {
    min-height: 350px;
    padding: 24px;
  }

  .b2b-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

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

  .b2b-icon {
    border-radius: 16px;
    width: 100px;
    height: 100px;
  }

  .b2b-icon-img {
    width: 100px;
    height: 100px;
  }

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

  .line-vertical.hide-tablet {
    display: none;
  }

  .navbar-container {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
  }

  .navbar-logo {
    max-width: 7rem;
  }

  .navbar-menu {
    width: 80%;
  }

  .navbar1_menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .menu-icon1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
  }

  .menu-icon1_line-top {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon1_line-middle {
    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-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon1_line-bottom {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .animate-icon-wrapper.left-top {
    transform: translate(-2.5vw, -70%);
  }

  .animate-icon-wrapper.right-top {
    transform: translate(2.5vw, -70%);
  }

  .animate-icon-wrapper.left-middle {
    left: 30%;
  }

  .animate-icon-wrapper.right-middle {
    top: 7vh;
  }

  .animate-icon-wrapper.center-top {
    top: 22vh;
    transform: translate(-50%);
  }

  .animate-icon-wrapper.center-center-right {
    top: 28vh;
    right: 5%;
  }

  .animate-icon-wrapper.center-center-left {
    left: 5%;
  }

  .animate-icon-wrapper.top-left-bottom {
    top: 15vh;
    left: 0%;
  }

  .work-item-gradient {
    background-image: linear-gradient(180deg, rgba(13, 18, 33, 0) 20%, var(--text-color));
  }

  .loader-big-iicon {
    width: 200px;
    height: 200px;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  h2 {
    font-size: 32px;
  }

  .btn {
    text-decoration: none;
  }

  .btn.is-blue {
    margin-left: 0;
  }

  .btn.is-blue.is-mobil-nav-cta {
    border-radius: 4px;
    font-size: 18px;
  }

  .btn.is-nav {
    color: var(--text-color);
    text-align: left;
    border-radius: 4px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;
  }

  .btn.is-nav:hover, .btn.is-nav.w--current {
    color: var(--text-color);
    background-color: rgba(13, 18, 33, .1);
  }

  .btn.is-nav.is--login {
    background-color: rgba(13, 18, 33, .1);
    width: auto;
  }

  .hero-section {
    height: 100%;
    min-height: 50vh;
    padding-top: 15vh;
  }

  .hero-btn-group-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .gist-blue-icon-wrapper {
    height: 80vh;
    padding-top: 30vh;
    padding-bottom: 4rem;
  }

  .gist-blue-icon {
    width: 200px;
    height: 200px;
  }

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

  .h4-text {
    font-size: 22px;
  }

  .frame-card {
    grid-template-columns: 1fr;
  }

  .frame-contents {
    padding-bottom: 6rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .features-mask {
    max-width: 80%;
  }

  .swiper-slide, .swiper-slide.is-visions-slide {
    width: 80% !important;
  }

  .h3-text {
    font-size: 25px;
  }

  .features-slide-inner {
    padding: 20px;
  }

  .h5-text {
    font-size: 18px;
  }

  .vision-slide-inner {
    padding: 20px;
  }

  .visions-mask {
    max-width: 80%;
  }

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

  .works-item {
    min-height: 420px;
  }

  .testimonial-slider {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .b2b-grid {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  .b2b-bg-icon {
    height: 100%;
  }

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

  .opacity60.hide-mobil {
    display: none;
  }

  .faq-title-wrapper {
    width: 70%;
  }

  .cta-wrapper {
    padding: 44px;
  }

  .cta-bg-icon {
    height: 100%;
  }

  .navbar-component {
    height: auto;
    min-height: 4rem;
  }

  .navbar-logolink {
    z-index: 11;
    padding-left: 0;
  }

  .navbar-menu {
    background-color: var(--white);
    background-image: linear-gradient(rgba(0, 121, 255, .08), rgba(0, 121, 255, 0) 50%);
    width: 100vw;
    height: 100vh;
    padding: 4rem 5% 12vh;
    position: absolute;
  }

  .navbar1_menu-button {
    z-index: 11;
    transition: all .4s ease-in-out;
  }

  .navbar1_menu-button.w--open {
    background-color: rgba(13, 18, 33, .1);
    border-radius: 4px;
  }

  .menu-icon1_line-top, .menu-icon1_line-middle, .menu-icon_line-middle-inner, .menu-icon1_line-bottom {
    background-color: var(--text-color);
  }

  .navbar-cta-group.is-hero {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 10vh;
  }

  .menu-mobil-flex-correcion {
    grid-column-gap: 4vh;
    grid-row-gap: 4vh;
    border-top: 1px solid rgba(13, 18, 33, .1);
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding-top: 6vh;
    display: flex;
  }

  .animate-icon-wrapper.right-middle {
    top: 10vh;
  }

  .loader-big-iicon {
    width: 150px;
    height: 150px;
  }

  .loader-movable-icon {
    max-height: 100px;
  }

  .mobil-menu-line {
    background-color: rgba(13, 18, 33, .1);
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
  }

  .btn-mobil-flexed {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 1.25rem;
  }
}

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

  h2 {
    font-size: 30px;
  }

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

  .gist-blue-icon {
    width: 150px;
    height: 150px;
  }

  .h4-text {
    font-size: 22px;
  }

  .features-slider {
    padding-bottom: 60px;
    display: none;
  }

  .features-mask {
    max-width: 95%;
  }

  .swiper-slide {
    width: 95% !important;
  }

  .swiper-slide.is-visions-slide {
    padding-right: 24px;
    width: 95% !important;
  }

  .swiper-slide.is-gists-slide {
    width: 95% !important;
  }

  .sliders-arrow {
    margin-top: auto;
    margin-bottom: 0;
    top: auto;
    bottom: 0;
    left: 40px;
    right: auto;
    transform: none;
  }

  .sliders-arrow:hover {
    transform: translate(4px);
  }

  .sliders-arrow.is-left {
    top: auto;
    left: 0%;
    right: auto;
  }

  .sliders-arrow.is-left:hover {
    transform: translate(-4px);
  }

  .h3-text {
    font-size: 28px;
  }

  .features-slide-inner {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .visions-slider {
    padding-bottom: 60px;
  }

  .visions-slide {
    padding-right: 24px;
  }

  .visions-mask {
    max-width: 95%;
  }

  .testimonial-slider {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
  }

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

  .testimonial-item {
    text-align: center;
    width: 60vw;
    padding: 10px;
  }

  .testimonial-author-wrapper {
    flex-flow: column;
    width: 100%;
  }

  .testimonial-footer {
    flex-flow: column;
  }

  .margin-bottom56.mobil-20 {
    margin-bottom: 20px;
  }

  .gists-slider {
    padding-bottom: 60px;
  }

  .gists-mask {
    width: 95%;
  }

  .gist-footer {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .b2b-icon {
    border-radius: 12px;
    width: 80px;
    height: 80px;
    padding: 25px;
  }

  .b2b-icon-img {
    width: 80px;
    height: 80px;
  }

  .b2b-icon-x {
    width: 30px;
    height: 30px;
  }

  .faq-header {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .faq-answer {
    border-radius: 8px;
    padding: 12px;
  }

  .faq-title-wrapper {
    width: 100%;
  }

  .faq-title {
    font-size: 16px;
  }

  .cta-wrapper {
    padding: 20px;
  }

  .footer-flexbox {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap-reverse;
  }

  .footer-left-wrapper {
    flex-flow: wrap-reverse;
  }

  .max-width-80 {
    max-width: 100%;
  }

  .hide-mobil {
    display: none;
  }

  .animate-icon {
    max-width: 22vw;
  }

  .animate-icon-wrapper.left-top {
    transform: none;
  }

  .animate-icon-wrapper.right-top {
    right: 2%;
    transform: none;
  }

  .animate-icon-wrapper.left-middle {
    top: 8.3vh;
    left: 36%;
  }

  .animate-icon-wrapper.right-middle {
    top: 13.2vh;
    right: -4vw;
  }

  .animate-icon-wrapper.center-top {
    top: 25.2vh;
    left: 37%;
  }

  .animate-icon-wrapper.center-center-right {
    top: 30vh;
  }

  .animate-icon-wrapper.top-left-bottom {
    left: -2vw;
  }

  .loader-big-iicon {
    width: 100px;
    height: 100px;
  }

  .loader-movable-icon {
    height: 20vw;
    max-height: 70px;
  }

  .fs-cc-prefs_component {
    padding: 1.5rem;
  }

  .fs-cc-banner_close {
    position: absolute;
    top: -1.5rem;
    bottom: auto;
    left: auto;
    right: .75rem;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-prefs_button {
    margin-bottom: .5rem;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .slider-arrow-wrapper {
    padding-bottom: 60px;
  }
}

#w-node-_69dc5a7c-793a-6bee-28cf-12e5b1a95b9c-767f9ff8, #w-node-_6623923f-e573-0f0c-384c-1cce0a42a483-767f9ff8, #w-node-eb769843-5a57-347a-1ed6-847c0a7e6ad2-767f9ff8 {
  align-self: center;
  justify-self: center;
}

#w-node-d32bbc45-ae6b-5875-6887-3b2efe52efc7-767f9ff8, #w-node-_37c8c217-885c-29b6-9d33-1a115528a3dc-767f9ff8, #w-node-b8ad6f05-cc95-4737-44a8-5ca3d2582eb8-767f9ff8 {
  align-self: end;
}

#w-node-a5e806f0-145a-49d6-993c-0bc4bd3fab9c-767f9ff8, #w-node-e2e610c7-0207-c800-48f7-32555d5b4aae-767f9ff8 {
  align-self: center;
}

@media screen and (max-width: 767px) {
  #w-node-_6623923f-e573-0f0c-384c-1cce0a42a481-767f9ff8, #w-node-e2e610c7-0207-c800-48f7-32555d5b4aae-767f9ff8 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Inter Variablefont Slnt Wght';
  src: url('../images/') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora Variablefont Wght';
  src: url('../fonts/Lora-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lora Variablefont Wght';
  src: url('../fonts/Lora-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
