:root {
  --black: black;
  --blue: #031633;
  --light-grey: #f4f4f4;
  --slate-grey: #6c757d;
  --secondary: #00d9ff;
  --white: white;
  --info: #0dcaf0;
  --secondary-hover: #0d6efd;
  --pink-300: #e685b5;
  --pink-400: #de5c9d;
  --primary: #6610f2;
  --indigo-hover: #7321ff;
  --pink-100: #f7d6e6;
  --outline-hover: #e7f1ff;
  --light-steel-blue: #9ec5fe;
  --success: #1de9b6;
  --danger: #ff4e4e;
  --warning: #ffc107;
  --bg-white: #f8f9fa;
  --color: white;
}

.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-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@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 {
  color: var(--black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Urbanist, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
  font-family: Inter, sans-serif;
}

a {
  border-color: var(--black);
  color: var(--black);
  font-family: Inter, sans-serif;
  text-decoration: none;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

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

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

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

.hide {
  display: none;
}

.text-style-link {
  text-decoration: underline;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

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

.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}

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

.container-large.no-margin-right {
  margin-right: 50px;
  padding-right: 0;
}

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

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

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

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  background-color: #0000;
}

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

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

.margin-tiny {
  margin: .25rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.margin-top, .margin-top.margin-custom1, .margin-top.margin-huge, .margin-top.margin-small, .margin-top.margin-tiny, .margin-top.margin-custom3, .margin-top.margin-medium, .margin-top.margin-xxsmall, .margin-top.margin-xxhuge, .margin-top.margin-custom2, .margin-top.margin-xsmall, .margin-top.margin-large, .margin-top.margin-xxlarge, .margin-top.margin-xlarge, .margin-top.margin-0, .margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-flow: column;
  width: auto;
  margin-top: 0;
  display: flex;
}

.margin-top.margin-medium.align-right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: left;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.margin-bottom, .margin-bottom.margin-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-custom3, .margin-bottom.margin-custom1, .margin-bottom.margin-tiny, .margin-bottom.margin-small, .margin-bottom.margin-large, .margin-bottom.margin-0, .margin-bottom.margin-xlarge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-huge, .margin-bottom.margin-xxsmall, .margin-bottom.margin-custom2, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xsmall {
  clear: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  position: relative;
}

.margin-bottom.margin-xsmall.align-right {
  justify-content: flex-end;
}

.margin-bottom.margin-xsmall.align-center {
  justify-content: center;
}

.margin-bottom.margin-xsmall {
  float: none;
  clear: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-left, .margin-left.margin-tiny, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-small, .margin-left.margin-xsmall, .margin-left.margin-large, .margin-left.margin-huge, .margin-left.margin-xlarge, .margin-left.margin-custom3, .margin-left.margin-xxsmall, .margin-left.margin-custom1, .margin-left.margin-custom2, .margin-left.margin-xhuge, .margin-left.margin-xxhuge, .margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right, .margin-right.margin-huge, .margin-right.margin-xsmall, .margin-right.margin-xxhuge, .margin-right.margin-small, .margin-right.margin-medium, .margin-right.margin-xlarge, .margin-right.margin-custom3, .margin-right.margin-custom2, .margin-right.margin-xxsmall, .margin-right.margin-xhuge, .margin-right.margin-custom1, .margin-right.margin-large, .margin-right.margin-0, .margin-right.margin-xxlarge, .margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical, .margin-vertical.margin-medium, .margin-vertical.margin-xlarge, .margin-vertical.margin-xxsmall, .margin-vertical.margin-xxlarge, .margin-vertical.margin-huge, .margin-vertical.margin-0, .margin-vertical.margin-xxhuge, .margin-vertical.margin-tiny, .margin-vertical.margin-xsmall, .margin-vertical.margin-custom1, .margin-vertical.margin-small, .margin-vertical.margin-large, .margin-vertical.margin-xhuge, .margin-vertical.margin-custom2, .margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal, .margin-horizontal.margin-medium, .margin-horizontal.margin-tiny, .margin-horizontal.margin-custom3, .margin-horizontal.margin-0, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-huge, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-custom1, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-large, .margin-horizontal.margin-custom2, .margin-horizontal.margin-small, .margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top, .padding-top.padding-xhuge, .padding-top.padding-xxhuge, .padding-top.padding-0, .padding-top.padding-large, .padding-top.padding-custom2, .padding-top.padding-xlarge, .padding-top.padding-huge, .padding-top.padding-xxsmall, .padding-top.padding-custom3, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-xxlarge, .padding-top.padding-small, .padding-top.padding-xsmall, .padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-medium {
  border: 1px solid #0000;
}

.padding-bottom, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xxhuge, .padding-bottom.padding-large, .padding-bottom.padding-xhuge, .padding-bottom.padding-custom2, .padding-bottom.padding-xxsmall, .padding-bottom.padding-xxlarge, .padding-bottom.padding-custom3, .padding-bottom.padding-custom1, .padding-bottom.padding-xsmall, .padding-bottom.padding-huge, .padding-bottom.padding-tiny, .padding-bottom.padding-medium, .padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding-xxlarge {
  border: 1px solid #0000;
}

.padding-left, .padding-left.padding-xhuge, .padding-left.padding-xlarge, .padding-left.padding-0, .padding-left.padding-small, .padding-left.padding-xsmall, .padding-left.padding-medium, .padding-left.padding-xxhuge, .padding-left.padding-huge, .padding-left.padding-custom1, .padding-left.padding-tiny, .padding-left.padding-xxsmall, .padding-left.padding-custom3, .padding-left.padding-custom2, .padding-left.padding-xxlarge, .padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right, .padding-right.padding-xxhuge, .padding-right.padding-custom2, .padding-right.padding-large, .padding-right.padding-xlarge, .padding-right.padding-tiny, .padding-right.padding-custom3, .padding-right.padding-custom1, .padding-right.padding-xsmall, .padding-right.padding-xxlarge, .padding-right.padding-xxsmall, .padding-right.padding-medium, .padding-right.padding-xhuge, .padding-right.padding-huge, .padding-right.padding-0, .padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical, .padding-vertical.padding-0, .padding-vertical.padding-xxhuge, .padding-vertical.padding-large, .padding-vertical.padding-custom3, .padding-vertical.padding-medium, .padding-vertical.padding-tiny, .padding-vertical.padding-xxlarge, .padding-vertical.padding-custom1, .padding-vertical.padding-xsmall, .padding-vertical.padding-xhuge, .padding-vertical.padding-xlarge, .padding-vertical.padding-custom2, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xxlarge {
  padding-top: 8rem;
}

.padding-horizontal, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-0, .padding-horizontal.padding-custom3, .padding-horizontal.padding-huge, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-medium, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-large, .padding-horizontal.padding-xhuge, .padding-horizontal.padding-custom1, .padding-horizontal.padding-tiny, .padding-horizontal.padding-custom2, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-small, .padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

.text-size-medium {
  text-align: right;
  font-size: 16px;
}

.text-size-medium.paragraph-center {
  color: var(--blue);
  text-align: center;
  font-size: 20px;
  font-weight: 300;
}

.text-size-medium.paragraph-right.align-center {
  text-align: center;
}

.rl-styleguide-message-delete-this {
  text-align: center;
  background-color: #f1f0ee;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.rl-styleguide-message-wrapper {
  text-align: left;
  background-color: #e4e2df;
  border-radius: 16px;
  padding: 2.5rem;
}

.rl-styleguide-message-fixed {
  z-index: 99;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.margin-top-auto {
  margin-top: auto;
}

.text-style-quote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.rl-styleguide_tutorial-callout {
  grid-column-gap: 2rem;
  background-color: #fff;
  border: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding: .75rem .75rem .75rem 1rem;
  display: flex;
}

.rl-styleguide_callout-link-wrapper {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.rl-styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: .25rem .5rem;
  position: sticky;
  top: 0;
}

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

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

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

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

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

.form-radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

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

.form-checkbox-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form-checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form-checkbox-label {
  margin-bottom: 0;
}

.text-size-tiny {
  padding-top: 16px;
  font-size: .75rem;
}

.field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.field-label.form-label {
  color: var(--slate-grey);
  font-family: Inter, sans-serif;
  font-weight: 700;
}

.button {
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: normal;
  object-fit: fill;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
}

.button:hover {
  border-color: var(--info);
  background-color: var(--info);
}

.button.is-link {
  color: var(--secondary);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link:hover {
  color: var(--secondary-hover);
}

.button.is-link.is-alternate {
  color: var(--secondary);
  background-color: #0000;
  border-color: #0000;
}

.button.is-link.is-alternate:hover {
  color: var(--white);
  background-color: #0000;
  border-color: #0000;
}

.button.is-secondary {
  border-color: var(--pink-300);
  background-color: var(--pink-300);
  color: var(--white);
}

.button.is-secondary:hover {
  background-color: var(--pink-400);
}

.button.is-secondary.is-small {
  border-color: var(--primary);
  background-color: var(--primary);
  display: block;
}

.button.is-secondary.is-small:hover {
  border-color: var(--indigo-hover);
  background-color: var(--indigo-hover);
}

.button.is-secondary.is-small.mb-1 {
  margin-bottom: 16px;
}

.button.is-secondary.is-alternate {
  color: var(--pink-300);
}

.button.is-secondary.is-alternate:hover {
  background-color: var(--pink-300);
}

.button.is-secondary.is-alternate.is-outline {
  border-color: var(--pink-300);
}

.button.is-secondary.is-outline {
  color: var(--pink-300);
}

.button.is-secondary.is-outline:hover {
  background-color: var(--pink-100);
}

.button.is-secondary.is-icon.is-outline {
  color: var(--pink-300);
}

.button.color-swatch-secondary {
  width: auto;
  height: auto;
}

.button.is-small {
  padding: .5rem 1rem;
}

.button.is-small.is-outline {
  color: #e581b1;
  -webkit-text-stroke-color: #e581b1;
  border-color: #e581b1;
  font-family: Urbanist, sans-serif;
}

.button.is-small.is-outline:hover {
  background-color: #fcf3f8;
}

.button.is-small.is-outline.cta {
  border-color: var(--outline-hover);
  background-color: var(--outline-hover);
  color: var(--blue);
  -webkit-text-stroke-color: var(--secondary);
}

.button.is-small.is-icon {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button.is-small.products {
  color: var(--black);
  background-color: #0000;
  border-color: #0000;
}

.button.is-alternate {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--secondary);
}

.button.is-alternate:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
}

.button.is-alternate.is-outline {
  border-color: var(--secondary);
}

.button.is-outline {
  color: var(--secondary);
  background-color: #0000;
}

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

.button.is-icon {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.button.is-icon.is-small {
  border-color: var(--primary);
  background-color: var(--primary);
  max-width: 100%;
  margin-top: 0;
}

.button.is-icon.is-small:hover {
  border-color: var(--indigo-hover);
  background-color: var(--indigo-hover);
}

.button.is-icon.is-small.is-outline {
  display: none;
}

.button.is-icon.is-small.mb-1 {
  margin-bottom: 16px;
}

.button.is-icon.is-small.hero {
  background-color: #0000;
  border-color: #0000;
}

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

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

.text-style-italic {
  font-style: italic;
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.form-radio-label {
  margin-bottom: 0;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e;
}

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

.rl-styleguide_label {
  color: var(--white);
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_label.is-html-tag {
  background-color: #be4aa5;
}

.text-size-regular {
  font-size: 1rem;
}

.text-weight-xbold {
  font-weight: 800;
}

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

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

.icon-height-xlarge {
  height: 6.5rem;
}

.heading-style-h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.form-input {
  border: 1px solid var(--indigo-hover);
  background-color: var(--white);
  color: var(--black);
  border-radius: 12px;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

.form-input::placeholder {
  color: #0009;
}

.form-input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-input.is-select-input {
  background-image: none;
}

.rl-styleguide_paste-text {
  color: #00000080;
  text-align: center;
  border: 1px dashed #00000026;
  padding: 1rem;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding: 1.5rem 32px;
  display: grid;
}

.rl-styleguide_button-list.background-color-black {
  padding-left: 32px;
  padding-right: 32px;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

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

.rl-styleguide_color {
  padding-bottom: 8rem;
}

.rl-styleguide_color.is-black {
  background-color: var(--black);
}

.rl-styleguide_color.is-gray {
  background-color: var(--light-grey);
}

.rl-styleguide_color.is-white {
  background-color: var(--white);
}

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

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

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

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

.text-weight-semibold {
  font-weight: 600;
}

.text-weight-semibold.heading-style-h6 {
  color: var(--secondary);
  text-align: right;
  text-transform: uppercase;
}

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

.text-style-nowrap {
  white-space: nowrap;
}

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

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

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d;
}

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

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

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

.icon-height-xxsmall {
  height: 1rem;
}

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

.shadow-xsmall {
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: sticky;
  top: 2rem;
}

.form-radio-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.rl-styleguide_callout-link {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  justify-content: space-between;
  align-items: center;
  padding: 1px;
  text-decoration: none;
  display: flex;
}

.icon-height-custom1 {
  height: 1.25rem;
}

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

.text-size-small {
  padding-top: 16px;
  font-size: .875rem;
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-field-wrapper {
  position: relative;
}

.icon-height-small {
  height: 2rem;
}

.icon-height-large {
  height: 5rem;
}

.shadow-large {
  box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
}

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

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

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

.text-rich-text a {
  text-decoration: underline;
}

.text-rich-text figcaption {
  border-left: 2px solid var(--black);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.icon-height-medium {
  height: 3rem;
}

.form-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.shadow-small {
  box-shadow: 0 4px 8px -2px #0000001a, 0 2px 4px -2px #0000000f;
}

.icon-1x1-medium {
  text-align: left;
  flex: 0 auto;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: static;
  left: 245px;
  right: 248px;
}

.icon-1x1-medium.ico-card {
  width: 110%;
  height: 110%;
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

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

.icon-height-xsmall {
  height: 1.5rem;
}

.rl-styleguide_spacing-all {
  display: none;
}

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

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed #d3d3d3;
}

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

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padding-section-large {
  border-radius: 24px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

.spacer-tiny {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1.5rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.spacer-large {
  width: 100%;
  padding-top: 3rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 7rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 10rem;
}

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

.navbar1_dropdown-link {
  color: var(--blue);
  padding: .5rem 1rem;
}

.navbar1_dropdown-link:hover {
  background-color: #f4f1ffb3;
  border-radius: 4px;
}

.navbar1_dropdown-link.w--current {
  color: var(--black);
}

.navbarmenu {
  align-items: center;
  display: flex;
  position: static;
}

.navbar_menu-dropdown {
  display: none;
}

.navbarmenubtn {
  padding: 0;
}

.navbar1_dropdown-list.w--open {
  border: 1px solid var(--white);
  background-color: var(--white);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: .5rem;
}

.navbar1_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.navbar_dropdown {
  text-transform: uppercase;
  padding: .5rem 1rem;
}

.navbar {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-text-fill-color: inherit;
  background-color: #f8f9fa4f;
  background-clip: border-box;
  border: 1px #000;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: sticky;
  top: 0;
}

.dropdown-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1rem;
  display: none;
  position: absolute;
  inset: 0% 0% 0% auto;
}

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

.navbar_link {
  color: var(--blue);
  text-transform: uppercase;
  background-color: #0000;
  padding: .5rem 1rem;
  font-family: Urbanist, sans-serif;
  font-size: 14px;
}

.navbar_link.w--current {
  color: var(--black);
  display: none;
}

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

.header_content {
  flex-flow: column wrap;
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.header1_image {
  background-image: url('../images/mancha_hero.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}

.logo1_logo {
  opacity: 1;
  text-align: center;
  cursor: auto;
  max-height: 3.5rem;
}

.logo1_logo:hover {
  opacity: 1;
}

.clientes_logo {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.que-es-trust {
  background-image: url('../images/mancha_queestrust.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: scroll;
}

.layout201_image {
  background-image: url('../images/mancha_hero.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}

.productos {
  display: block;
}

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

.layout201_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.layout203_image {
  background-image: url('../images/mancha_hero.svg');
  background-position: 0 0;
  background-size: 50% 50%;
  width: 100%;
  height: 100%;
}

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

.layout203_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.servicio2 {
  display: none;
}

.layout141_image-wrapper {
  position: relative;
}

.layout141_image {
  width: 100%;
  height: 100%;
}

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

.button-2 {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-2.is-secondary {
  color: var(--black);
  background-color: #0000;
}

.button-2.is-link {
  color: var(--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.flujo-de-verificacion {
  display: none;
}

.layout122_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.layout122_content {
  width: auto;
  position: relative;
}

.layout377_card-large-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 3rem;
  display: flex;
}

.layout377_card-small-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.layout377_card-large, .layout377_card-small {
  border: 1px solid var(--black);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

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

.layout377_card-large-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.layout1_image {
  width: 100%;
  height: 100%;
}

.layout1_image-wrapper {
  display: none;
}

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

.flujos-de-verificacion {
  width: auto;
  overflow: hidden;
}

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

.layout401_card-content {
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

.layout401_card-content.color-swatch-grad-light {
  border-radius: 9%;
  width: auto;
}

.layout401_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template: "."
  / 1fr;
  position: relative;
}

.casouso_card {
  border: 1px solid var(--light-steel-blue);
  background-image: url('../images/bg-gradient-light.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding: 53px 40px 48px;
  display: flex;
}

.flujo-integracion {
  display: none;
}

.div-block {
  background-color: #0000;
  background-image: url('../images/bg_long_card.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  width: auto;
  padding: 72px;
  display: flex;
}

.div-block.color-swatch-grad-light {
  border-radius: 0%;
  width: auto;
  height: auto;
  display: block;
}

.div-block.color-swatch-grad-light.layout401_card {
  border-color: #0000;
  border-radius: 0%;
}

.div-block.contact-card-resp {
  background-image: url('../images/Group-1359-2.svg');
  border-radius: 24px;
  padding-top: 72px;
}

.contactanos2 {
  display: none;
}

.layout41_component {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  background-color: #0000;
  border-radius: 24px;
  grid-template: ". Area"
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 0;
  display: grid;
  position: relative;
}

.heading {
  clear: right;
  position: relative;
}

.footer8_form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: .75rem;
  display: grid;
  position: relative;
}

.footer8_credit-text {
  font-size: .875rem;
}

.footer8_top-wrapper {
  grid-column-gap: 1vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr .25fr .25fr .25fr .25fr;
  align-items: start;
  position: relative;
}

.footer8_form-block {
  margin-bottom: 0;
}

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

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

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

.footer8_right-wrapper {
  flex-direction: column;
  display: flex;
}

.footer8_link {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.footer8_left-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

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

.footer8_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}

.line-divider {
  border: 1px solid var(--light-grey);
  color: #0000;
  background-color: #0000;
  width: 100%;
  height: 1px;
}

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

.success-message {
  background-color: var(--light-grey);
  padding: 1.5rem;
}

.style-guide-heading {
  color: #000c;
  letter-spacing: -.02em;
  width: 100%;
  max-width: 340px;
  font-family: Inter, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 64px;
}

.style-guide-infotext-large {
  color: #0000004d;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.style-guide-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border: 0 solid #dcdcdc;
  border-top-width: 1px;
  flex-direction: row;
  justify-content: center;
  padding: 24px;
  display: flex;
}

.heading-light-h3 {
  color: var(--blue);
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 40px;
  font-weight: 300;
}

.heading-light-h3.contact-title-resp {
  font-weight: 700;
}

.text-style {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  padding: 0;
  display: flex;
}

.style-guide-info-text {
  color: #0000004d;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.heading-light-h4 {
  color: var(--blue);
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 32px;
  font-weight: 300;
}

.heading-light-h5 {
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 24px;
  font-weight: 300;
}

.heading-light-h5.supertext-p {
  color: var(--blue);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.heading-light-h6 {
  color: var(--slate-grey);
  letter-spacing: 0;
  margin-bottom: 24px;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.heading-light-h6.contact-p-resp {
  color: var(--blue);
  font-family: Inter, sans-serif;
  font-weight: 300;
}

.heading-light-h6.tos-subtitle {
  font-size: 18px;
  font-weight: 700;
}

.heading-light-h1 {
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 56px;
  font-weight: 300;
}

.heading-light-h2 {
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 48px;
  font-weight: 300;
}

.heading-extra-bold-h1 {
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 120%;
}

.heading-extra-bold-h2 {
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 120%;
}

.heading-extra-bold-h3 {
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 120%;
}

.heading-extra-bold-h4 {
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 130%;
}

.heading-extra-bold-h5 {
  color: var(--blue);
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 140%;
}

.heading-extra-bold-h5.contact-subtitle-resp {
  font-weight: 600;
  display: none;
}

.heading-extra-bold-h6 {
  color: var(--black);
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 140%;
}

.heading-extra-bold-h6.subtitle-contact {
  color: var(--secondary);
  font-weight: 700;
}

.text-large-light {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
}

.text-large-normal {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.text-large-medium {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.text-large-semi-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.text-large-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.text-large-extra-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 150%;
}

.text-large-link {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}

.text-medium-light {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
}

.text-medium-normal {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.text-medium-medium {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.text-medium-semi-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.text-medium-bold, .text-medium-extra-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}

.text-medium-link {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}

.text-regular-light {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

.text-regular-normal {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.text-regular-medium {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.text-regular-semi-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.text-regular-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.text-regular-extra-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 150%;
}

.text-regular-link {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}

.text-regular-button {
  letter-spacing: 0;
  font-family: Urbanist, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.text-small-light {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.text-small-normal {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.text-small-medium {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.text-small-semi-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.text-small-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}

.text-small-extra-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 150%;
}

.text-small-link {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}

.text-tiny-light {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
}

.text-tiny-normal {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.text-tiny-medium {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}

.text-tiny-semi-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

.text-tiny-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
}

.text-tiny-extra-bold {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 150%;
}

.text-tiny-link {
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}

.text-styles-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  padding: 0;
  display: flex;
}

.styles-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border: 0 solid #dcdcdc;
  border-top-width: 1px;
  flex-direction: row;
  justify-content: center;
  padding: 24px;
  display: flex;
}

.fill-style {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  padding: 0;
  display: flex;
}

.color-swatch-black {
  background-color: #00081c;
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-white {
  background-color: #fff;
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-light-grey {
  background-color: #f7f9fc;
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-primary {
  background-color: var(--primary);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-secondary {
  background-color: var(--secondary);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-success {
  background-color: var(--success);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-danger {
  background-color: var(--danger);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-warning {
  background-color: var(--warning);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-info {
  background-color: var(--info);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-gradient-1 {
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(132.69deg, #6ea8fe99, #e0cffc);
  background-clip: border-box;
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-gradient-2 {
  background-image: linear-gradient(138.39deg, #6ea8fe00, #e0cffc 57%, #efadce 97%);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-grad-light {
  background-image: linear-gradient(132.69deg, #cde1ff, #fbcfff4d);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-pink-300 {
  background-color: var(--pink-300);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-purple-200 {
  background-color: var(--indigo-hover);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-gradient {
  background-image: linear-gradient(137.39deg, #ff7448, #ff4848 57%, #6248ff);
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-swatch-grey {
  background-color: #e4e2df;
  border-radius: 0%;
  width: 70px;
  height: 70px;
}

.color-styles-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
}

.styles-guide-section {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.heading-2 {
  color: var(--blue);
  border: 1px solid #0000;
  font-size: 48px;
}

.heading-2.hero-titulo-respon {
  color: #031633;
}

.text-block {
  color: var(--blue);
  font-family: Urbanist, sans-serif;
  font-size: 14px;
}

.paragraph-left {
  font-size: 14px;
}

.paragraph-left.text-size-medium {
  color: var(--blue);
  text-align: left;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.paragraph-2 {
  color: var(--slate-grey);
  text-align: right;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.link {
  text-decoration: underline;
}

.link-2 {
  color: var(--white);
}

.heading-3 {
  color: var(--blue);
  font-size: 64px;
}

.heading-3.supertext-title {
  color: #031633;
}

.heading-4 {
  color: var(--blue);
  text-align: left;
  margin-bottom: 32px;
  font-size: 40px;
}

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

.heading-4.text-align-right.section-title-resp.align-center, .heading-4.text-align-center {
  text-align: center;
}

.heading-4.tos-big-title {
  font-size: 32px;
}

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

.heading-5, .paragraph-3 {
  text-align: right;
}

.image {
  background-image: url('../images/mancha_hero.svg');
  background-position: 50%;
  background-size: contain;
}

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

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

.icon-1x1-medium-2 {
  width: 3rem;
  height: 3rem;
  margin-top: 35px;
}

.layout12_item {
  display: none;
  position: relative;
}

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

.layout12_item-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  place-items: baseline;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: none;
  position: relative;
}

.layout12_image {
  width: 100%;
  height: 100%;
}

.heading-6 {
  color: var(--slate-grey);
  text-align: right;
  text-transform: uppercase;
}

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

.paragraph-right {
  text-align: right;
  font-size: 14px;
}

.paragraph-right.text-size-medium {
  color: var(--blue);
  text-align: right;
  font-size: 16px;
  font-weight: 400;
}

.h6-section-title {
  color: var(--secondary);
  text-align: left;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 140%;
}

.h6-section-title.section-name-resp {
  color: var(--primary);
  -webkit-text-stroke-color: var(--primary);
}

.container {
  margin-left: 100px;
  margin-right: 100px;
}

.card-title {
  color: var(--blue);
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
}

.link1 {
  color: var(--secondary);
}

.div-block-2 {
  background-image: url('../images/bg_long_card.svg');
  background-position: 0 0;
  background-size: 120% 200%;
}

.footer-text {
  color: var(--slate-grey);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.footer-text-2 {
  text-align: right;
  margin-top: 16px;
  font-family: Urbanist, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.div-block-3 {
  flex: 1;
  align-self: center;
  display: flex;
}

.image-2 {
  margin-left: 7px;
  margin-right: 7px;
}

.contact5_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.success-text {
  font-weight: 600;
}

.contact5_item {
  display: flex;
}

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

.contact {
  background-image: url('../images/mancha_hero.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: scroll;
}

.error-text {
  color: #e23939;
}

.contact5_form-block {
  background-image: url('../images/bg-gradient-light.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
  padding: 64px;
}

.contact5_icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

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

.body {
  background-color: #0000;
}

.paragraph-5 {
  padding-left: 61px;
}

.paragraph-5.footer-text {
  padding-left: 40px;
}

.form-field-2col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact2_component {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.form-radio-2col {
  grid-column-gap: 1.5rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact2_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 2px;
  padding: .75rem 1.5rem;
  font-family: Montserrat, sans-serif;
}

.button-3.is-link {
  color: #000;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-3.is-secondary {
  color: #000;
  background-color: #0000;
}

.icon-embed-xsmall-2 {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 8px;
  display: flex;
}

.rl-styleguide_label-2 {
  color: #fff;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

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

.text-block-2 {
  font-family: Urbanist, sans-serif;
}

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

.text-block-4 {
  color: var(--secondary);
}

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

.container-2 {
  clear: none;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-items: start;
  display: grid;
  position: relative;
}

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

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

.flip-box {
  min-height: 300px;
  position: relative;
}

.flip-box-front {
  backface-visibility: hidden;
  background-image: url('../images/bg-box-front.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.flip-box-back {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-image: url('../images/bg-box-back.svg');
  background-position: 0 0;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.div-block-4 {
  display: inline-block;
}

.card-wrapper {
  perspective: 1000px;
  display: inline-block;
}

.card {
  background-color: var(--white);
  border-radius: 16px;
  width: 330px;
  height: 100px;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}

.paragraph-6 {
  padding: 40px;
}

.card-front {
  background-image: url('../images/bg-box-front.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.c-wrapper {
  perspective: 1000px;
  text-align: center;
  margin-top: 0;
}

.c-title-wrapper.c-mb_40 {
  margin-bottom: 40px;
}

.c-title-1 {
  font-weight: 400;
}

.c-card {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.c-card_front {
  z-index: 1;
  border: 1px solid var(--light-steel-blue);
  backface-visibility: hidden;
  background-image: url('../images/bg-box-front.svg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.c-card_back {
  backface-visibility: visible;
}

.image-3, .image-4 {
  border-radius: 24px;
}

.div-block-5 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-6 {
  transform-style: preserve-3d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.paragraph-7.text-card-use {
  color: var(--white);
  text-align: left;
  margin: 0;
  font-weight: 700;
}

.ico-card {
  margin-bottom: 8px;
}

.p-card {
  transform-style: preserve-3d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.grid {
  grid-template-columns: .25fr .25fr;
  place-content: center;
  place-items: center;
  display: none;
}

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

.layout1_image-2 {
  width: 100%;
  height: 100%;
}

.footer6_column-heading {
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer6_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

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

.footer6_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer6_newsletter-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.button-4 {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-4.is-secondary {
  color: var(--black);
  background-color: #0000;
}

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

.form-input-2 {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

.form-input-2::placeholder {
  color: #0009;
}

.footer6_link {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
}

.footer6_credit-text {
  font-size: .875rem;
}

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

.line-divider-2 {
  background-color: var(--black);
  width: 100%;
  height: 1px;
}

.footer6_newsletter-text-wrapper {
  padding-right: 394px;
}

.footer6_form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: .75rem;
  padding-left: 100px;
  display: grid;
}

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

.footer6_form-block {
  min-width: 232px;
  max-width: 230px;
  margin-bottom: 0;
}

.image-5 {
  margin-bottom: 24px;
}

.background-video {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.div-block-7 {
  width: 100%;
  height: 500px;
}

.background-video-2 {
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  object-fit: fill;
  background-color: #0000;
  background-clip: border-box;
  width: 600px;
  height: 600px;
  display: block;
  overflow: visible;
}

.background-video-3 {
  background-color: #0000;
}

.background-video-4 {
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-clip: border-box;
  width: 500px;
  max-width: 100%;
  height: 300px;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: static;
  overflow: visible;
}

.cta5_background-video-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

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

.button-5 {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-5.is-secondary {
  color: var(--black);
  background-color: #0000;
}

.button-5.is-secondary.is-alternate {
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
}

.cta5_background-video {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.video-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.section_cta5 {
  position: relative;
}

.section_cta5-2 {
  width: 600px;
  height: 600px;
  position: relative;
}

.section_cta5-2.esquema {
  width: 800px;
  height: 800px;
}

.section_cta5-2.ilus2padd-resp.ilus2padd-resp-2 {
  width: auto;
  height: auto;
}

.cta5_background-video-wrapper-2 {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  width: 600px;
  position: absolute;
  inset: 0%;
}

.cta5_background-video-wrapper-2.esquemaesquema {
  width: 800px;
}

.cta5_background-video-wrapper-2.ilus2-resp.ilus2-resp-2 {
  display: none;
}

.video-overlay-layer-2 {
  z-index: 1;
  background-color: #0000;
  display: none;
  position: absolute;
  inset: 0%;
}

.cta5_background-video-2 {
  z-index: 0;
  object-fit: cover;
  background-image: url('../images/Group-997-1.jpeg');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  display: none;
}

.terms-button {
  color: var(--slate-grey);
  text-align: right;
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  font-family: Urbanist, sans-serif;
  font-size: 10px;
}

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

.tos-text {
  color: #9ea2a5;
  margin-bottom: 32px;
  font-size: 14px;
}

.tos-sub-subtitle {
  color: var(--blue);
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 16px;
}

.lottie-animation {
  display: none;
}

.image-6 {
  position: absolute;
}

.div-block-8 {
  position: absolute;
  inset: auto 0% 0%;
}

.div-block-9 {
  position: absolute;
  top: 0;
}

.image-center {
  max-width: 100%;
  position: relative;
}

.prueba-de-vida {
  z-index: 1;
  position: absolute;
  top: 40px;
  left: -20px;
}

.id-dispositivos {
  z-index: 2;
  position: absolute;
  top: 80px;
  left: 220px;
  right: auto;
}

.div-block-11 {
  position: absolute;
  left: auto;
  right: 250px;
}

.whatsapp-2fa {
  z-index: 1;
  position: absolute;
  top: -30px;
  left: -230px;
  right: auto;
}

.verificaci-n-id {
  position: absolute;
  top: 122px;
  left: 460px;
  right: auto;
}

.firma-olografa {
  position: absolute;
  top: 56px;
  left: 700px;
  right: auto;
  overflow: hidden;
}

.bio-dactilar {
  z-index: -1;
  position: absolute;
  top: 115px;
  left: -200px;
  right: auto;
}

.firma-digital {
  z-index: 1;
  position: absolute;
  top: 450px;
  left: -83px;
  right: auto;
}

.image-7 {
  position: static;
  overflow: clip;
}

.image-8 {
  z-index: 1;
  position: absolute;
  top: 29px;
  left: -26px;
  right: auto;
}

.image-9 {
  position: absolute;
  top: 89px;
  left: -200px;
}

.image-10 {
  position: absolute;
  left: -14px;
}

.image-11 {
  position: absolute;
  left: -95px;
}

.image-12 {
  position: absolute;
  left: 200px;
  right: auto;
}

.image-13 {
  position: absolute;
  left: 200px;
}

.image-14 {
  position: absolute;
}

.image-15 {
  position: absolute;
  top: 400px;
  left: 240px;
}

.ver-transacciones {
  z-index: -1;
  position: absolute;
  top: 320px;
  left: 280px;
}

.id-digital {
  z-index: -1;
  position: absolute;
  top: 530px;
  left: -158px;
}

.geolocalizacion {
  z-index: -1;
  position: absolute;
  top: 430px;
  left: 179px;
  right: auto;
}

.federacion-idps {
  z-index: 1;
  position: absolute;
  top: 350px;
  left: -230px;
}

.se-ales-de-dispositivos {
  position: absolute;
  top: 320px;
  left: -480px;
  right: auto;
  overflow: hidden;
}

.recoleccion-de-evidencia {
  position: absolute;
  top: 220px;
  left: -330px;
}

.bio-facial {
  position: absolute;
  top: 176px;
  left: -550px;
  overflow: hidden;
}

.monitoreo {
  position: absolute;
  top: 70px;
  left: -450px;
  overflow: hidden;
}

.geo-cercanas {
  position: absolute;
  top: -29px;
  left: -570px;
  overflow: hidden;
}

.custodia-objetos {
  position: absolute;
  top: 450px;
  left: -340px;
  overflow: hidden;
}

.preguntas-y-respuestas {
  position: absolute;
  top: 530px;
  left: -570px;
  overflow: hidden;
}

.formularios-dinamicos {
  z-index: 1;
  position: absolute;
  top: 200px;
  left: 200px;
}

.cambio-de-sim {
  position: absolute;
  top: 250px;
  left: 460px;
}

.single-sign-on {
  position: absolute;
  top: 410px;
  left: 480px;
}

.verificacion-de-documentos {
  margin-left: auto;
  position: absolute;
  top: 530px;
  left: 320px;
}

.image-16 {
  position: absolute;
  top: 500px;
  left: 570px;
}

.integracion-con-reguladores {
  position: absolute;
  top: 420px;
  left: 730px;
  overflow: hidden;
}

.sms {
  position: absolute;
  top: 300px;
  left: 720px;
  overflow: hidden;
}

.image-17 {
  position: absolute;
  top: 190px;
  left: -740px;
  overflow: hidden;
}

.image-18 {
  max-width: 100%;
}

.button-gradient {
  border: 1px solid var(--light-steel-blue);
  background-color: var(--white);
  opacity: 1;
  color: var(--primary);
  background-image: linear-gradient(#cde1ff1a, #fbcfff33);
  border-radius: 16px;
  flex: 0 auto;
  margin-left: 0;
  margin-right: 0;
  padding: 20px;
  display: none;
}

.button-gradient:hover {
  background-image: linear-gradient(#cde1ff66, #fbcfff66);
}

.verificacion-passwordless {
  position: absolute;
  top: 530px;
  left: 600px;
}

.image-19 {
  position: absolute;
  top: 180px;
  left: 680px;
  overflow: hidden;
}

.sms-2 {
  position: absolute;
  top: 300px;
  left: -730px;
}

.integracion-reguladores-2 {
  position: absolute;
  top: 420px;
  left: -700px;
  overflow: hidden;
}

.btn-big__bg {
  z-index: 0;
  opacity: 0;
  background-image: linear-gradient(60deg, #cde1ff, #cde1ff 40%, #fbcfff);
  border-radius: 1.25rem;
  position: absolute;
  inset: 0%;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
}

.icon.mod--arrow-btn {
  justify-content: center;
  align-items: center;
  width: .6rem;
  position: relative;
}

.icon.mod--overflow-anim {
  position: absolute;
  bottom: 0;
  left: -2rem;
}

.arrow-wrap {
  z-index: 1;
  color: #141731;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 1.375rem;
  height: 1.375rem;
  padding: .1875rem .1875rem .1875rem .25rem;
  transition: all .3s;
  display: flex;
  transform: scale(1);
}

.arrow-wrap.text-color-greendark.mod--btn-big {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

.arrow-wrap.text-color-orange.mod--join {
  margin-left: 2rem;
}

.btn-big__content {
  background-image: linear-gradient(60deg, #fbcfff, #cde1ff);
  border-radius: 1.25rem;
  width: 14.5rem;
  height: 6rem;
  padding: 1.5rem;
  position: relative;
}

.btnbig {
  color: #fff;
  border-radius: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  position: relative;
}

.btn-big__text {
  z-index: 1;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 400;
  position: relative;
}

.btn-big__border {
  z-index: -1;
  border: .0625rem solid #00000026;
  border-radius: 1.25rem;
  margin: -1.5rem -1.5rem 1.5rem 1.5rem;
  position: absolute;
  inset: 0%;
}

.btn-arrow {
  letter-spacing: .05em;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.btn-arrow__text {
  margin-right: .5rem;
}

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

.overflow__anim {
  transition: all .5s;
  position: relative;
  bottom: 0;
  left: 0;
}

.hero__join {
  z-index: 1;
  -webkit-backdrop-filter: blur(5rem);
  backdrop-filter: blur(5rem);
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #634949;
  border: .0625rem solid #ffffff4d;
  border-radius: 1.25rem;
  align-items: center;
  width: 100%;
  max-width: 28rem;
  padding: 1.875rem 3.9375rem;
  font-size: 1.1875rem;
  font-weight: 700;
  display: flex;
  position: relative;
}

.overflow-hidden-3 {
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.btn__txt.mod--absolute {
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
}

.grid-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  background-image: linear-gradient(#cde1ff1a, #fff);
  border: 1.4px solid #0000;
  border-radius: 10px;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 320px;
  padding: 24px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.grid-block:hover {
  border-color: var(--light-steel-blue);
}

.grid-icon {
  margin-right: 20px;
}

.profile-details {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.faq-title {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  display: inline-block;
}

.paragraph-basic {
  color: #566073b3;
  letter-spacing: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
  display: none;
}

.verificacion-correo-elec {
  z-index: 0;
  position: absolute;
  top: -30px;
  left: 430px;
  overflow: hidden;
}

.firma-olografa-2 {
  position: absolute;
  top: 56px;
  left: -700px;
  overflow: hidden;
}

.solid-button-outline {
  border: 1px solid var(--secondary);
  background-color: var(--outline-hover);
  border-radius: 12px;
  width: 100px;
  margin: 0;
  position: absolute;
  inset: 0%;
}

.solid-button-outline.right {
  border-color: var(--secondary);
  border-radius: 12px;
  inset: 0% auto 0% -74px;
}

.solid-button-outline.middle {
  border-left-style: none;
  border-right-style: none;
  border-radius: 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.5em;
}

.button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: center;
  padding-right: 0;
  display: flex;
}

.button-text {
  z-index: 10;
  color: var(--secondary);
  letter-spacing: 1px;
  padding-left: 4px;
  font-size: 14px;
  line-height: 1.5em;
  position: relative;
}

.outline-button {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--light-grey);
  color: #000;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  background-color: #fff0;
  border-radius: 12px;
  grid-template-rows: auto;
  grid-template-columns: 24px 1fr 24px;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding: 0;
  font-size: 10px;
  line-height: 1.3em;
  text-decoration: none;
  display: none;
  position: relative;
}

.button-hover-outline {
  border-radius: 0;
  justify-content: flex-end;
  margin: -1px;
  padding: 0;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.button-hover-outline.right {
  width: 110%;
  inset: 0% auto 0% 0%;
}

.card-button-wrapper {
  display: flex;
}

.feature-card-description {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.button-6 {
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #090b19;
  border: 1px solid #090b19;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 28px;
  font-size: 11px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-6:hover {
  color: #090b19;
  background-color: #e2e7f1;
  border-color: #e2e7f1;
}

.button-6.grey-outline {
  color: #090b19;
  background-color: #090b1900;
  border-color: #e2e7f1;
}

.button-6.grey-outline:hover {
  color: #fff;
  background-color: #090b19;
  border-color: #090b19;
}

.button-6.grey-outline.small {
  border-radius: 12px;
}

.button-6.grey-outline.small:hover {
  border-color: var(--secondary-hover);
  background-color: var(--secondary-hover);
}

.services-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px #f3f6fc;
  border-bottom: 1px solid #f3f6fc;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 400px;
  height: 100%;
  padding: 36px;
  display: grid;
}

.clip {
  position: relative;
  overflow: hidden;
}

.card-circle {
  background-color: #f3f6fc;
  border-radius: 100%;
  width: 6vw;
  max-width: 800px;
  height: 6vw;
  max-height: 800px;
  position: absolute;
  inset: -6vw -6vw auto auto;
}

.heading-7 {
  z-index: 10;
  font-family: Urbanist, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.icon-2 {
  z-index: 10;
  background-color: var(--outline-hover);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  display: flex;
  position: relative;
}

.services-grid {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  border-top: 1px solid #f3f6fc;
  border-left: 1px solid #f3f6fc;
  border-right: 1px solid #f3f6fc;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-text-2 {
  z-index: 10;
  color: var(--white);
  position: relative;
}

.feature-card-info {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-hover-item {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  border-top: 1px #f3f6fc;
  border-bottom: 1px #f3f6fc;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start stretch;
  padding: 0;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.body-display {
  color: #6e7488;
  font-size: 16px;
  line-height: 1.6em;
}

.layout239_list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.hero_card {
  border: 1px solid var(--white);
  text-align: center;
  background-image: url('../images/Rectangle-900.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: cover;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.3rem 3.5rem;
  display: flex;
}

.hero_card:hover {
  border: 1px solid var(--secondary-hover);
}

.hero-icon {
  background-color: #0000;
  border-radius: 100px;
  margin-bottom: 0;
  padding: 1rem;
}

.icon-1x1-large-2 {
  opacity: 1;
  width: 3rem;
  height: 3rem;
}

.icon-1x1-large-2:hover {
  opacity: 1;
}

.text-color-white-2 {
  color: var(--blue);
  font-size: 24px;
  font-weight: 400;
}

.documentacion {
  display: none;
}

.heading-8 {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 700;
}

.text-block-5 {
  color: var(--blue);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.image-20 {
  margin-top: 16px;
  margin-left: 24px;
}

.div-block-12 {
  flex-flow: row;
  margin-top: 0;
  margin-left: 24px;
  display: flex;
}

.button-7 {
  margin-left: 16px;
}

.image-21 {
  width: 48px;
  height: 48px;
  margin-left: 0;
  margin-right: 16px;
}

.button-card {
  color: #6610f2;
  background-color: #0000;
}

.box_corner {
  background-color: #ffa155;
  width: 62.5%;
  height: 62.5%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.box_corner.is-right-box {
  background-color: #666dff;
  width: 37.5%;
  height: 37.5%;
  inset: 0% 0% auto auto;
}

.box_corner.inner-box {
  background-color: #ffd3af;
  width: 60%;
  height: 60%;
  inset: 0% 0% auto auto;
}

.box_corner.is-bottom-box {
  background-color: #666dff;
  width: 37.5%;
  height: 37.5%;
  inset: auto auto 0% 0%;
}

.box_group-corner {
  width: 3rem;
  height: 3rem;
}

.box_group-corner.is-top-left {
  width: 3rem;
  height: 3rem;
  position: absolute;
  inset: 0% auto auto 0%;
}

.button-arrow-icon {
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1rem;
  margin-left: 1rem;
  display: flex;
}

.card-button {
  background-color: var(--white);
  color: #fff;
  cursor: pointer;
  border-radius: 16px;
  align-items: center;
  width: 330px;
  padding: 1.5rem 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.card-button:hover {
  background-color: #f4f1ff;
}

.text-block-6 {
  color: var(--primary);
  font-family: Urbanist, sans-serif;
  font-weight: 500;
}

.image-22 {
  margin-left: 8px;
}

.div-block-13 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.tabs-menu {
  flex-flow: column;
  display: flex;
}

.tabs {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.image-23 {
  margin-left: 60px;
}

.tab-link-tab-1 {
  background-color: var(--white);
  padding-right: 24px;
}

.tab-link-tab-1.w--current {
  border-right: 2px solid var(--primary);
  background-color: var(--white);
  padding-left: 32px;
  padding-right: 32px;
}

.text-block-7 {
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

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

.tab-2.w--current {
  border-right: 2px solid var(--primary);
  background-color: var(--white);
  font-weight: 700;
}

.tab-link-tab-3 {
  background-color: var(--white);
  color: var(--blue);
}

.tab-link-tab-3.w--current {
  border-right: 2px solid var(--primary);
  background-color: var(--white);
}

.text-block-8 {
  color: var(--primary);
  text-align: right;
  font-size: 18px;
  font-weight: 600;
}

.text-block-9, .text-block-10 {
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.tab-link-tab-5 {
  background-color: var(--white);
}

.tab-link-tab-5.w--current {
  border-right: 2px solid var(--primary);
  background-color: var(--white);
}

.tab1 {
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.tab1.w--current {
  border-right: 2px solid var(--primary);
  background-color: var(--white);
}

.tab1.current {
  background-color: var(--white);
  color: var(--blue);
}

.default {
  background-color: var(--white);
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.defalut {
  color: var(--primary);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-block-11 {
  color: var(--blue);
  font-weight: 600;
}

.current {
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-block-12, .text-block-13 {
  font-weight: 600;
}

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

.text-span-2 {
  color: #28d9d4;
}

.div-block-14, .image-24 {
  border-radius: 24px;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.grid-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-right: 60px;
  display: flex;
}

.grid-4 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.text-span-3 {
  color: #00d9ff;
}

.text-span-4 {
  color: #28d9d4;
}

.paragraph-8 {
  font-family: Urbanist, sans-serif;
}

.bold-text-3 {
  color: #00d9ff;
}

.bold-text-4 {
  font-weight: 300;
}

.tabs-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tabs-menu-2 {
  flex-flow: column;
  display: flex;
}

.text_tab {
  opacity: 1;
  color: var(--indigo-hover);
  text-align: right;
  background-color: #0000;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.text_tab.current {
  color: var(--indigo-hover);
}

.image-25 {
  margin-left: 100px;
}

.image-26, .image-27, .image-28, .image-29 {
  margin-left: 0;
}

.tab-link-tab-1-2 {
  background-color: var(--white);
}

.tab-link-tab-1-2.w--current {
  border-right: 2px solid var(--primary);
  background-color: var(--white);
}

.tab-link-tab-2 {
  background-color: var(--white);
}

.tab-link-tab-2.w--current {
  border-right: 2px solid var(--primary);
  background-color: var(--white);
}

.tab-link-tab-3-2 {
  background-color: var(--white);
}

.tab-link-tab-3-2.w--current {
  border-right: 2px solid var(--primary);
  background-color: var(--white);
}

.tab-link-tab-4 {
  background-color: var(--white);
  border: 1px #000;
}

.tab-link-tab-4.w--current {
  border-style: solid;
  border-width: 1px 2px 1px 1px;
  border-color: var(--white) var(--primary) var(--white) var(--white);
  background-color: var(--white);
}

.tab-link-tab-5-2 {
  background-color: var(--white);
}

.tab-link-tab-5-2.w--current {
  border-right: 2px solid var(--primary);
  background-color: var(--white);
}

.tabs-content {
  margin-left: 40px;
}

.tabs-3 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.tabs-menu-3 {
  flex-flow: column;
  display: flex;
}

.tab-link-tab-1-3 {
  background-color: var(--white);
  font-family: Lato, sans-serif;
}

.tab-link-tab-1-3.w--current {
  border-right: 3px solid var(--primary);
  background-color: var(--white);
  color: var(--blue);
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
}

.tab-link-tab-2-2 {
  background-color: var(--white);
  margin-bottom: 8px;
}

.tab-link-tab-2-2.w--current {
  border-right: 3px solid var(--primary);
  background-color: var(--white);
}

.tab-link-tab-3-3 {
  background-color: var(--white);
  margin-bottom: 8px;
}

.tab-link-tab-3-3.w--current {
  border-right: 3px solid var(--primary);
  background-color: var(--white);
}

.tab-link-tab-4-2 {
  background-color: var(--white);
  margin-bottom: 8px;
}

.tab-link-tab-4-2.w--current {
  border-right: 3px solid var(--primary);
  background-color: var(--white);
}

.tab-link-tab-5-3 {
  background-color: var(--white);
}

.tab-link-tab-5-3.w--current {
  border-right: 3px solid var(--primary);
  background-color: var(--white);
}

.tab-pane-tab-1-2 {
  margin-left: 40px;
  padding-left: 0;
}

.tabs-content-2 {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
}

.tab-pane-02 {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 64px;
}

.tab-pane-02._1 {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 40px;
}

.tab-pane-02._2, .tab-pane-02._4 {
  background-color: var(--white);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 40px;
}

.tab-pane-02._3 {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 40px;
}

.tab-link-02 {
  background-color: #0000;
}

.tab-link-02._2 {
  padding-left: 20px;
  padding-right: 20px;
}

.tab-link-02._2.w--current {
  border-style: solid;
  border-width: 0 3px 0 0;
  border-color: var(--primary);
  background-color: var(--white);
}

.margin-24 {
  margin-top: 16px;
  margin-bottom: 24px;
}

.button-8 {
  background-color: #eda23f;
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
}

.button-8:hover {
  background-color: #ec9017;
}

.button-8:active {
  background-color: #c7760b;
}

.button-8.green {
  background-color: #388054;
}

.tabs-4 {
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.tab-link-3 {
  opacity: 1;
  background-color: #0000;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
}

.tab-link-3.w--current {
  border: 1px solid var(--white);
  opacity: 1;
  background-color: #e0cffc4d;
  border-radius: 8px;
  padding: 10px 20px;
}

.tab-link-4._3 {
  background-color: var(--white);
  padding-left: 20px;
  padding-right: 20px;
}

.tab-link-4._3.w--current {
  border-top: 1px none var(--primary);
  border-right: 3px solid var(--primary);
}

.tab-image-wrapper {
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  width: 50%;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.tabs-menu-4 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.tab-link-5._4 {
  background-color: var(--white);
  padding-left: 20px;
  padding-right: 20px;
}

.tab-link-5._4.w--current {
  border-style: solid;
  border-width: 0 3px 0 0;
  border-color: var(--primary);
  background-color: var(--white);
}

.tabs-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.tabs-content-3 {
  width: 45%;
}

.tab-link-tab-5-4 {
  background-color: var(--white);
  padding-left: 20px;
  padding-right: 20px;
}

.tab-link-tab-5-4.w--current {
  border-style: solid;
  border-width: 0 3px 0 0;
  border-color: var(--primary);
  background-color: var(--white);
}

.tab-pane-tab-5 {
  padding-left: 40px;
}

.mask {
  background-color: var(--white);
  flex: 0 auto;
  height: 400px;
}

.image-31 {
  box-sizing: border-box;
  vertical-align: baseline;
  width: auto;
  max-width: 100%;
  height: 400px;
  display: block;
  overflow: clip;
}

.slider {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 0;
  margin-left: auto;
  padding: 20px 60px;
  display: flex;
}

.slide-2 {
  height: 400px;
}

.slide-3 {
  background-color: var(--white);
  height: 500px;
  margin-bottom: auto;
}

.slide-4, .slide-5 {
  background-color: var(--white);
}

.div-block-16 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slider-2 {
  background-color: var(--white);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 400px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.slide-6 {
  background-color: var(--white);
  height: 350px;
}

.mask-2 {
  flex: 0 auto;
}

.image-32 {
  box-sizing: border-box;
  object-fit: fill;
  width: 100%;
  height: 350px;
}

.left-arrow {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: 350px;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.right-arrow {
  justify-content: center;
  align-items: center;
  max-width: 10%;
  height: 350px;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.section {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: relative;
  overflow: hidden;
}

.wrapper {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
  top: 0;
  left: 0;
  right: 0;
}

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

.slider-arrow, .slide-nav {
  color: #096ad0;
}

.image-34 {
  max-width: 800px;
}

.slide-7 {
  vertical-align: baseline;
}

.section-3 {
  overflow: hidden;
}

.blog3-articles-wrap {
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.btn {
  float: none;
  color: #fff;
  text-align: center;
  background-color: #1991eb;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 11px 25px;
  line-height: 24px;
  transition: color .2s, box-shadow .2s, background-color .2s, transform .4s;
  display: inline-block;
}

.btn:hover {
  color: #fff;
  background-color: #1386dd;
  border-color: #0c6eb8;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px #0000001a;
}

.btn:active {
  transform: translate(0, -1px);
  box-shadow: 0 1px 1px #0000001a;
}

.btn.btn-white {
  color: #111212;
  background-color: #fff;
  align-items: flex-end;
  display: inline-block;
}

.btn.btn-white.blog2-card-cta {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 30px;
}

.card-headline {
  margin-top: 10px;
}

.card-headline._6col-card {
  width: 50%;
}

.wrap {
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wrap.w50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.tagline {
  opacity: .6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.headline-6-col {
  width: 460px;
  margin-bottom: 50px;
}

.blog3-card {
  color: #fff;
  background-image: linear-gradient(#000, #000);
  border-radius: 8px;
  height: 340px;
  padding: 30px;
  transition: box-shadow .4s;
  position: relative;
}

.blog3-card.blog3-card3-content {
  color: #111212;
  background-image: none;
  background-position: 50%;
  background-size: cover;
}

.blog3-card.blog3-card1-content {
  color: #fff;
  background-image: none;
  background-position: 50%;
  background-size: cover;
  position: relative;
}

.blog3-card.blog3-card6-content {
  color: #fff;
  background-image: none;
  background-position: 50%;
  background-size: cover;
}

.blog3-card.blog3-card4-content {
  color: #111212;
  background-image: none;
  background-position: 50%;
  background-size: cover;
}

.blog3-card.blog3-card2-content {
  color: #fff;
  background-image: none;
  background-position: 50%;
  background-size: cover;
}

.blog3-card.blog3-card5-content {
  color: #111212;
  background-image: none;
  background-position: 50%;
  background-size: cover;
}

._6-col {
  width: 460px;
  margin-right: 20px;
  display: inline-block;
}

._6-col._6-col-last {
  margin-right: 0;
}

._3-col {
  width: 220px;
  margin-right: 20px;
  display: inline-block;
}

._3-col._3-col-last {
  margin-right: 0;
}

.tabs-vertical {
  justify-content: flex-start;
  align-items: center;
  margin-left: 40px;
  display: flex;
  position: static;
}

.tabs-menu-toggle-vertical {
  background-color: #f3f5fb00;
  border: 0 solid #000;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  min-width: 180px;
  margin-right: 32px;
  padding: 8px 8px 8px 0;
  display: flex;
  position: static;
}

.tab-button-vertical-toggle {
  border: 1px solid var(--white);
  color: #160042;
  text-align: left;
  letter-spacing: -.01em;
  background-color: #0000;
  border-radius: 0;
  width: 100%;
  padding: 12px 8px;
  font-size: 14px;
}

.tab-button-vertical-toggle.w--current {
  border-style: none solid none none;
  border-width: 2px 2px 0;
  border-color: var(--indigo-hover);
  background-color: var(--white);
  color: #160042;
  border-radius: 0;
  width: 250px;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 500;
  position: static;
}

.tab-pane {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px 0 32px 32px;
  position: static;
}

.tab-small-heading {
  color: #160042;
  letter-spacing: -.03em;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.paragraph-regular {
  letter-spacing: -.02em;
  font-size: 16px;
  line-height: 24px;
}

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

.text-block-14 {
  color: var(--blue);
  font-size: 18px;
}

.text-block-14.current {
  color: var(--indigo-hover);
  text-align: left;
}

.text-block-14.blue {
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-15 {
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-16 {
  color: var(--blue);
  font-size: 18px;
}

.text-block-16.blue {
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-17 {
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-18 {
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.image-35 {
  max-height: 100%;
}

.tabs-content-4 {
  position: static;
}

.tabs-vertical-2 {
  display: flex;
  position: static;
}

.tabs-menu-toggle-vertical-2 {
  background-color: var(--white);
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  min-width: 280px;
  margin-right: 32px;
  padding: 8px;
  display: flex;
}

.tab-button-vertical-toggle-2 {
  color: #160042;
  text-align: left;
  letter-spacing: -.01em;
  background-color: #0000;
  border-radius: 4px;
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
}

.tab-button-vertical-toggle-2.w--current {
  border-top: 1px none var(--indigo-hover);
  border-bottom: 1px none var(--indigo-hover);
  border-left: 2px solid var(--primary);
  color: #160042;
  background-color: #fff;
  border-radius: 0;
  width: 100%;
  max-width: 300px;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 500;
}

.tab-pane-3 {
  background-color: var(--white);
  border-radius: 12px;
  max-width: 100%;
  max-height: 41%;
  padding: 24px;
}

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

.f-testimonial-outline-fixed {
  color: #160042;
  background-color: #fff;
  border: 2px solid #7b61ff1a;
  border-radius: 12px;
  max-width: 350px;
  padding: 32px 24px 24px;
  transition: box-shadow .2s, border-color .2s;
}

.f-testimonial-outline-fixed:hover {
  border-color: #0000;
  box-shadow: 29px 57px 140px -48px #393b6a1f;
}

.f-testimonial-outline-fixed.trus_sso, .f-testimonial-outline-fixed.firma_digital {
  border-width: 2px;
  max-width: 400px;
}

.f-margin-bottom-48 {
  margin-bottom: 48px;
}

.f-container-regular {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.f-h3-heading {
  color: #160042;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2;
}

.f-testimonial-author {
  grid-column-gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.f-testimonial-author:hover {
  border-color: #0000;
  box-shadow: 23px 23px 64px -16px #393b6a0f;
}

.f-paragraph-small {
  color: var(--blue);
  letter-spacing: -.01em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.f-text-weight-medium {
  color: var(--slate-grey);
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.f-h6-heading {
  color: var(--blue);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.f-title-wrapper-center {
  z-index: 5;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.f-section-regular {
  padding: 0 5% 72px;
  position: relative;
}

.f-paragraph-regular {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.f-paragraph-regular.f-text-weight-medium {
  font-weight: 500;
}

.f-testimonial-avatar-small {
  background-color: #f3f5fb;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.f-heading-detail-small {
  color: #6b7094;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

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

.f-testimonial-background {
  background-color: #0000;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  width: 100%;
  height: 30%;
  position: absolute;
  inset: auto 0% 0%;
}

.f-avatar-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.f-testimonial-card-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  display: none;
}

.f-margin-bottom-49 {
  margin-bottom: 16px;
}

.f-testimonial-l-arrow {
  color: #393b6a;
  background-color: #fff;
  border: 1px solid #e4e6f1;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 6px;
  transition: all .3s;
  display: flex;
}

.f-testimonial-l-arrow:hover {
  background-color: var(--indigo-hover);
  color: #fff;
}

.f-testimonial-slider-regular {
  background-color: #0000;
  height: auto;
  padding-left: 72px;
  padding-right: 72px;
}

.f-margin-bottom-50 {
  margin-bottom: 48px;
}

.f-testimonial-author-2 {
  grid-column-gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.f-testimonial-author-2:hover {
  border-color: #0000;
  box-shadow: 23px 23px 64px -16px #393b6a0f;
}

.f-paragraph-small-2 {
  letter-spacing: -.01em;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.f-text-weight-medium-2 {
  color: var(--blue);
  font-weight: 400;
}

.f-slide-nav-hidden {
  display: none;
  bottom: -50px;
}

.f-container-large {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: relative;
}

.f-h6-heading-2 {
  color: var(--blue);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.f-testimonial-slider-grid-large {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: none;
}

.f-testimonial-r-arrow {
  color: #fff;
  background-color: #7b61ff;
  border: 1px solid #e4e6f1;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 6px;
  transition: all .3s;
  display: flex;
}

.f-testimonial-r-arrow:hover {
  color: #fff;
  background-color: #7b61ff;
  border-color: #7b61ff;
}

.f-testimonial-mask {
  width: 100%;
}

.f-section-regular-2 {
  background-color: #fff;
  border-radius: 24px;
  padding: 0 5%;
  display: none;
  position: relative;
}

.f-testimonial-card {
  color: #160042;
  background-color: #fff;
  border: 2px solid #7b61ff1a;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 23px 23px 64px -16px #393b6a0f;
}

.f-testimonial-avatar-small-2 {
  background-color: #f3f5fb;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.f-icon-regular {
  -webkit-text-stroke-color: var(--primary);
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color .2s;
  display: flex;
}

.image-36 {
  padding-left: 60px;
}

.b-h3-heading {
  color: #3e376d;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}

.b-integration-grid-large {
  grid-column-gap: 40px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.b-button-plain-icon-right {
  grid-column-gap: 8px;
  color: #5e53a2;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  transition: color .3s;
  display: flex;
}

.b-button-plain-icon-right:hover {
  color: #3e376d;
}

.b-integration-button-wrapper {
  margin-top: 16px;
  display: none;
}

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

.b-paragraph-small {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.b-paragraph-small.b-text-color-gray-700 {
  color: #454f5f;
}

.b-badge {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.margin-bottom-08 {
  margin-bottom: 8px;
}

.b-integration-icon-dark {
  background-color: var(--white);
  border-radius: 24px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.b-button-default-icon {
  grid-column-gap: 4px;
  color: #454f5f;
  background-color: #f3f4f6;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.b-button-default-icon:hover {
  color: #fff;
  background-color: #3e376d;
}

.b-integration-heading-content {
  width: 100%;
  max-width: 510px;
}

.b-integration-grid-block {
  grid-column-gap: 24px;
  background-color: var(--white);
  border: 1px solid #7b61ff1a;
  border-radius: 12px;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.b-heading-wrapper {
  grid-column-gap: 44px;
  grid-row-gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  display: flex;
}

.b-badge-caption {
  letter-spacing: .01em;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.b-container-small {
  z-index: 5;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  inset: 0% auto 0% 0%;
}

.b-badge-icon {
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
}

.b-paragraph-large {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}

.b-paragraph-large.b-text-weight-semibold {
  font-weight: 600;
}

.b-icon-xxsmall {
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
}

.b-section-regular {
  padding: 92px 5%;
  display: block;
  position: relative;
  overflow: hidden;
}

.b-icon-small {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.f-section-large {
  padding: 92px 5%;
  position: relative;
}

.f-grid-three-column {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: stretch;
}

.f-feature-card-filled {
  background-color: #f4f1ff;
  border-radius: 12px;
  padding: 32px;
}

.f-feature-icon-wrapper-white {
  background-color: #0000;
  border-radius: 8px;
  width: 72px;
  min-width: 72px;
  height: 72px;
  min-height: 72px;
  margin-bottom: 40px;
  padding: 16px;
}

.f-margin-bottom-51 {
  margin-bottom: 16px;
}

.f-h5-heading {
  color: #160042;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.4;
}

.f-paragraph-large {
  color: var(--blue);
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
}

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

.tabs-menu-button {
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.tab-button {
  color: #160042;
  text-align: center;
  letter-spacing: -.01em;
  background-color: #fff;
  border-radius: 8px;
  padding: 12px 44px;
  font-size: 14px;
  line-height: 24px;
}

.tab-button.w--current {
  color: #fff;
  background-color: #7b61ff1a;
  font-weight: 500;
}

.tab-pane-4 {
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
}

.text-block-19 {
  color: var(--indigo-hover);
}

.semi-bold, .bold-text-5, .bold-text-6, .bold-text-7, .bold-text-8, .bold-text-9 {
  font-weight: 500;
}

.bold-text-10, .bold-text-11 {
  font-weight: 300;
}

.bold-text-12, .bold-text-13, .bold-text-14 {
  font-weight: 500;
}

.bold-text-15, .bold-text-16 {
  font-weight: 600;
}

.tab-pane-5 {
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
}

.text-block-20 {
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-21 {
  color: var(--blue);
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-22, .text-block-23, .text-block-24 {
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.f-margin-bottom-52 {
  margin-bottom: 16px;
}

.f-margin-bottom-53 {
  margin-bottom: 48px;
}

.f-testimonial-author-3 {
  grid-column-gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  text-decoration: none;
  display: flex;
}

.f-testimonial-author-3:hover {
  border-color: #0000;
  box-shadow: 23px 23px 64px -16px #393b6a0f;
}

.f-paragraph-small-3 {
  letter-spacing: -.01em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.f-text-weight-medium-3 {
  color: var(--blue);
  font-weight: 300;
}

.f-container-large-2 {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-h6-heading-3 {
  color: #160042;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.5;
}

.f-testimonial-slider-grid-large-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.f-testimonial-r-arrow-2 {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid #e4e6f1;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 6px;
  transition: all .3s;
  display: flex;
}

.f-testimonial-r-arrow-2:hover {
  border-color: var(--indigo-hover);
  background-color: var(--indigo-hover);
  color: #fff;
}

.f-testimonial-card-2 {
  color: #160042;
  background-color: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 23px 23px 64px -16px #393b6a0f;
}

.f-testimonial-avatar-small-3 {
  background-color: #f3f5fb;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.f-avatar-image-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-37 {
  margin-left: 0;
  padding-left: 50px;
  padding-right: 0;
}

.image-38, .image-39, .image-40, .image-41 {
  padding-left: 50px;
}

.tabs-menu-toggle-vertical-3 {
  background-color: var(--white);
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  min-width: 180px;
  margin-right: 32px;
  padding: 8px;
  display: flex;
}

.tab-button-vertical-toggle-3 {
  color: #160042;
  text-align: left;
  letter-spacing: -.01em;
  background-color: #0000;
  border-radius: 4px;
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
}

.tab-button-vertical-toggle-3.w--current {
  border-right: 2px solid var(--primary);
  box-shadow: none;
  color: #160042;
  background-color: #fff;
  border-radius: 0;
  font-weight: 500;
}

.tab-pane-6 {
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
}

.navigation-wrapper {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.navigation {
  background-color: #fff;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 24px 5%;
  display: flex;
}

.navigation-avatar-wrapper {
  grid-column-gap: 16px;
  align-items: center;
  display: flex;
}

.banner-regular {
  grid-column-gap: 16px;
  color: #fff;
  text-align: center;
  background-color: #160042;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 16px 5%;
  display: flex;
}

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

.paragraph-small {
  letter-spacing: -.01em;
  font-size: 14px;
  line-height: 24px;
}

.banner-badge {
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #282556;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 16px;
  transition: background-color .3s;
  display: flex;
  position: relative;
}

.banner-badge:hover {
  background-color: #393b6a;
}

.logo-link-large {
  margin-right: 24px;
}

.logo {
  width: 124px;
}

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

.avatar-regular {
  background-color: #f3f5fb;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.navigation-link {
  color: #160042;
  letter-spacing: -.01em;
  white-space: nowrap;
  background-color: #0000;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .35s;
}

.navigation-link:hover {
  color: #160042;
  background-color: #f3f5fb;
}

.navigation-link.w--current {
  color: #642eff;
}

.navigation-button {
  outline-offset: 0px;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #160042;
  border-radius: 48px;
  outline: 2px solid #0000;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

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

.text-block-25 {
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-block-26 {
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-block-27, .text-block-28, .text-block-29 {
  color: var(--blue);
  text-align: right;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.tabs-vertical-3 {
  display: flex;
}

.tabs-menu-vertical-menu {
  border: 0 solid #642eff;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  min-width: 180px;
  margin-right: 32px;
  display: flex;
  overflow: hidden;
}

.tab-button-vertical-menu {
  color: #160042;
  text-align: center;
  letter-spacing: -.01em;
  background-color: #fff;
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 24px;
}

.tab-button-vertical-menu.w--current {
  color: #fff;
  background-color: #f4f1ffb3;
  border-radius: 8px;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 500;
}

.tab-pane-7 {
  background-color: #fff;
  border-radius: 12px;
  padding: 0 24px 0 40px;
}

.text-block-30, .text-block-31, .text-block-32, .text-block-33, .text-block-34 {
  color: var(--blue);
  text-align: left;
  font-family: Urbanist, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.div-block-17 {
  background-color: var(--white);
  height: 180px;
}

.f-margin-bottom-54 {
  margin-bottom: 16px;
}

.f-container-regular-2 {
  background-image: url('../images/bg_long_card.svg');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 72px;
  position: relative;
}

.f-h4-heading {
  color: #160042;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  line-height: 1.4;
}

.f-margin-bottom-08 {
  margin-bottom: 8px;
}

.f-logo-button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

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

.f-button-neutral {
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #160042;
  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-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;
}

.f-section-regular-3 {
  padding: 72px 5%;
  position: relative;
}

.f-grid-two-column {
  grid-column-gap: 58px;
  grid-row-gap: 58px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
}

.f-logo-block {
  background-color: #0000;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-height: 96px;
  padding: 0;
  display: block;
}

.div-block-18 {
  text-align: right;
}

.div-block-19 {
  text-align: right;
  max-width: 100%;
}

.f-margin-bottom-55 {
  margin-bottom: 16px;
}

.f-logo-grid-primary {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: none;
}

.f-section-small {
  padding: 64px 5%;
  position: relative;
}

.f-container-regular-3 {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-margin-bottom-56 {
  margin-bottom: 8px;
}

.f-logo-grid-middle {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  margin-top: 40px;
  margin-bottom: 40px;
}

.f-grid-two-column-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-image: url('../images/bg_long_card.svg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 40px 60px 100px;
}

.f-logo-button-wrap {
  justify-content: flex-start;
  margin-top: 100px;
  display: flex;
}

.desktop-image-1 {
  display: inline-block;
}

.mobile-image-1, .mobile-image-2, .mobile-image-3, .mobile-image-4, .mobile-image-5 {
  display: none;
}

.div-block-20 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.dropdown-toggle {
  display: block;
}

.mobile-prueba-de-vida, .mobile-ver-de-id, .mobile-firma-olografa, .image-42, .image-43, .image-44, .image-45, .image-46, .image-47, .tablet-image-1, .tablet-image-2, .tablet-image-3, .tablet-image-4, .image-48, .image-49 {
  display: none;
}

.image-50 {
  z-index: 1;
  position: absolute;
  inset: -94px -26px auto auto;
}

.image-51, .image-52, .image-53 {
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .margin-top.margin-medium {
    margin-top: 0;
  }

  .text-size-medium.paragraph-center {
    font-family: Inter, sans-serif;
    font-size: 20px;
  }

  .button.is-small.is-outline {
    color: #e581b1;
    border-color: #e581b1;
  }

  .button.is-small.is-outline:hover {
    background-color: #fcf3f8;
  }

  .button.is-small.is-outline.cta:hover {
    border-color: var(--light-steel-blue);
    background-color: var(--light-steel-blue);
    -webkit-text-stroke-color: var(--light-steel-blue);
  }

  .button.is-icon.is-small:hover {
    border-color: var(--indigo-hover);
    background-color: var(--indigo-hover);
  }

  .button.is-icon.is-small.hero:hover {
    background-color: #0000;
    border-color: #0000;
  }

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

  .heading-light-h5.supertext-p {
    font-size: 20px;
    font-weight: 300;
  }

  .heading-light-h6.contact-p-resp {
    font-weight: 300;
  }

  .heading-2.hero-titulo-respon {
    color: var(--blue);
  }

  .paragraph-left.text-size-medium {
    font-family: Inter, sans-serif;
    font-weight: 300;
  }

  .paragraph-2 {
    font-family: Inter, sans-serif;
  }

  .heading-3.supertext-title {
    color: var(--blue);
  }

  .prueba-de-vida {
    left: -40px;
  }

  .id-dispositivos {
    top: 60px;
    left: 230px;
  }

  .whatsapp-2fa {
    left: -260px;
  }

  .firma-olografa {
    top: 60px;
    left: 700px;
  }

  .bio-dactilar {
    top: 120px;
  }

  .ver-transacciones {
    top: 330px;
  }

  .id-digital {
    top: 550px;
  }

  .federacion-idps {
    top: 370px;
  }

  .se-ales-de-dispositivos {
    left: -500px;
  }

  .recoleccion-de-evidencia {
    top: 240px;
    left: -300px;
  }

  .bio-facial {
    left: -530px;
  }

  .monitoreo {
    left: -420px;
  }

  .geo-cercanas {
    left: -580px;
  }

  .custodia-objetos {
    top: 450px;
    left: -400px;
  }

  .preguntas-y-respuestas {
    top: 540px;
    left: -590px;
  }

  .formularios-dinamicos {
    top: 200px;
  }

  .single-sign-on {
    left: 460px;
  }

  .integracion-con-reguladores {
    left: 750px;
  }

  .sms {
    left: 690px;
  }

  .image-17 {
    top: 180px;
    left: -740px;
  }

  .verificacion-passwordless {
    left: 600px;
  }

  .image-19 {
    top: 180px;
    left: 720px;
  }

  .sms-2 {
    left: -770px;
  }

  .integracion-reguladores-2 {
    top: 430px;
    left: -720px;
  }

  .verificacion-correo-elec {
    left: 400px;
  }

  .firma-olografa-2 {
    top: 70px;
    left: -760px;
  }

  .services-card {
    padding: 48px;
  }

  .hero_card {
    border-color: var(--bg-white);
  }

  .text-block-5 {
    font-family: Inter, sans-serif;
    font-size: 20px;
  }

  .card-button:hover {
    background-color: #f4f1ff;
  }

  .div-block-13 {
    justify-content: center;
    align-items: flex-start;
  }

  .tab-link-tab-1.w--current {
    border-right: 1px solid var(--primary);
    background-color: var(--white);
  }

  .text-block-7 {
    color: var(--primary);
    font-family: Urbanist, sans-serif;
    font-size: 18px;
    font-weight: 700;
  }

  .tab-2, .tab-link-tab-3 {
    background-color: var(--white);
  }

  .text-block-8, .text-block-9, .text-block-10 {
    font-size: 18px;
  }

  .grid-2 {
    flex-flow: row;
    margin-right: 60px;
  }

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

  .div-block-15 {
    flex: 1;
  }

  .bold-text-4 {
    font-weight: 400;
  }

  .tabs-2 {
    justify-content: center;
    align-items: center;
  }

  .text_tab {
    font-weight: 600;
  }

  .image-25, .image-26, .image-27 {
    margin-left: 0;
  }

  .image-28, .image-29 {
    margin-left: auto;
  }

  .tab-pane-tab-1 {
    margin-left: 60px;
  }

  .tabs-content {
    margin-left: 0;
  }

  .tab-pane-tab-2 {
    margin-left: 40px;
  }

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

  .image-30 {
    width: 100%;
    overflow: hidden;
  }

  .tab-link-tab-1-3.w--current, .tab-link-tab-2-2, .tab-link-tab-3-3, .tab-link-tab-4-2 {
    margin-bottom: 8px;
  }

  .tabs-4 {
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
  }

  .tabs-menu-4 {
    display: none;
  }

  .slider-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    place-content: stretch center;
    align-items: center;
    display: flex;
  }

  .slide-6 {
    box-sizing: border-box;
    vertical-align: baseline;
    object-fit: cover;
    height: 500px;
  }

  .mask-2 {
    flex: 0 auto;
    height: 500px;
  }

  .image-32 {
    height: 500px;
    display: block;
  }

  .left-arrow {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-33 {
    width: 32px;
    height: 32px;
  }

  .tabs-vertical {
    justify-content: space-around;
    align-items: center;
    position: static;
  }

  .tabs-menu-toggle-vertical {
    margin-right: 20px;
  }

  .tab-button-vertical-toggle.w--current {
    text-align: right;
    width: 100%;
  }

  .tab-pane {
    padding: 32px;
    position: static;
  }

  .image-35 {
    max-height: 100%;
  }

  .tab-button-vertical-toggle-2.w--current {
    border-style: solid none none solid;
    border-width: 0 0 0 2px;
    border-color: var(--indigo-hover);
    box-shadow: none;
    border-radius: 0;
  }

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

  .f-testimonial-outline-fixed {
    border-width: 2px;
    border-color: #7b61ff1a;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 400px;
    padding-bottom: 24px;
    display: block;
  }

  .f-testimonial-outline-fixed.trus_sso, .f-testimonial-outline-fixed.firma_digital {
    max-width: 400px;
  }

  .f-text-weight-medium {
    line-height: 1.5;
  }

  .f-testimonial-card-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    align-content: stretch;
  }

  .f-testimonial-author-2 {
    margin-bottom: 24px;
  }

  .f-text-weight-medium-2 {
    color: var(--blue);
  }

  .f-h6-heading-2 {
    font-weight: 600;
  }

  .f-section-regular-2 {
    background-color: #fff;
  }

  .f-testimonial-card {
    box-shadow: none;
    border: 2px solid #7b61ff1a;
  }

  .f-testimonial-avatar-small-2 {
    border-radius: 8px;
  }

  .bold-text-11 {
    font-weight: 300;
  }

  .f-paragraph-small-3 {
    color: var(--blue);
  }

  .f-h6-heading-3 {
    color: var(--blue);
    font-size: 20px;
  }

  .f-testimonial-slider-grid-large-2 {
    grid-template-columns: 1fr;
  }

  .image-37 {
    margin-left: 0;
    padding-left: 40px;
    padding-right: 0;
  }

  .tabs-menu-vertical-menu {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .tab-pane-7 {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 40px;
  }

  .text-block-30 {
    color: var(--blue);
    font-family: Urbanist, sans-serif;
    font-size: 16px;
    font-weight: 600;
  }

  .text-block-31 {
    color: var(--blue);
    font-weight: 600;
  }

  .text-block-32, .text-block-33, .text-block-34 {
    font-weight: 600;
  }

  .f-logo-block {
    padding-left: 0;
    padding-right: 0;
  }

  .f-section-small {
    padding-bottom: 60px;
  }

  .f-grid-two-column-2 {
    padding: 60px 40px 60px 100px;
  }

  .image-50 {
    top: -110px;
    right: 14px;
  }
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .container-large {
    flex-flow: column;
    display: flex;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

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

  .margin-top.margin-medium.align-right {
    justify-content: center;
  }

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

  .margin-bottom.margin-xsmall {
    text-align: center;
    justify-content: center;
  }

  .margin-bottom.margin-medium {
    text-align: center;
  }

  .margin-bottom.margin-xsmall.align-right {
    justify-content: center;
  }

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

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

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

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

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

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

  .padding-global {
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

  .padding-section-large {
    flex-flow: row-reverse;
    place-content: space-around flex-start;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    display: inline-block;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xlarge {
    padding-top: 3.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 7.5rem;
  }

  .menu-icon1_line-middle {
    background-color: var(--black);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar1_dropdown-link {
    width: auto;
    padding: .75rem 0 .75rem 5%;
  }

  .navbarmenu {
    background-color: var(--white);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbarmenu.is-page-height-tablet {
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .menu-icon1_line-bottom {
    background-color: var(--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_menu-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .navbarmenubtn.w--open {
    background-color: #0000;
  }

  .menu-icon1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar1_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar1_dropdown-list.w--open {
    border-style: none;
    padding: 0;
  }

  .navbar1_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .navbar_dropdown {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    display: flex;
  }

  .menu-icon1_line-top {
    background-color: var(--black);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .dropdown-icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .navbar_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .header_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

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

  .header1_image {
    width: 80%;
    display: inline-block;
  }

  .clientes_logo {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    align-content: stretch;
  }

  .layout201_image {
    width: 70%;
    margin-bottom: 48px;
    display: inline-block;
  }

  .layout201_component {
    grid-column-gap: 3rem;
    text-align: center;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    justify-items: center;
    min-height: auto;
    display: inline-block;
  }

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

  .layout203_image {
    width: 70%;
    display: inline-block;
  }

  .layout203_component {
    grid-column-gap: 3rem;
    flex-direction: column-reverse;
    flex: 0 auto;
    order: 0;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-content: center;
    align-self: auto;
    align-items: center;
    min-height: auto;
    display: flex;
  }

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

  .layout122_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .layout377_card-large-content, .layout377_card-small-content {
    padding: 2rem;
  }

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

  .layout1_image {
    width: 70%;
  }

  .layout1_image-wrapper {
    justify-content: center;
    display: flex;
  }

  .layout1_component {
    grid-column-gap: 3rem;
    flex-direction: column-reverse;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
    display: flex;
  }

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

  .div-block.contact-card-resp {
    background-image: url('../images/bg_long_card.svg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .layout41_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .footer8_top-wrapper {
    grid-row-gap: 3.5rem;
    grid-template-columns: minmax(200px, 4.75fr) 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
  }

  .footer8_form-block {
    min-width: auto;
  }

  .style-guide-wrapper {
    flex-direction: column;
  }

  .heading-extra-bold-h6.subtitle-contact {
    text-align: center;
  }

  .styles-wrapper {
    flex-direction: column;
  }

  .paragraph-left.text-size-medium {
    text-align: center;
  }

  .paragraph-2 {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .heading-4, .heading-4.text-align-right {
    text-align: center;
  }

  .header1_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .header1_image-wrapper {
    justify-content: center;
    display: flex;
  }

  .layout12_item {
    text-align: center;
    padding-left: 64px;
    padding-right: 64px;
  }

  .layout12_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .layout12_item-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .paragraph-right.text-size-medium {
    text-align: center;
  }

  .contact5_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    grid-auto-flow: row;
    justify-content: center;
    align-items: center;
    min-height: auto;
    display: flex;
  }

  .contact5_form-block {
    padding: 40px;
  }

  .paragraph-5.footer-text {
    padding-left: 0;
  }

  .grid {
    grid-template-columns: .5fr .5fr;
    justify-content: center;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bold-text-2 {
    text-align: center;
    display: block;
  }

  .layout1_component-2 {
    grid-column-gap: 3rem;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
    display: flex;
  }

  .layout1_image-2 {
    width: 90%;
  }

  .footer6_newsletter-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    display: flex;
  }

  .footer6_newsletter-text-wrapper {
    margin-bottom: 1.5rem;
    padding-right: 0;
  }

  .footer6_form {
    padding-left: 0;
  }

  .footer6_top-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer6_form-block {
    min-width: auto;
    max-width: 100%;
  }

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

  .section_cta5-2.esquema.esqpadd-resp-1 {
    width: 600px;
    height: 600px;
  }

  .cta5_background-video-wrapper-2.esquemaesquema.esq-resp-1 {
    width: 600px;
  }

  .grid-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .services-card {
    padding: 36px 24px;
  }

  .services-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .layout239_list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .card-button {
    justify-content: flex-start;
    width: auto;
  }

  .tab-pane-02 {
    padding-top: 350px;
    padding-right: 64px;
  }

  .tab-pane-02._1 {
    padding-right: 64px;
  }

  .tabs-4 {
    width: 100vw;
    margin-left: -20px;
  }

  .tab-link-3 {
    white-space: nowrap;
  }

  .tab-image-wrapper {
    width: 100%;
    height: 300px;
    inset: 0% 0% auto auto;
  }

  .tabs-menu-4 {
    flex-wrap: nowrap;
    align-items: center;
    display: flex;
    overflow: scroll;
  }

  .tab-link-5._4.w--current {
    background-color: #88d8a7;
  }

  .tabs-content-3 {
    width: auto;
  }

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

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

  .blog3-articles-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .btn.btn-white.blog2-card-cta {
    text-align: center;
    display: block;
    bottom: 20px;
    left: 30px;
  }

  .card-headline {
    width: 60%;
    max-width: 100%;
    display: block;
  }

  .card-headline._6col-card {
    width: 60%;
    display: block;
  }

  .wrap {
    width: 645px;
  }

  .headline-6-col {
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .blog3-card {
    text-align: left;
  }

  .blog3-card.blog3-card1-content {
    width: auto;
  }

  ._6-col {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  ._6-col._6-col-last {
    width: 100%;
  }

  ._3-col {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .f-testimonial-background {
    height: 20%;
  }

  .f-testimonial-slider-grid-large, .b-integration-grid-large {
    grid-template-columns: 1fr;
  }

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

  .f-grid-three-column {
    grid-template-columns: 1fr 1fr;
  }

  .f-testimonial-slider-grid-large-2 {
    grid-template-columns: 1fr;
  }

  .navigation-wrapper {
    align-items: center;
    width: auto;
    display: flex;
  }

  .navigation {
    position: relative;
  }

  .navigation-avatar-wrapper {
    margin-right: 14px;
  }

  .logo-link-large {
    margin-right: 0;
  }

  .menu-button {
    color: #393b6a;
    border: 1px solid #f3f5fb;
    border-radius: 8px;
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: #160042;
    border-color: #fff;
  }

  .navigation-menu {
    color: #393b6a;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
  }

  .navigation-menu.w--open {
    background-color: #282556;
    border-color: #fff;
  }

  .navigation-link {
    width: 100%;
  }

  .logo-link {
    margin-right: 0;
  }

  .tab-pane-7 {
    padding-left: 0;
  }

  .div-block-17 {
    display: none;
  }

  .f-grid-two-column {
    grid-template-columns: 1fr;
  }

  .f-grid-two-column-2 {
    grid-template-columns: 1fr;
    padding-left: 60px;
    padding-right: 60px;
  }

  .desktop-image-1, .desktop-image-2, .desktop-image-3, .desktop-image-4, .desktop-image-5 {
    display: none;
  }

  .div-block-20 {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
  }

  .tablet-image-1, .tablet-image-2, .tablet-image-3, .image-48, .image-49 {
    display: block;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

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

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

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

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

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

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

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

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

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

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

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

  .spacer-xsmall {
    padding-top: .75rem;
  }

  .spacer-small {
    padding-top: 1.25rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-large {
    padding-top: 2rem;
  }

  .spacer-xlarge {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 5rem;
  }

  .navbarmenu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

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

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

  .header_component {
    grid-row-gap: 3rem;
  }

  .logo1_logo {
    max-height: 3rem;
  }

  .clientes_logo {
    padding-top: 1rem;
  }

  .layout201_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout203_component {
    grid-row-gap: 3rem;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .layout203_image-wrapper {
    flex-flow: row;
    align-items: center;
    display: flex;
  }

  .layout122_component {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .layout377_card-large-content {
    padding: 1.5rem;
  }

  .layout377_card-small-content {
    padding: 1.5rem 1.5rem 2rem;
  }

  .layout377_card-small {
    grid-template-columns: 1fr;
  }

  .layout377_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .layout377_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .layout1_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout401_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .layout401_card-content {
    padding: 1.5rem;
  }

  .layout401_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

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

  .div-block.contact-card-resp {
    padding-bottom: 60px;
  }

  .div-block.contact2-text-resp {
    font-size: 1px;
  }

  .layout41_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .footer8_credit-text {
    margin-top: 2rem;
  }

  .footer8_credit-text.footer-text.madein-resp {
    margin-top: .125rem;
  }

  .footer8_top-wrapper {
    grid-row-gap: 2.5rem;
  }

  .footer8_link-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-items: start;
    width: 100%;
  }

  .footer8_bottom-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer8_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    justify-items: start;
  }

  .heading-light-h3.contact-title-resp, .heading-light-h3.contact2-text-resp {
    font-size: 32px;
  }

  .heading-light-h5.supertext-p {
    font-size: 20px;
  }

  .heading-light-h6.contact-p-resp {
    font-size: 16px;
  }

  .heading-extra-bold-h5.contact-subtitle-resp {
    font-size: 20px;
  }

  .color-styles-wrapper {
    grid-template-columns: 1fr;
  }

  .heading-2.hero-titulo-respon {
    font-size: 32px;
  }

  .heading-3.supertext-title {
    font-size: 40px;
  }

  .heading-4.text-align-right {
    line-height: 1.2px;
  }

  .heading-4.section-title-resp {
    font-size: 32px;
    line-height: 1.2;
  }

  .header1_component {
    grid-row-gap: 3rem;
  }

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

  .layout12_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .h6-section-title.section-name-resp, .card-title.title-card-resp {
    font-size: 16px;
  }

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

  .contact5_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .contact5_form-block {
    padding: 40px;
  }

  .paragraph-5.footer-text {
    padding-left: 40px;
  }

  .form-field-2col.is-mobile-1col {
    grid-template-columns: 1fr;
  }

  .paragraph-7.text-card-use.content-card-resp {
    font-size: 12px;
  }

  .layout1_component-2 {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .footer6_bottom-wrapper.footer-finaltext-resp {
    flex-direction: column;
  }

  .footer6_newsletter-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer6_top-wrapper {
    grid-row-gap: 2.5rem;
  }

  .footer6_form-block {
    max-width: 100%;
  }

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

  .section_cta5-2.esquema.esqpadd-resp-1.esqpadd-resp-2, .section_cta5-2.ilus2padd-resp {
    width: 500px;
    height: 500px;
  }

  .cta5_background-video-wrapper-2.esquemaesquema.esq-resp-1.esq-resp-2, .cta5_background-video-wrapper-2.ilus2-resp {
    width: 500px;
  }

  .prueba-de-vida {
    left: 86px;
  }

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

  .layout239_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .box_group-corner {
    width: 1.5rem;
    height: 1.5rem;
  }

  .tab-pane-02 {
    padding: 255px 16px 32px;
  }

  .tab-pane-02._1 {
    padding-top: 255px;
    padding-bottom: 32px;
    padding-left: 16px;
  }

  .heading-h3 {
    font-size: 36px;
  }

  .tabs-4 {
    width: 100vw;
    margin-top: 32px;
    margin-left: -16px;
    margin-right: 0;
    display: block;
    position: relative;
  }

  .tab-image-wrapper {
    width: 100%;
    height: 230px;
    inset: 0% 0% auto auto;
  }

  .tabs-menu-4 {
    overflow: scroll;
  }

  .tabs-content-3 {
    width: auto;
  }

  .slider-arrow {
    font-size: 28px;
  }

  .slide-nav {
    font-size: 10px;
  }

  .btn.btn-white.blog2-card-cta {
    bottom: 20px;
    left: 30px;
    right: auto;
  }

  .card-headline {
    width: 60%;
    display: block;
  }

  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  ._6-col {
    margin-right: 0;
  }

  .tabs-vertical {
    flex-direction: column;
  }

  .tabs-menu-toggle-vertical {
    margin-bottom: 32px;
    margin-right: 0;
  }

  .tab-button-vertical-toggle {
    width: 100%;
  }

  .tabs-vertical-2 {
    flex-direction: column;
  }

  .tabs-menu-toggle-vertical-2 {
    margin-bottom: 32px;
    margin-right: 0;
  }

  .tab-button-vertical-toggle-2 {
    width: 100%;
  }

  .f-h3-heading {
    font-size: 40px;
  }

  .f-section-regular {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .f-testimonial-l-arrow {
    display: none;
  }

  .f-testimonial-slider-regular {
    padding-left: 0;
    padding-right: 0;
  }

  .f-testimonial-r-arrow {
    display: none;
  }

  .f-section-regular-2 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .b-h3-heading {
    font-size: 40px;
  }

  .b-badge-caption {
    margin-right: 8px;
    display: inline;
  }

  .f-section-large {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .f-grid-three-column {
    grid-template-columns: 1fr;
  }

  .f-testimonial-r-arrow-2 {
    display: none;
  }

  .tabs-menu-toggle-vertical-3 {
    margin-bottom: 32px;
    margin-right: 0;
  }

  .tab-button-vertical-toggle-3 {
    width: 100%;
  }

  .banner-regular {
    text-align: left;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .tabs-vertical-3 {
    flex-direction: column;
  }

  .tabs-menu-vertical-menu {
    margin-bottom: 32px;
    margin-right: 0;
  }

  .tab-pane-7 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-30.mobile, .text-block-31.mobile, .text-block-32.mobile, .text-block-33.mobile, .text-block-34 {
    text-align: center;
  }

  .div-block-17 {
    display: none;
  }

  .f-h4-heading {
    font-size: 36px;
  }

  .f-section-regular-3 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .div-block-18.mobile {
    text-align: center;
  }

  .div-block-20 {
    flex-flow: column;
  }

  .container-3 {
    padding-left: 24px;
    padding-right: 24px;
  }
}

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

  .hide-mobile-portrait {
    display: none;
  }

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

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

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

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

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

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

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .button.is-small.is-outline {
    flex: 1;
  }

  .button.is-small.is-outline.cta {
    border-color: var(--outline-hover);
    background-color: var(--outline-hover);
  }

  .button.is-icon.is-small {
    flex: 1;
  }

  .padding-global {
    overflow: hidden;
  }

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

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

  .clientes_logo {
    justify-content: center;
  }

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

  .layout201_content {
    margin-top: 32px;
  }

  .layout201_item-list, .layout203_component, .layout203_item-list {
    grid-template-columns: 1fr;
  }

  .layout122_component {
    grid-column-gap: .6rem;
    grid-row-gap: .6rem;
    grid-template-columns: 1fr;
  }

  .layout377_card-large-content {
    display: block;
  }

  .layout377_card-large {
    flex-direction: column;
    display: flex;
  }

  .layout377_row, .layout1_component, .layout401_row {
    grid-template-columns: 1fr;
  }

  .div-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-content: center;
    align-items: center;
    padding: 24px;
    display: flex;
  }

  .div-block.contact-card-resp {
    padding: 32px 24px;
  }

  .div-block.contact2-card-resp {
    padding: 24px;
  }

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

  .footer8_form {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer8_top-wrapper {
    grid-row-gap: 48px;
  }

  .heading-light-h5.supertext-p {
    font-size: 16px;
  }

  .heading-light-h6.section-minitext-resp {
    font-size: 14px;
  }

  .paragraph-left.text-size-medium.mobile {
    font-size: 16px;
  }

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

  .layout12_item {
    padding-left: 0;
    padding-right: 0;
  }

  .layout12_component, .layout12_item-list {
    grid-template-columns: 1fr;
  }

  .layout12_item-list.section-elements-resp {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .container.usecase-p-resp {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-text.mobile, .footer-text-2.mobile {
    text-align: center;
  }

  .div-block-3 {
    justify-content: center;
    align-items: center;
  }

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

  .contact5_form-block {
    padding: 20px;
  }

  .form-field-2col {
    flex-flow: column;
    display: flex;
  }

  .grid {
    flex-direction: column;
    display: none;
  }

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

  .footer6_bottom-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer6_bottom-wrapper.footer-finaltext-resp.mobile {
    justify-content: space-between;
    align-items: center;
  }

  .footer6_logo-link {
    margin-bottom: 1.5px;
  }

  .footer6_form {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer6_top-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .footer6_form-block {
    align-self: stretch;
    max-width: 100%;
  }

  .section_cta5-2.esquema.esqpadd-resp-1.esqpadd-resp-2.esqpadd-resp-3, .section_cta5-2.ilus2padd-resp.ilus2padd-resp-2 {
    width: 250px;
    height: 250px;
  }

  .cta5_background-video-wrapper-2.esquemaesquema.esq-resp-1.esq-resp-2.esq-resp-3 {
    width: 250px;
  }

  .cta5_background-video-wrapper-2.ilus2-resp.ilus2-resp-2 {
    width: 250px;
    padding-bottom: 0;
  }

  .prueba-de-vida {
    display: none;
    top: 80px;
    left: -41px;
  }

  .id-dispositivos, .whatsapp-2fa {
    display: none;
  }

  .verificaci-n-id {
    z-index: 1;
    display: none;
    top: 128px;
    left: 173px;
  }

  .firma-olografa {
    z-index: 1;
    display: none;
    top: 370px;
    left: 200px;
  }

  .bio-dactilar {
    z-index: -1;
    display: none;
    top: 200px;
    left: -80px;
  }

  .firma-digital {
    z-index: 1;
    display: none;
    top: 330px;
    left: -92px;
  }

  .image-7 {
    position: static;
  }

  .ver-transacciones {
    display: none;
  }

  .id-digital {
    z-index: 2;
    display: none;
    top: 500px;
    left: -53px;
  }

  .geolocalizacion, .federacion-idps, .se-ales-de-dispositivos {
    display: none;
  }

  .recoleccion-de-evidencia {
    display: none;
    left: -122px;
  }

  .bio-facial {
    display: none;
  }

  .monitoreo {
    z-index: 1;
    display: none;
    top: -17px;
    left: 143px;
  }

  .geo-cercanas, .custodia-objetos, .preguntas-y-respuestas, .formularios-dinamicos, .cambio-de-sim, .single-sign-on, .verificacion-de-documentos, .integracion-con-reguladores, .sms, .image-17, .verificacion-passwordless, .image-19, .sms-2, .integracion-reguladores-2 {
    display: none;
  }

  .grid-block {
    flex-wrap: wrap;
  }

  .grid-icon {
    margin-bottom: 15px;
  }

  .verificacion-correo-elec, .firma-olografa-2 {
    display: none;
  }

  .services-card {
    padding: 36px 18px;
  }

  .icon-2 {
    margin-bottom: 36px;
  }

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

  .text-block-5.mobile {
    font-size: 16px;
  }

  .card-button {
    width: 280px;
  }

  .tabs-menu, .tabs, .grid-2 {
    flex-flow: column;
  }

  .grid-3 {
    margin-bottom: 40px;
  }

  .grid-4 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .div-block-15 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .tab-pane-02 {
    padding-right: 16px;
  }

  .tabs-4 {
    display: none;
  }

  .image-31 {
    height: 300px;
  }

  .left-arrow-2 {
    width: 60px;
  }

  .slider-arrow {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 22px;
  }

  .right-arrow-2 {
    width: 60px;
  }

  .slide-nav {
    height: 32px;
    font-size: 8px;
  }

  .btn {
    text-align: center;
    display: block;
  }

  .btn.btn-white {
    display: block;
  }

  .f-testimonial-author {
    flex-flow: column wrap;
    align-items: flex-start;
  }

  .f-testimonial-avatar-small {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .f-testimonial-author-2 {
    flex-flow: column wrap;
    align-items: flex-start;
  }

  .f-testimonial-avatar-small-2 {
    margin-bottom: 16px;
    margin-right: 0;
  }

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

  .tabs-menu-button {
    width: 100%;
  }

  .f-testimonial-author-3 {
    flex-flow: column wrap;
    align-items: flex-start;
  }

  .f-testimonial-avatar-small-3 {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .navigation-avatar-wrapper, .navigation-button {
    display: none;
  }

  .tabs-menu-vertical-menu {
    flex-flow: column;
  }

  .tab-button-vertical-menu {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tab-pane-7 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-30.mobile, .text-block-31.mobile, .text-block-32.mobile, .text-block-33.mobile, .text-block-34 {
    text-align: center;
    font-size: 15px;
  }

  .div-block-17 {
    display: none;
  }

  .f-container-regular-2 {
    flex-flow: column;
    display: flex;
  }

  .f-logo-block {
    padding-left: 0;
  }

  .div-block-18.mobile {
    text-align: center;
  }

  .f-logo-grid-primary {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .f-logo-grid-middle {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .f-grid-two-column-2 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    justify-items: center;
    padding-left: 24px;
  }

  .desktop-image-1 {
    display: none;
  }

  .mobile-image-1 {
    display: block;
  }

  .desktop-image-2, .desktop-image-3, .desktop-image-4, .desktop-image-5 {
    display: none;
  }

  .mobile-image-2, .mobile-image-3, .mobile-image-4, .mobile-image-5 {
    display: block;
  }

  .mobile-prueba-de-vida {
    z-index: 1;
    display: block;
    position: absolute;
    top: 0;
    left: -20px;
  }

  .mobile-ver-de-id {
    z-index: 1;
    display: block;
    position: absolute;
    top: 161px;
    left: -50px;
  }

  .mobile-firma-olografa {
    z-index: -1;
    display: block;
    position: absolute;
    top: 460px;
    left: 200px;
    overflow: clip;
  }

  .image-42 {
    z-index: -1;
    display: block;
    position: absolute;
    top: 300px;
    left: -45px;
  }

  .image-43 {
    z-index: 1;
    display: block;
    position: absolute;
    top: 240px;
    left: 200px;
    overflow: visible;
  }

  .image-44 {
    z-index: 1;
    display: block;
    position: absolute;
    top: -44px;
    left: 180px;
  }

  .image-45 {
    z-index: 1;
    display: block;
    position: absolute;
    top: 510px;
    left: -43px;
  }

  .image-46 {
    z-index: 1;
    display: block;
    position: absolute;
    top: 360px;
    left: 134px;
  }

  .image-47 {
    z-index: -1;
    display: block;
    position: absolute;
    top: 113px;
    left: 197px;
  }

  .tablet-image-1, .tablet-image-2, .tablet-image-3, .image-48, .image-49 {
    display: none;
  }

  .container-3 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

#w-node-ec97ab13-3548-c09a-bc4e-88fa173780e6-69ebbbe6 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_25bf2e9b-f917-0e78-87f9-b206d30c972a-69ebbbe6 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-b02f600d-f525-882e-afd7-854f91daf66e-69ebbbe6, #w-node-b02f600d-f525-882e-afd7-854f91daf67d-69ebbbe6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_480305e9-e824-0b1b-a76e-f9584d2e10a0-69ebbbe6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_480305e9-e824-0b1b-a76e-f9584d2e10a3-69ebbbe6 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c341185-69ebbc00 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c341186-69ebbc00, #w-node-_24c408da-e88a-8293-aea5-3fc03c341187-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c341188-69ebbc00 {
  justify-self: start;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c34118a-69ebbc00, #w-node-_24c408da-e88a-8293-aea5-3fc03c34118d-69ebbc00, #w-node-_24c408da-e88a-8293-aea5-3fc03c34118e-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c34118f-69ebbc00 {
  justify-self: start;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c341193-69ebbc00, #w-node-_24c408da-e88a-8293-aea5-3fc03c341196-69ebbc00, #w-node-_24c408da-e88a-8293-aea5-3fc03c341197-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c341198-69ebbc00 {
  justify-self: start;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c34119c-69ebbc00, #w-node-_24c408da-e88a-8293-aea5-3fc03c3411a0-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c3411a1-69ebbc00 {
  justify-self: start;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c3411a7-69ebbc00, #w-node-_24c408da-e88a-8293-aea5-3fc03c3411ab-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c3411ac-69ebbc00 {
  justify-self: start;
}

#w-node-_24c408da-e88a-8293-aea5-3fc03c3411b0-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652c95-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652c96-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e21ab684-b0a4-2dfd-c92b-b757aa652c97-69ebbc00 {
  justify-self: start;
}

#w-node-e21ab684-b0a4-2dfd-c92b-b757aa652c9b-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652c9e-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652c9f-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e21ab684-b0a4-2dfd-c92b-b757aa652ca0-69ebbc00 {
  justify-self: start;
}

#w-node-e21ab684-b0a4-2dfd-c92b-b757aa652ca6-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652ca9-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652caa-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e21ab684-b0a4-2dfd-c92b-b757aa652cab-69ebbc00 {
  justify-self: start;
}

#w-node-e21ab684-b0a4-2dfd-c92b-b757aa652cb1-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652cb4-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652cb5-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e21ab684-b0a4-2dfd-c92b-b757aa652cb6-69ebbc00 {
  justify-self: start;
}

#w-node-e21ab684-b0a4-2dfd-c92b-b757aa652cbe-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652cc1-69ebbc00, #w-node-e21ab684-b0a4-2dfd-c92b-b757aa652cc2-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e21ab684-b0a4-2dfd-c92b-b757aa652cc3-69ebbc00 {
  justify-self: start;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3df90-69ebbc00, #w-node-_3374ab14-eacf-2656-d009-fbb0dcf3df91-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3df92-69ebbc00 {
  justify-self: start;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3df96-69ebbc00, #w-node-_3374ab14-eacf-2656-d009-fbb0dcf3df9b-69ebbc00, #w-node-_3374ab14-eacf-2656-d009-fbb0dcf3df9c-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3df9d-69ebbc00 {
  justify-self: start;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfa3-69ebbc00, #w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfa8-69ebbc00, #w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfa9-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfaa-69ebbc00 {
  justify-self: start;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfb0-69ebbc00, #w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfb5-69ebbc00, #w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfb6-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfb7-69ebbc00 {
  justify-self: start;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfbf-69ebbc00, #w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfc5-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfc6-69ebbc00 {
  justify-self: start;
}

#w-node-_3374ab14-eacf-2656-d009-fbb0dcf3dfcc-69ebbc00, #w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbba8-69ebbc00, #w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbba9-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbaa-69ebbc00 {
  justify-self: start;
}

#w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbac-69ebbc00, #w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbaf-69ebbc00, #w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbb0-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbb1-69ebbc00 {
  justify-self: start;
}

#w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbb5-69ebbc00, #w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbb8-69ebbc00, #w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbb9-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbba-69ebbc00 {
  justify-self: start;
}

#w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbbe-69ebbc00, #w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbc2-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbc3-69ebbc00 {
  justify-self: start;
}

#w-node-_6d6fad6f-60c7-d16e-205f-cb81b76fbbc9-69ebbc00, #w-node-_3e54401b-3083-2671-0075-632adc9a3145-69ebbc00, #w-node-_3e54401b-3083-2671-0075-632adc9a3146-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e54401b-3083-2671-0075-632adc9a3147-69ebbc00 {
  justify-self: start;
}

#w-node-_3e54401b-3083-2671-0075-632adc9a314b-69ebbc00, #w-node-_3e54401b-3083-2671-0075-632adc9a314e-69ebbc00, #w-node-_3e54401b-3083-2671-0075-632adc9a314f-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e54401b-3083-2671-0075-632adc9a3150-69ebbc00 {
  justify-self: start;
}

#w-node-_3e54401b-3083-2671-0075-632adc9a3156-69ebbc00, #w-node-_3e54401b-3083-2671-0075-632adc9a3159-69ebbc00, #w-node-_3e54401b-3083-2671-0075-632adc9a315a-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e54401b-3083-2671-0075-632adc9a315b-69ebbc00 {
  justify-self: start;
}

#w-node-_3e54401b-3083-2671-0075-632adc9a3161-69ebbc00, #w-node-_3e54401b-3083-2671-0075-632adc9a3164-69ebbc00, #w-node-_3e54401b-3083-2671-0075-632adc9a3165-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e54401b-3083-2671-0075-632adc9a3166-69ebbc00 {
  justify-self: start;
}

#w-node-_3e54401b-3083-2671-0075-632adc9a316e-69ebbc00, #w-node-_62277fdb-b940-fd0e-119c-7b54e3806b53-69ebbc00, #w-node-_62277fdb-b940-fd0e-119c-7b54e3806b54-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62277fdb-b940-fd0e-119c-7b54e3806b55-69ebbc00 {
  justify-self: start;
}

#w-node-_62277fdb-b940-fd0e-119c-7b54e3806b59-69ebbc00, #w-node-_62277fdb-b940-fd0e-119c-7b54e3806b5e-69ebbc00, #w-node-_62277fdb-b940-fd0e-119c-7b54e3806b5f-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62277fdb-b940-fd0e-119c-7b54e3806b60-69ebbc00 {
  justify-self: start;
}

#w-node-_62277fdb-b940-fd0e-119c-7b54e3806b66-69ebbc00, #w-node-_62277fdb-b940-fd0e-119c-7b54e3806b6b-69ebbc00, #w-node-_62277fdb-b940-fd0e-119c-7b54e3806b6c-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62277fdb-b940-fd0e-119c-7b54e3806b6d-69ebbc00 {
  justify-self: start;
}

#w-node-_62277fdb-b940-fd0e-119c-7b54e3806b73-69ebbc00, #w-node-_62277fdb-b940-fd0e-119c-7b54e3806b78-69ebbc00, #w-node-_62277fdb-b940-fd0e-119c-7b54e3806b79-69ebbc00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62277fdb-b940-fd0e-119c-7b54e3806b7a-69ebbc00 {
  justify-self: start;
}

#w-node-_62277fdb-b940-fd0e-119c-7b54e3806b82-69ebbc00, #w-node-_2cbf63f6-7610-cc56-c474-69cab57c80d5-81aee518 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_56f97d48-5e22-dcfc-f0f0-c22cad625050-81aee518 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-fe6acfb8-a9fa-c2fe-5129-d8e2104b82ba-69ebbbe6 {
    place-self: start center;
  }

  #w-node-b02f600d-f525-882e-afd7-854f91daf67d-69ebbbe6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_96891672-0ffd-7213-2da6-3a17a3552b1f-69ebbbe6 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b02f600d-f525-882e-afd7-854f91daf67d-69ebbbe6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


