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

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

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

:root {
  /* Brand palette - purples (primary) */
  --ds-violet-pop: #5C4FD6;
  --ds-purple: #6B5B95;
  --ds-lavender: #9B8BC4;
  --ds-lilac: #C7BFDF;
  --ds-mist: #E8E3EF;
  --lavender-bg-2: #DCD4F0;
  /* Ink (text / authority) */
  --ds-ink: #1F1D2B;
  --ds-ink-2: #2E2540;
  --ds-ink-3: #3A2F55;
  --ds-warm-gray: #8A8377;
  /* Cream / warm surfaces */
  --ds-surf: #FFFFFF;
  --ds-surf-alt: #FDFBF6;
  --ds-cream: #F9F5EC;
  --ds-cream-2: #F4EEE3;
  --ds-sand: #DDD4C0;
  --ds-sand-2: #C6BDA8;
  /* Accents / semantic */
  --ds-success: #3E9B6F;
  --ds-success-soft: #D4EBDD;
  --ds-blush: #D9B8B0;
  --ds-amber-soft: #C69C8A;
  --ds-terracotta: #9F6055;
  /* Legacy tokens remapped to the new palette */
  --silver: #FFFFFF;
  --gainsboro: #C7BFDF;
  --black-2: #1F1D2B;
  --white: #FFFFFF;
  --black: #1F1D2B;
  --dim-grey: #8A8377;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--silver);
  color: #1f1d2b;
  font-family: Matter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  letter-spacing: -3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

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

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

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

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

.utility-page_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-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.overflow-hidden {
  overflow: hidden;
}

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

.form_input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.text-style-link {
  color: #1f1d2b;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: inline-block;
}

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

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

.heading-style-h2 {
  text-transform: none;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

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

.button {
  color: #fff;
  text-align: center;
  background-color: #1f1d2b;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.section-hero {
  z-index: 100;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding-top: 12rem;
  padding-bottom: 2.5rem;
  display: flex;
  position: relative;
}

.navbar {
  background-color: #0000;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
}

.nav-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5rem;
  display: grid;
}

.nav-logo {
  background-color: var(--black-2);
  width: 6.5rem;
  height: 100%;
  color: var(--silver);
  justify-content: center;
  align-items: center;
  padding-left: 0;
  transition: color .3s;
  display: flex;
}

.nav-logo:hover {
  color: var(--white);
}

.nav-link {
  background-color: var(--black-2);
  height: 100%;
  color: var(--silver);
  text-transform: uppercase;
  align-items: center;
  padding: 0 2rem;
  font-size: .8rem;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

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

.nav-link.first {
  padding-left: 4rem;
}

.nav-menu {
  background-color: var(--black-2);
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.image-wrapper.hero {
  z-index: -1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-wrapper.tab {
  z-index: 5;
  width: 18rem;
  max-width: none;
  max-height: none;
  position: relative;
}

.image-container.hero {
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 30rem;
  display: flex;
  position: relative;
}

.image-cover {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image {
  z-index: 1;
  width: 20rem;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.spacer {
  padding-top: 10rem;
  padding-bottom: 2rem;
}

.spacer.last {
  background-color: var(--black-2);
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.link {
  opacity: .8;
  color: #fff;
  border: 1px #fff;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0;
  font-size: .875rem;
  text-decoration: none;
  transition: opacity .25s;
  display: block;
}

.link:hover {
  opacity: 1;
}

.wrapper-info {
  justify-content: space-between;
  margin-top: 2rem;
  display: flex;
}

.wrapper-info.bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.line {
  background-color: #ffffff40;
  flex: none;
  width: 100%;
  height: 1px;
}

.line.text-link {
  background-color: var(--black-2);
}

.line.text-link.white {
  background-color: var(--gainsboro);
  height: 4px;
}

.social-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  font-size: .875rem;
  display: flex;
}

.social-wrapper.left-aligned {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  align-items: flex-start;
}

.social-wrapper.right-aligned {
  align-items: flex-end;
}

.social-icons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.social-link {
  opacity: .8;
  width: 2rem;
  height: 2rem;
  transition: opacity .25s;
}

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

.title-wrapper.hero {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 35rem;
  height: auto;
  display: block;
}

.title-wrapper.subhero {
  max-width: 26rem;
}

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

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

.grid.subhero {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: end;
}

.grid.about {
  grid-column-gap: 1.25rem;
  grid-row-gap: 5rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: center start;
  margin-bottom: 6rem;
}

.grid.footer {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-right: 1.25rem;
}

.nav-menu-wrapper {
  background-color: var(--black-2);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.heading-hero {
  text-transform: uppercase;
  font-size: 3.5rem;
}

.crystal-shadow {
  z-index: 0;
  border-radius: 100%;
  width: 90%;
  height: 20rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 1rem;
  box-shadow: 0 40px 60px 40px #0003;
}

.crystal-shadow.contact {
  width: 70%;
  bottom: auto;
  box-shadow: 0 40px 100px 150px #0003;
}

.hero-crystal {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.social-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.section {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: block;
  position: relative;
}

.section.about {
  align-items: flex-end;
  padding-top: 12.5rem;
  padding-bottom: 10rem;
}

.section.tab {
  display: flex;
}

.section.contact {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 100vh;
  padding-top: 11.25rem;
  display: flex;
}

.section.footer {
  z-index: 30;
  background-color: var(--silver);
  padding-top: 15rem;
}

.image-author {
  border-radius: 50%;
  width: 3rem;
}

.container.numbers {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  display: flex;
}

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

.line-horizontal.light {
  background-color: var(--dim-grey);
}

.numbers-section {
  flex-direction: row;
  flex: 0 auto;
  height: auto;
  display: flex;
}

.numbers-column {
  border-left: 1px #1f1d2b;
  width: 25%;
  padding-left: 1.5rem;
}

.numbers-wrapper {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  display: flex;
  overflow: visible;
}

.video-teaser-wrapper {
  align-items: center;
  display: flex;
  overflow: hidden;
}

.video-teaser-left {
  background-color: var(--black-2);
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6.625rem;
  display: flex;
}

.video-teaser-right {
  background-color: var(--gainsboro);
  justify-content: flex-end;
  align-items: center;
  min-width: 10rem;
  height: 6.625rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-teaser-image {
  width: auto;
  height: 8rem;
  position: relative;
  inset: auto -4px auto auto;
  transform: rotate(-90deg);
}

.text-number {
  font-size: 5rem;
  line-height: 1;
}

.dark-bg {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.tab-holder {
  z-index: 5;
  position: absolute;
  inset: 0%;
}

.tab-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.tab-cta-holder {
  position: relative;
}

.tab-cta-holder.first {
  object-position: 100% 50%;
  position: absolute;
  inset: 5% auto auto 7%;
}

.tab-cta-holder.second {
  object-position: 100% 50%;
  position: absolute;
  inset: 44% 0% auto auto;
}

.tab-cta-holder.third {
  object-position: 50% 0%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto auto 23% 25%;
}

.tab-cta {
  border: 1px solid var(--white);
  background-color: #ffffff4d;
  border-radius: 50px;
  width: 1.5rem;
  height: 1.5rem;
  transition: background-color .3s;
  position: relative;
}

.tab-cta:hover {
  background-color: #fff9;
}

.answer-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--gainsboro);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 14.2rem;
  padding: 1.5rem;
  line-height: 1.35;
  display: flex;
  position: absolute;
}

.answer-container.first {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  height: auto;
  inset: 4px 34px auto auto;
}

.answer-container.second {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  width: 14rem;
  height: auto;
  inset: 4px auto auto 34px;
}

.answer-container.third {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  height: auto;
  inset: 34px 0 auto auto;
}

.answer-heading {
  text-transform: none;
}

.plus-icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 4px;
  display: flex;
  position: relative;
}

.plus-icon-line {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  position: static;
}

.plus-icon-line.second {
  width: 1px;
  height: auto;
  position: absolute;
  top: 4px;
  bottom: 4px;
}

.tab-content-wrapper {
  z-index: 5;
  position: absolute;
  inset: auto 0% 2.5rem;
}

.tab-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--silver);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container-horizontal {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.line-vertical {
  background-color: var(--black);
  flex: 0 auto;
  width: 1px;
  height: auto;
}

.tab-intro-wrapper {
  z-index: 5;
  align-items: center;
  max-width: 20rem;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 2.5rem;
}

.contact-wrapper {
  z-index: auto;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.contact-image-container {
  z-index: 10;
  justify-content: center;
  align-items: center;
  max-width: 26.875rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  top: auto;
  bottom: -8.5rem;
}

.contact-crystal {
  z-index: 5;
  height: 100%;
  position: relative;
}

.contact-text-container {
  z-index: 5;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  color: var(--gainsboro);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  bottom: -8.5rem;
}

.contact-heading {
  font-size: 8rem;
  line-height: .9;
}

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

.contact-link:hover {
  color: var(--gainsboro);
}

.newsletter-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 34rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.newsletter-container {
  z-index: 5;
  width: 100%;
  max-width: 32rem;
  color: var(--gainsboro);
  text-align: center;
  position: relative;
}

.newsletter-image {
  background-image: url('../images/adrien-olichon-R2OM3BvN-Uo-unsplash_1adrien-olichon-R2OM3BvN-Uo-unsplash.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  position: absolute;
  inset: auto 0%;
}

.newsletter-form {
  align-items: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 0;
  display: flex;
}

.form {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.newsletter-text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--gainsboro);
  background-color: #0000;
  height: 100%;
  margin-bottom: 0;
  padding: .75rem .75rem .75rem 0;
  font-size: 2.25rem;
}

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

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

.newsletter-text-field:focus-visible, .newsletter-text-field[data-wf-focus-visible] {
  color: var(--white);
}

.newsletter-submit-button {
  border-top: 1px none var(--gainsboro);
  border-bottom: 1px solid var(--gainsboro);
  text-transform: uppercase;
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.5rem;
  transition: background-color .3s;
}

.newsletter-submit-button:hover {
  background-color: #e2e2e266;
  border-top-style: none;
}

.footer-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 15rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.footer-wrapper.bottom {
  align-items: center;
  margin-top: 1.25rem;
}

.footer-logo-heading {
  letter-spacing: -4px;
  font-size: 11vw;
  font-weight: 300;
  line-height: .8;
}

.footer-link-wrapper {
  flex-direction: column;
  display: flex;
}

.footer-link-wrapper.bottom {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  align-items: center;
}

.footer-link {
  color: var(--black-2);
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: .8rem;
  text-decoration: none;
}

.footer-link.bottom {
  margin-bottom: 0;
}

.footer-link-heading {
  margin-bottom: .5rem;
}

.contact-image-wrapper {
  width: 100%;
  overflow: visible;
}

.carousel-wrapper {
  z-index: -1;
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  overflow: hidden;
}

.carousel-text {
  color: #3330;
  letter-spacing: -.06em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fdfbf6;
  white-space: nowrap;
  flex: none;
  font-size: 26.8225rem;
  line-height: 1;
}

.hero-content {
  -webkit-backdrop-filter: saturate(130%) blur(8px);
  backdrop-filter: saturate(130%) blur(8px);
  background-color: #f4f3f126;
  border-radius: 1rem;
  align-items: center;
  height: 80%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

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

.hero-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "."
                 "."
                 "."
                 "."
                 / 1fr 1fr 1.25fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 85vh;
  display: grid;
}

.header-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-grid-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  display: flex;
}

.link-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
}

.nav-menu-2 {
  justify-content: space-between;
  display: flex;
}

.button-2 {
  color: #2e2540;
  letter-spacing: -.06em;
  border: 1px solid #c7bfdf;
  border-radius: 1rem;
  flex: none;
  padding: 1rem 1.18rem;
  font-size: 1.125rem;
  line-height: 1;
  text-decoration: none;
  position: relative;
}

.navbar-2 {
  z-index: 9999;
  background-color: #ddd0;
  width: 100%;
  margin-top: 1.125rem;
  padding-left: 5%;
  padding-right: 5%;
  position: fixed;
  inset: 0% 0% auto;
}

.logo-wrapper {
  width: 11rem;
}

.card-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 5rem 10%;
  display: flex;
}

.section-header {
  z-index: 0;
  width: 100%;
  height: 100vh;
  position: relative;
}

.navbar-wrapper {
  background-color: #fdfbf6;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.image-cover-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.heading-hero-2 {
  font-size: 5vw;
}

.nav-link-2 {
  color: #1f1d2b;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 1.15rem;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #1a1b1fbf;
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #5c4fd6;
  border-radius: 4px;
  outline: 2px solid #5c4fd6;
}

.carousel-div {
  flex: none;
  display: flex;
}

.navbar-grid {
  justify-content: space-between;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.button-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 60%;
  display: flex;
}

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

.card-grid {
  -webkit-backdrop-filter: saturate(200%) blur(8px);
  backdrop-filter: saturate(200%) blur(8px);
  background-color: #f4f3f15e;
  border-radius: 1rem;
  height: 80%;
}

.text-wrapper {
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.button-arrow {
  color: #c7bfdf;
  background-color: #2e2540;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: translate(120%);
}

.text-big {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.tools_button-wrapper {
  grid-column-gap: 1rem;
  background-color: #1f1d2b;
  border-radius: 10px;
  justify-content: center;
  display: inline-block;
  position: relative;
}

.feature_icon-wrapper {
  display: none;
}

.feature_text-description {
  max-width: 25rem;
}

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

.margin-bottom.margin-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-capital {
  text-transform: uppercase;
}

.section-02 {
  z-index: 0;
  background-color: #fff;
  border-top: 2px solid #0000001a;
  border-bottom: 2px solid #0000001a;
  position: sticky;
  top: 4rem;
  overflow: auto;
}

.tools_component {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 3rem;
  display: flex;
}

.section-04 {
  z-index: 1000;
  background-color: #fff;
  border-top: 2px solid #0000001a;
  border-bottom: 2px solid #0000001a;
  position: sticky;
  overflow: auto;
}

.feature_button-wrapper {
  grid-column-gap: 1rem;
  background-color: #1f1d2b;
  border-radius: 10px;
  justify-content: center;
  display: inline-block;
  position: relative;
}

.tools_button-bg {
  z-index: 0;
  opacity: .8;
  background-image: radial-gradient(circle closest-corner, #9b8bc4, #fff);
  border: 2px solid #1f1d2b;
  border-radius: 10px;
  position: absolute;
  inset: 0%;
}

.feature_description {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2rem;
  display: grid;
}

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

.container-large.margin-vertical {
  max-width: none;
}

.feature_content-top {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.feature_button-bg {
  z-index: 0;
  opacity: .8;
  background-image: radial-gradient(circle closest-corner, #9b8bc4, #fff);
  border: 2px solid #1f1d2b;
  border-radius: 10px;
  position: absolute;
  inset: 0%;
}

.image {
  width: 100%;
}

.feature_button {
  background-color: #0000;
  border-radius: 10px;
  padding: 1rem 2rem .875rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  position: relative;
}

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

.feature_image-wrapper {
  max-width: 32rem;
  position: relative;
}

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

.section-01 {
  z-index: 0;
  background-color: #fff;
  border-top: 2px solid #0000001a;
  border-bottom: 2px solid #0000001a;
  height: 100vh;
  padding-top: 20%;
  position: sticky;
  top: 4rem;
  overflow: auto;
}

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

.tools_content-left {
  max-width: 22rem;
  padding-top: .5rem;
}

.tools_button {
  background-color: #0000;
  border-radius: 10px;
  padding: 1rem 2rem .875rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  position: relative;
}

.section-03 {
  z-index: 0;
  background-color: #fff;
  border-top: 2px solid #0000001a;
  border-bottom: 2px solid #0000001a;
  position: sticky;
  top: 4rem;
  overflow: auto;
}

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

.project-item {
  border-top: 1px solid #e8e3ef;
}

.project-item:last-child {
  border-bottom: 1px solid #e8e3ef;
}

.tag {
  border: 1px solid #e8e3ef;
  border-radius: 100rem;
  padding: .25rem .8rem;
}

.work-list-image {
  border-radius: .55rem;
  position: relative;
  overflow: hidden;
}

.hover-text {
  justify-content: center;
  align-items: center;
  padding: 1px;
  display: flex;
}

.hover-text.bottom-text {
  position: absolute;
  inset: auto 0% -100%;
}

.home-work-intro {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.text-regular.text-mute {
  color: #000000a6;
}

.clip {
  z-index: 2;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.heading-regular {
  letter-spacing: .1rem;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 400;
  line-height: .8;
}

.text-small {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
}

.text-small.text-mute {
  color: #000000a6;
}

.list-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  /* 3 columnas (antes 4 con el precio): título · categoría · imagen.
     La imagen vuelve a la columna derecha (12.5rem) y se cierra el hueco. */
  grid-template-columns: 2fr 1fr 12.5rem;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.home-work-description {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 20rem;
  display: flex;
}

.home-work-list {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  flex-direction: column;
  padding-top: 6rem;
  padding-bottom: 0;
  display: flex;
}

.home-work-title {
  max-width: 35rem;
}

.text-large {
  font-size: 2.625rem;
  line-height: 1.35;
}

.work-list-height {
  padding-top: 69%;
}

.project-link {
  color: #1f1d2b;
  cursor: pointer;
  justify-content: space-between;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-decoration: none;
  display: flex;
}

.padding-regular {
  padding-bottom: 10em;
  padding-left: 3rem;
  padding-right: 3rem;
}

.project-title {
  padding-bottom: .5rem;
}

.process_overlay-top {
  z-index: 2;
  background-image: linear-gradient(#fff, #0000);
  height: 8rem;
  position: absolute;
  inset: 0% 0% auto;
}

.process_item-image_container {
  grid-row-gap: 0rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.process_item-image_container.step-3 {
  width: 80%;
  height: auto;
}

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

.text-style-callout {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

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

.section-home-process {
  background-color: #fff;
  padding-top: 10em;
  position: relative;
}

.page-padding-2 {
  z-index: 1;
  padding: 2.5rem 2.5rem 2.5em;
}

.process_container {
  position: relative;
}

.process_item-container {
  z-index: 5;
  background-color: #1f1d2b;
  background-image: linear-gradient(#1f1d2b, #1f1d2b);
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.process_step {
  grid-column-gap: 2rem;
  border-radius: 2rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4rem 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
  position: relative;
}

.process_item-description {
  z-index: 3;
  position: relative;
}

.text-color-secondary {
  color: #0b0d01a3;
}

.process_item-indicator {
  z-index: 2;
  background-color: #5c4fd6;
  border-radius: 128rem;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: flex;
  position: relative;
  box-shadow: 0 0 0 1.5rem #fff;
}

.process_timeline-progress {
  z-index: -1;
  background-color: #5c4fd6;
  width: .1875rem;
  height: 0;
}

.process_overlay-bottom {
  z-index: 2;
  background-image: linear-gradient(to top, #fff, #0000);
  height: 8rem;
  position: absolute;
  inset: auto 0% 0%;
}

.process_wrapper {
  z-index: 5;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 40% 10% 40%;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.process_item-image {
  width: 100%;
  height: auto;
}

.process_item-image.step-1 {
  inset: 0%;
  transform: scale(1)translate(0, -3rem)rotate(-15deg);
}

.process_item-image.step-3-1 {
  transform: translate(0, 10%)scale(.8);
}

.process_item-image.step-3-3 {
  top: 10%;
  transform: translate(0, -10%)scale(.8);
}

.process_item-image.step-3-2 {
  top: 5%;
  transform: translate(0)scale(.8);
}

.process_item-image.step-2-arrow {
  max-width: 40%;
}

.process_timeline {
  z-index: 1;
  background-color: #0b0d011f;
  width: .1875rem;
  height: 100%;
  position: absolute;
  box-shadow: inset 0 -3px 3px -8px #fff;
}

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

.home-about {
  z-index: 10;
  background-color: #e8e3ef;
  border-top: 1px solid #e8e3ef;
  padding-top: 9rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}

.text-huge {
  text-transform: none;
  font-size: 3.5rem;
  line-height: 1.3;
}

.button-3 {
  color: #1f1d2b;
  border: 1px solid #e8e3ef;
  border-radius: 100rem;
  padding: .4rem 1rem;
  text-decoration: none;
}

.button-3.large-button {
  padding: .4rem 1.1rem;
}

.about-height {
  padding-top: 80%;
}

.studio-intro {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
  overflow: visible;
}

.studio-intro.large {
  grid-template-columns: 1fr minmax(auto, 3.5fr) 1fr;
}

.about-intro-text {
  max-width: 30rem;
}

.about-image {
  border-radius: .55rem;
  width: 10rem;
  margin-left: -6rem;
  margin-right: -6rem;
  position: relative;
  overflow: hidden;
}

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

.home-about-intro {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 45rem;
  display: flex;
}

.faq_section-title {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 32rem;
  display: flex;
  position: sticky;
  top: 25%;
}

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

.graphic_faq {
  max-width: 53rem;
  position: absolute;
  top: -169%;
  left: -24%;
}

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

.faq_expand-icon {
  background-color: #0b0d011f;
  border-radius: .75rem;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.faq_item {
  border-bottom: .0625rem solid #0b0d011f;
}

.faq_item.last-child {
  border: 1px #1f1d2b;
}

.section-home-faq {
  background-color: #fafafa00;
  position: relative;
}

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

.text-weight-medium.text-size-large {
  flex: 1;
}

.faq_answer-content {
  color: #0b0d01a3;
  padding-bottom: 2rem;
}

.faq_question {
  z-index: 2;
  grid-column-gap: 2rem;
  cursor: pointer;
  justify-content: space-between;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.faq_section-content {
  flex-direction: column;
  flex: 1;
  display: flex;
}

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

.faq_section {
  grid-column-gap: 2rem;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
  position: relative;
}

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

.tab_link {
  background-color: #0000;
  width: 6rem;
  height: 6rem;
  padding: 1rem;
}

.tab_link:hover {
  opacity: 1;
}

.tab_link.w--current {
  opacity: 1;
  background-color: #0000;
}

.tabs_menu {
  justify-content: center;
  display: flex;
}

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

.tabs-profile {
  border-radius: 100rem;
}

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

.heading-large {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading-large.text-align-center {
  text-transform: none;
}

.section-home-testimonial {
  z-index: 0;
  position: relative;
}

.text-size-medium {
  font-size: 1.25rem;
  line-height: 1.3;
}

.slider_content-quote {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.footer-base {
  z-index: 10;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #f0f0f000;
  border: 1px solid #e8e3ef;
  border-radius: .55rem;
  flex-direction: column;
  padding-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  position: relative;
}

.footer {
  z-index: 5;
  background-color: #e8e3ef;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-bottom: 12rem;
  display: grid;
}

.footer-bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid #e8e3ef;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
}

.hyperlink {
  color: #000000a6;
  text-decoration: none;
  transition: color .2s linear;
}

.hyperlink:hover {
  color: #1f1d2b;
}

.credit-link-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

.footer-link-2 {
  color: #1f1d2b;
  text-decoration: none;
}

.footer-logo {
  width: 9rem;
}

.footer-list {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-direction: column;
  display: flex;
}

.sense_wrapper {
  border-top: .05em solid #1f1d2b;
  border-bottom: .05em solid #1f1d2b;
}

.sense_line {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  border-bottom: .05em solid #1f1d2b;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 4.5em;
  display: flex;
  overflow: hidden;
}

.sense_line.is--last {
  border-bottom-style: none;
}

.sense_divider {
  border-radius: .6em;
  flex: none;
  width: 2.8em;
  height: 2.8em;
  overflow: hidden;
}

.sense_divider.is--large {
  width: 8.55em;
}

.line_tag {
  grid-column-gap: .2em;
  grid-row-gap: .2em;
  border: .05em solid #1f1d2b;
  border-radius: 4em;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-left: .65em;
  padding-right: .65em;
  display: flex;
}

.sense_line-row, .sense_line-row-reverse {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  flex: none;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  display: flex;
}

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

.icon-50 {
  flex: none;
  width: 2.5em;
  height: 2.05em;
}

.line-title {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-38 {
  aspect-ratio: 1;
  width: 1.9em;
}

.section_sense {
  margin-top: 3.25em;
}

.circle-small {
  z-index: 2;
  border: 1px dashed #9b8bc4;
  border-radius: 1000px;
  justify-content: center;
  align-items: flex-start;
  width: 36rem;
  height: 36rem;
  margin-top: 1px;
  display: flex;
  position: absolute;
  inset: auto;
}

.header_love-wrap {
  z-index: 10;
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 22rem;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.padding-global-no {
  padding-left: 5rem;
  padding-right: 5rem;
}

.swiper-horizontal {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.blue_box-wrap {
  border-radius: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 18.75rem;
  padding-bottom: 4rem;
  display: flex;
  position: relative;
}

.swiper-wrapper.is-slider-review {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.code-embed {
  position: absolute;
  top: -1px;
}

.circle-wrap {
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
  position: relative;
}

.swiper-arrow {
  cursor: pointer;
  background-color: #f4eee3;
  background-image: url('../images/arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 30%;
  border: 1px solid #1f1d2b;
  border-radius: 100vw;
  width: 6em;
  height: 3em;
  transition: all .2s;
  display: inline-block;
}

.swiper-arrow:hover {
  background-color: #3732350f;
}

.swiper-arrow.button-prev {
  transform: rotate(-180deg);
}

.circle-large {
  z-index: 1;
  pointer-events: none;
  border: 1px dashed #c7bfdf;
  border-radius: 1500px;
  width: 63rem;
  height: 63rem;
  position: absolute;
  inset: auto;
}

.testimonial4_client-image {
  object-fit: cover;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.button-4 {
  color: #fff;
  text-align: center;
  background-color: #1f1d2b;
  border: 1px solid #1f1d2b;
  border-radius: 16px;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-4.is-small {
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

.swiper.is-slider-review {
  width: 100%;
  max-width: 96vw;
  height: 100%;
  overflow: visible;
}

.tooltip-wrap {
  color: #fff;
  text-align: center;
  background-color: #2e2540;
  border-radius: 12px;
  justify-content: center;
  align-items: flex-end;
  padding: 8px 12px;
  font-size: .85rem;
  display: flex;
  position: relative;
}

.profile-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
}

.profile-wrap.is-2 {
  top: 15.8rem;
  left: -2.7rem;
}

.profile-wrap.is-1 {
  top: -5rem;
}

.profile-wrap.is-3 {
  top: 7.3rem;
  left: auto;
  right: -2.2rem;
}

.section_service {
  overflow: hidden;
}

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

.arrow-wrap {
  width: 16px;
  height: 18px;
  position: absolute;
  bottom: -10px;
}

.swiper-slide.is-slider-review {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: auto;
}

.swiper-slide.mod--product {
  background-color: #fff;
  position: relative;
}

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

.swiper-component {
  z-index: 5;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 1.5rem;
  display: flex;
  position: relative;
}

.arrow-box {
  background-color: #f6f6f64d;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  padding: 14px 14px 16px;
}

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

.benefits-heading {
  text-align: center;
  max-width: 470px;
  margin-bottom: 75px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card-text-block {
  max-width: 246px;
  font-size: 18px;
  line-height: 1.1;
}

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

.benefits-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 225px;
  padding-bottom: 150px;
  display: flex;
}

.benefits-section {
  justify-content: center;
  align-items: center;
}

.vertical-line {
  border-right: 2px dashed #c7bfdf;
  width: 2px;
  height: 230px;
  margin-left: 6%;
  margin-right: 6%;
}

.benefit-text-div {
  width: 100%;
  max-width: 330px;
  margin-left: 20px;
}

.benefits-lottie-block {
  width: 30px;
}

.benefits-block {
  align-items: flex-start;
  padding-top: 55px;
  display: flex;
}

.benefits-flexbox {
  width: 75vw;
  min-width: 744px;
  height: 230px;
  display: flex;
}

.card-title {
  margin-top: 7.5px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
}

.care__btn-img {
  width: 70%;
  max-width: none;
  transition: all .5s;
  display: block;
}

.care__btn-img.active {
  width: 260%;
  margin-bottom: 20%;
  margin-left: -10%;
}

.modal__close {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.bg__blur-grey {
  z-index: 0;
  width: 116.38rem;
  max-width: none;
  display: block;
  position: absolute;
  top: 3rem;
  left: 4%;
}

.scroll__content {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 27rem;
  height: 27rem;
  transition: all 3s;
  display: flex;
  position: relative;
  top: 200px;
  left: 60px;
}

.product__nav {
  align-items: center;
  margin-top: 4.4rem;
  margin-left: -.44rem;
  display: flex;
}

.product__nav-btn {
  cursor: pointer;
  border: 1px solid #0003;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-left: .44rem;
  margin-right: .44rem;
  display: flex;
}

.product__nav-btn.mod--prev {
  transform: rotate(-180deg);
}

.care__slide-title {
  margin-bottom: 0;
  position: relative;
  top: 2rem;
}

.care__slide-title.active {
  top: 0;
}

.product__line {
  background-color: #0000001a;
  width: 1px;
  margin-top: 2.77rem;
  margin-bottom: 2.77rem;
  transition: all 1s;
  position: absolute;
  inset: 0% 0 0% auto;
}

.product__block {
  z-index: 1;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  padding-top: 2.22rem;
  padding-bottom: 1.6rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.overflow__anim-arrow {
  width: 1rem;
  display: block;
}

.overflow__anim-arrow.mod--2 {
  position: absolute;
  top: 0;
  left: -2rem;
}

.preloader__img-blur {
  z-index: -1;
  width: 53rem;
  max-width: none;
  display: block;
  position: absolute;
  top: -15rem;
  left: -20rem;
}

.content {
  z-index: 2;
  width: 100%;
  max-width: 1312px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.product__heading {
  margin-bottom: 2.66rem;
  position: relative;
}

.care__heading-wrap {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.scroll__bg-wrap {
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: all 1s;
  display: flex;
  position: absolute;
  inset: 0;
}

.scroll__bg-wrap.active {
  opacity: 1;
}

.js {
  display: none;
  overflow: hidden;
}

.care__col {
  flex: 1;
}

.care__col.col--1 {
  flex-direction: column;
  justify-content: space-between;
  max-width: 21.1rem;
  display: flex;
}

.care__col.col--2 {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 26.8rem;
  display: flex;
  overflow: hidden;
}

.care__btn {
  cursor: pointer;
  border: 1px solid #3d3d3d1a;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-right: .88rem;
  display: flex;
  overflow: hidden;
}

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

.overflow-hidden-2.mod--care-btn {
  margin-top: 2.5rem;
}

.product__img {
  transition: all .4s;
  position: relative;
}

.product__col.mod--1 {
  min-width: 24.66rem;
}

.product__col.col--2 {
  flex: 1;
  overflow: hidden;
}

.scroll__bg {
  flex: none;
  max-width: none;
  transition: opacity 1s;
  display: block;
}

.scroll__bg.mod--2 {
  width: 101rem;
}

.scroll__bg.mod--4 {
  width: 52.27rem;
}

.scroll__bg.mod--hero {
  width: 55rem;
  display: block;
}

.scroll__bg.mod--hero.mod--2 {
  width: 75rem;
}

.scroll__bg.mod--hero.mod--3 {
  width: 80rem;
}

.bg__blur-wrap {
  z-index: -1;
  justify-content: center;
  align-items: center;
  width: 27rem;
  height: 27rem;
  display: flex;
  position: absolute;
  top: -4rem;
  left: 68%;
}

.bg__blur-wrap.mod--2 {
  top: -2.7rem;
  left: 75%;
}

.bg__blur-wrap.mod--6 {
  top: 15.4rem;
  left: -32%;
}

.bg__blur-wrap.mod--5 {
  top: -4.5rem;
  left: 35%;
}

.care__p {
  margin-top: .88rem;
  position: relative;
  top: 10rem;
}

.care__p.active {
  top: 0;
}

.product__columns {
  align-items: stretch;
  display: flex;
}

.section-2 {
  padding: 5.5rem 20px;
  position: relative;
}

.section-2.mod--care {
  z-index: auto;
  padding-bottom: 3rem;
}

.product__overheading {
  color: #3d3d3d33;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .2rem;
  font-size: .77rem;
  font-weight: 700;
  transition: all .5s;
  position: relative;
}

.swiper-wrapper-2 {
  flex-flow: row;
  width: 100%;
  display: flex;
}

.modal {
  z-index: 99;
  background-color: #0006;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0%;
}

.btn-link {
  color: #6b5b95;
  letter-spacing: .02em;
  border-bottom: 1px solid #6b5b95;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
  display: inline-block;
}

.btn-link.mod--care {
  transition-property: none;
  position: relative;
  top: 2rem;
}

.btn-link.mod--care.active {
  top: 0;
}

.heading__span {
  margin-bottom: -.3em;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

.heading {
  position: relative;
}

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

.scroll__bg-hero-wrap {
  opacity: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.scroll__bg-hero-wrap.mod--2 {
  margin-bottom: -4rem;
}

.scroll__bg-hero-wrap.mod--1 {
  opacity: 1;
  position: relative;
}

.modal__content {
  z-index: 1;
  width: 73rem;
  position: relative;
}

.swiper-2 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-2.mod--product {
  background-color: #fff;
  width: auto;
  margin-left: -1px;
  margin-right: -1px;
  overflow: visible;
}

.care__heading-star {
  width: 1.33rem;
  height: 1.33rem;
  margin-top: .2rem;
  margin-left: -3.1rem;
  margin-right: 1.77rem;
  display: block;
}

.overflow__anim {
  transition: all .4s;
  position: relative;
  top: 0;
  right: 0;
}

.video__code {
  z-index: 0;
  height: 41rem;
  position: relative;
}

.care__columns {
  background-color: #fff;
  justify-content: space-between;
  padding: 2.77rem 4.3rem 2.77rem 5.33rem;
  display: flex;
}

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

.hide {
  display: none;
}

.heading__span-strong {
  font-weight: 500;
  display: inline-block;
  position: relative;
  bottom: 0;
}

.prodict__bg-noise {
  z-index: -1;
  width: 38rem;
  max-width: none;
  display: block;
  position: absolute;
  top: 0;
  left: 7.5rem;
}

.overflow__anim-txt {
  margin-bottom: 0;
  position: relative;
}

.overflow__anim-txt.mod--over {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
}

.care__slider {
  background-color: #0000;
  height: auto;
}

.bg__blur {
  z-index: -1;
  flex: none;
  max-width: none;
  display: none;
}

.bg__blur.mod--2 {
  width: 89.8rem;
}

.bg__blur.mod--4 {
  width: 52.27rem;
}

.care__slider-content {
  height: 100%;
}

.scroll {
  z-index: -1;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  max-width: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% 0;
  overflow: hidden;
}

.preloader {
  z-index: 99;
  background-color: #f4eee3;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.product__canvas {
  width: 290px;
  height: 370px;
  position: absolute;
  inset: 0%;
}

.preloader__img-logo {
  width: 40rem;
  display: block;
}

.left-column {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

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

.tab-content-2 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.arrow-wrapper {
  width: 100px;
  overflow: hidden;
}

.line-2 {
  z-index: 0;
  background-color: #fff;
  width: 16px;
  height: 12px;
  position: relative;
}

.blue-footer {
  position: relative;
}

.hero-wrapper {
  grid-column-gap: 2.2rem;
  grid-row-gap: 2.2rem;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-top: 5rem;
  display: flex;
}

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

.tab-img {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.circle-img {
  object-fit: cover;
  border-radius: 100px;
  width: 9.5rem;
  height: 9.5rem;
  transition: all .5s cubic-bezier(.165, .84, .44, 1);
  position: absolute;
  inset: auto auto 0% 0%;
}

.circle-img:hover {
  transform: scale(1.1);
}

.blue-circle {
  z-index: 0;
  background-color: #dcd4f0;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 76%;
  height: 76%;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.hero_title-wrapper {
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero_tab-content {
  border-radius: 32px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero_tab-content.is-2 {
  height: 100%;
  transition: all .3s;
}

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

.button-5 {
  color: #fff;
  text-align: center;
  background-color: #1f1d2b;
  padding: .8rem 1rem;
  font-weight: 500;
}

.button-5.is-text {
  color: #3a2f55;
  background-color: #0000;
  border: 2px solid #0000;
  text-decoration: underline;
}

.button-5.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-size-regular-2 {
  color: #8a8377;
  font-size: 1rem;
}

.round-icon {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: -5px;
  display: flex;
  position: relative;
}

.heading-style-h4 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.detail-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: absolute;
}

.detail-wrapper.is-1 {
  top: 27%;
  left: 16%;
}

.detail-wrapper.is-4 {
  top: 58%;
  left: 28%;
}

.detail-wrapper.is-5 {
  top: 28%;
  left: 13%;
}

.detail-wrapper.is-2 {
  top: 22%;
  left: 62%;
}

.detail-wrapper.is-3 {
  top: 50%;
  left: 8%;
}

.detail-subinfo {
  perspective-origin: 0 0;
  transform-origin: 0 0;
  background-color: #fff;
  border-radius: 12px;
  width: 14rem;
  margin-top: 8px;
  padding: 10px 12px;
  display: none;
}

.product_infor-circle {
  background-image: url('../images/circle-new.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 12.5rem;
  height: 12.5rem;
  position: absolute;
  inset: auto auto 0% 0%;
}

.product_infor-content {
  flex-direction: column;
  display: flex;
}

.product_infor-content.is-1 {
  margin-left: 8.25rem;
  overflow: hidden;
}

.product_infor-content.is-2 {
  margin-left: 13rem;
}

.product_infor-content.is-3 {
  margin-left: 14.25rem;
}

.detail-floating {
  color: #1f1d2b;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.detail-text {
  background-color: #fff;
  border-radius: 100px;
  margin-right: -5px;
  padding: 8px 12px;
  position: relative;
}

.tabs-menu {
  z-index: 50;
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-direction: column;
  display: flex;
  position: absolute;
  inset: auto 5% 8% auto;
}

.video-title {
  z-index: 3;
  color: #fff;
  width: 100%;
  padding: 40px;
  position: absolute;
  inset: 0% 0% auto;
}

.main-wrapper-2 {
  padding-bottom: 0;
}

.blue-text-underneath {
  z-index: -1;
  background-color: #dcd4f0;
  height: 44%;
  position: absolute;
  inset: auto 0% 0%;
}

.hero-section {
  width: 100%;
  height: 100vh;
}

.hero-detail {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 90vh;
  display: flex;
}

.padding-global-3 {
  padding: 2.1rem;
}

.right-column {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.button-group {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: -.25rem;
  display: flex;
}

.sub-text {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  display: flex;
}

.social-wrapper-2 {
  z-index: 200;
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: #fff;
  border-top-left-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-top: 12px;
  padding-left: 1rem;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.text-size-small-2 {
  font-size: .875rem;
  line-height: 1.4;
}

.product_infor-wrapper {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.bullet-point {
  background-color: #1f1d2b;
  border-radius: 4px;
  width: 8px;
  height: 8px;
  position: absolute;
}

.bullet-point.is-1 {
  top: 6%;
  left: 55%;
}

.bullet-point.is-2 {
  top: 34%;
  right: 9.5%;
}

.bullet-point.is-3 {
  bottom: 21%;
  right: -2%;
}

.hero_tab-number {
  color: #fff;
  background-color: #ddd0;
  border: 1px solid #fff;
  border-radius: 5rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
}

.hero_tab-number.w--current {
  color: #1f1d2b;
  background-color: #fff;
}

.product_infor-bullet {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 16rem;
  padding-bottom: .75rem;
  display: flex;
}

.white-corner {
  z-index: 100;
  width: 20px;
  height: 20px;
  position: absolute;
  inset: auto auto 0% -20px;
  transform: rotate(-180deg);
}

.white-corner.is-right {
  width: 30px;
  height: 30px;
  inset: -30px 0% auto auto;
}

.hero-line {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  width: 100%;
  display: flex;
}

.heading-style-h1 {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

.full-img {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.icon-1x1-large:hover {
  color: #5c4fd6;
}

.sub-information {
  border-top: 1px solid #9b8bc4;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.product_infor-title {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  align-items: center;
  display: flex;
}

.tabs-content {
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.arrow {
  justify-content: flex-start;
  align-items: center;
  width: 100px;
  height: 1.5rem;
  margin-top: .5rem;
  display: flex;
}

.article-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
  background-color: #ffffff69;
  border-radius: 24px;
  align-items: center;
  width: 20rem;
  padding: 8px;
  text-decoration: none;
  transition: all .5s cubic-bezier(.77, 0, .175, 1);
  display: flex;
  position: absolute;
  inset: 2.5% 3.8% auto auto;
}

.article-wrapper:hover {
  color: #1f1d2b;
  background-color: #fff;
  transform: scale(1.05);
}

.article-img {
  object-fit: cover;
  border-radius: 16px;
  flex: none;
  width: 7.2rem;
  height: 5.5rem;
}

.sub-line {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-bottom: 1px solid #9b8bc4;
  justify-content: flex-start;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.article-info {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

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

.text-weight-bold.text-size-medium {
  line-height: 1.3;
}

.home-routines_image.is-1 {
  z-index: 0;
  position: relative;
}

.home-routines_image.is-2 {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.home-routines_images-wrapper {
  margin-top: 4rem;
  position: relative;
}

.home-routines_h2 {
  font-size: 2.5rem;
}

.home-routines_sticky-wrapper {
  background-color: #111827;
  background-image: linear-gradient(180deg, #111827 0%, #111827 50%, #3a2f55 100%);
  border-radius: 4em;
  height: 400vh;
  position: relative;
}

.home-routines_space {
  width: 100%;
  height: 4rem;
}

.home-routines_main-image-wrapper {
  position: relative;
  overflow: hidden;
}

.home-routines_side-image {
  border-radius: 12px;
  overflow: hidden;
}

.home-routines_side-image.is-2 {
  z-index: 2;
  position: absolute;
  inset: 0%;
}

.padding-global-4 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.section_home-routines {
  z-index: 1;
  background-color: #cf00;
  border-radius: 5em;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
}

.home-routines_side-image-wrapper {
  z-index: 0;
  border-radius: 12px;
  position: absolute;
  inset: 30% auto auto -20vw;
  overflow: hidden;
}

.home-routines_side-image-wrapper.is-right {
  top: -10%;
  left: auto;
  right: -20vw;
}

.home-routines_heading-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 41rem;
  display: grid;
}

.home-routines_component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 14rem;
  display: flex;
  position: sticky;
  top: 0%;
  overflow: hidden;
}

.single-testimonial_grid {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
}

.heading-xmedium {
  font-size: 2.5rem;
  line-height: 1.2;
}

.arrow-link {
  color: #6b5b95;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.single-testimonial_componenet {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  color: #4f4f63cc;
  background-color: #fdfbf6;
  border-bottom: 1px solid #4f4f631f;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  font-size: .9rem;
  display: grid;
}

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

.arrow-link_icon {
  height: 1rem;
  margin-left: .6rem;
}

.heading-medium {
  font-size: 2rem;
  line-height: 1.2;
}

.page-padding-3 {
  padding-top: 10rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

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

.padding-left.padding-medium.is--single-testimonial {
  border-left: 1px solid #e8e3ef;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.single-testimonial_image-wrapper {
  border-radius: .5rem;
  margin-left: -2rem;
  overflow: hidden;
}

.overview_tab-pane {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 4rem;
}

.overview_image {
  border-radius: .5rem;
  width: 100%;
}

.overview-tabs_menu {
  border-bottom: 2px solid #f4eee3;
  justify-content: space-around;
  display: flex;
}

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

.overview_product-item {
  background-color: #fafafc00;
  border: 1px solid #ece7f3;
  border-radius: .7255rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: .85rem 1rem;
  transition: background-color .18s ease, border-color .18s ease,
    box-shadow .18s ease;
}

.overview_product-item:hover {
  background-color: #fdfbf6;
  border-color: #cfc6e6;
  box-shadow: 0 6px 18px -10px rgba(92, 79, 214, .35);
}

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

.section-home-overview {
  margin-bottom: 10em;
}

.overview_product-top {
  color: #6b5b95;
  align-items: center;
  margin-bottom: .25rem;
  font-weight: 500;
  display: flex;
}

.overview-tab_item {
  background-color: #0000;
  border-bottom: 2px solid #f4eee3;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: .15rem;
  margin-bottom: -2px;
  padding: 1rem .75rem;
  display: flex;
}

.overview-tab_item.w--current {
  background-color: #0000;
}

.text-size-medium-3 {
  font-size: 1.25rem;
}

.divider {
  border-bottom: 1px solid #e8e3ef;
  width: 100%;
  height: 1px;
}

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

.overview_feature-grids {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-small {
  font-size: 1.25rem;
  line-height: 1.4;
}

.heading-small.is-overview {
  font-weight: 500;
}

.overview_tab-content {
  background-image: url('../images/svgexport-1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1rem;
  margin-top: 3rem;
  padding: 2.75rem;
}

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

.text-style-allcaps.is-eyebrow {
  letter-spacing: .05rem;
}

.icon-wrapper {
  color: #6b5b95;
  background-color: #e8e3ef;
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: .25rem;
  display: flex;
}

.icon-wrapper.is-padding {
  margin-right: .5rem;
  transition: all .18s cubic-bezier(.39, .575, .565, 1);
}

.icon-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-2, .heading-3, .heading-4, .heading-5 {
  text-transform: none;
}

.heading-6, .heading-7, .heading-8 {
  text-transform: none;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 1rem;
  }

  .hide-tablet {
    display: none;
  }

  .heading-style-h2 {
    font-size: 3rem;
  }

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

  .nav-link {
    height: auto;
    color: var(--black-2);
    background-color: #0000;
    padding: 2rem 2.5rem;
    font-size: 2rem;
  }

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

  .nav-link.first {
    padding-left: 2.5rem;
  }

  .nav-menu {
    background-color: var(--white);
    width: 100%;
    padding-top: 5rem;
  }

  .menu-button {
    background-color: var(--black-2);
    width: 5rem;
    height: 100%;
    color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    display: block;
  }

  .menu-button.w--open {
    z-index: 999;
    background-color: var(--black-2);
  }

  .menu-icon-wrapper {
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-line {
    background-color: var(--silver);
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .image-wrapper.hero {
    inset: auto 0% 25%;
  }

  .image-wrapper.tab {
    width: 16rem;
  }

  .image-container.hero {
    width: 20rem;
    height: 20rem;
  }

  .hero-image {
    width: 16rem;
  }

  .spacer.last {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .wrapper-info.bottom {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .social-wrapper.right-aligned {
    align-items: flex-start;
  }

  .grid.hero {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    min-height: auto;
  }

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

  .nav-menu-wrapper {
    background-color: #0000;
    justify-content: flex-end;
  }

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

  .crystal-shadow {
    width: 90%;
  }

  .section.footer {
    padding-top: 10rem;
  }

  .numbers-column.first {
    padding-left: 0;
  }

  .text-number {
    font-size: 5rem;
  }

  .tab-intro-wrapper {
    align-items: flex-start;
    padding-top: 8.5rem;
  }

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

  .footer-wrapper {
    flex-direction: column;
    margin-top: 10rem;
  }

  .footer-logo-heading {
    font-size: 16vw;
  }

  .hero-content {
    height: 30%;
  }

  .hero-grid {
    flex-direction: column;
    grid-template-columns: 1fr 1fr 1.25fr 1fr 1fr;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 5%;
    display: flex;
  }

  .hero-grid-wrapper {
    padding-top: 15%;
  }

  .link-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .nav-menu-2 {
    background-color: #fdfbf6;
    border-radius: 1rem;
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
    transform: translate(0, 10%);
  }

  .button-2.hide {
    display: none;
  }

  .navbar-2 {
    margin-top: .5rem;
  }

  .hamburger.w--open {
    background-color: #c8c8c800;
  }

  .navbar-wrapper {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .hamburger-lottie {
    width: 2rem;
    height: 2rem;
  }

  .heading-hero-2 {
    font-size: 9vw;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.25rem;
    line-height: 1;
  }

  .container-2 {
    max-width: 80rem;
  }

  .card-grid {
    height: 60%;
  }

  .text-big {
    font-size: 1.5rem;
  }

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

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

  .tools_content-left {
    max-width: 17rem;
  }

  .tag {
    z-index: 10;
    background-color: #e8e3ef;
    position: relative;
  }

  .tag.work-version {
    margin: .7rem;
  }

  .home-work-intro {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

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

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

  .project-link {
    padding-bottom: 2rem;
  }

  .padding-regular {
    padding-left: 1.625rem;
    padding-right: 1.625rem;
  }

  .project-title {
    padding-top: 1rem;
  }

  .process_item-image_container {
    width: 100%;
    height: auto;
  }

  .process_item-image_container.step-3 {
    width: auto;
    height: 100%;
  }

  .process_item-container {
    height: 20rem;
    display: flex;
  }

  .process_step {
    justify-items: stretch;
  }

  .process_item-image.step-1 {
    transform: scale(1)translate(0, .6rem)rotate(-15deg);
  }

  .process_item-image.step-3-1 {
    height: 22%;
    top: 16%;
    transform: scale(.8);
  }

  .process_item-image.step-3-3 {
    max-width: 100%;
    height: 22%;
    top: 58%;
    transform: scale(.8);
  }

  .process_item-image.step-3-2 {
    height: 22%;
    top: 37%;
    transform: scale(.8);
  }

  .process_item-image.step-2-arrow {
    max-width: 35%;
  }

  .home-about {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .text-huge {
    font-size: 2.5rem;
  }

  .studio-intro.large {
    grid-template-columns: 1fr auto 1fr;
  }

  .about-image {
    width: 8rem;
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .home-about-intro {
    max-width: 30rem;
  }

  .faq_section-title {
    width: 100%;
    max-width: 32rem;
    position: static;
  }

  .graphic_faq {
    max-width: 36rem;
    top: -13.8rem;
    left: 1.6rem;
  }

  .faq_bg {
    z-index: 0;
  }

  .faq_answer-content {
    padding-bottom: 1.5rem;
  }

  .faq_question {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .faq_section-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq_section {
    grid-row-gap: 5rem;
    flex-flow: column wrap;
  }

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

  .section-home-testimonial {
    z-index: 0;
  }

  .footer-base {
    padding-top: 1.625rem;
    padding-left: 1.625rem;
    padding-right: 1.625rem;
  }

  .footer {
    padding: 1rem;
  }

  .footer-grid {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .credit-link-grid {
    justify-content: center;
  }

  .circle-small {
    width: 31rem;
    height: 31rem;
  }

  .padding-global-no {
    padding-left: 0;
    padding-right: 0;
  }

  .blue_box-wrap {
    border-radius: 0;
  }

  .circle-large {
    width: 50rem;
    height: 50rem;
  }

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

  .heading-style-h2-2 {
    font-size: 2rem;
  }

  .benefit-card-text-block {
    max-width: none;
  }

  .vertical-line._2nd {
    border-bottom: 2px dashed #c7bfdf;
    border-right-style: none;
    width: 100%;
    height: 2px;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .vertical-line._1st {
    border-bottom: 2px dashed #c7bfdf;
    width: 100%;
    height: 2px;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .benefit-text-div {
    max-width: none;
  }

  .benefits-block._2nd, .benefits-block._3rd {
    padding-top: 0;
  }

  .benefits-flexbox {
    flex-direction: column;
    align-items: center;
    min-width: 0;
    height: auto;
  }

  .product__canvas {
    padding: 20vh 0 0;
  }

  .hero-section {
    height: auto;
  }

  .hero-detail {
    flex-direction: column;
    height: auto;
  }

  .right-column {
    height: 700px;
  }

  .home-routines_side-image-wrapper {
    display: none;
  }

  .single-testimonial_grid {
    grid-column-gap: .25rem;
    grid-template-columns: 1.25fr 1fr;
  }

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

  .overview_tab-pane {
    margin-bottom: -2rem;
    padding: 2rem 2rem 0;
  }

  .overview_grid {
    grid-row-gap: 2rem;
    margin-right: 0;
  }

  .overview-tab_item {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .overview-tab_item.w--current {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-small.is-overview {
    font-size: 1rem;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .heading-style-h2 {
    font-size: 2rem;
  }

  .nav-link {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav-link.first {
    padding-left: 1.25rem;
  }

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

  .image-wrapper.tab {
    position: absolute;
    top: calc(25rem - 150px);
  }

  .spacer.last {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .wrapper-info.bottom {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .social-wrapper {
    align-items: flex-start;
  }

  .social-wrapper.left-aligned {
    align-items: center;
  }

  .section.tab, .section.contact {
    align-items: flex-start;
    overflow: hidden;
  }

  .numbers-section {
    flex-direction: row;
  }

  .text-number {
    font-size: 3.5rem;
  }

  .tab-intro-wrapper {
    max-width: none;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: static;
  }

  .contact-heading {
    font-size: 4.8rem;
  }

  .newsletter-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .feature_icon-wrapper {
    display: block;
  }

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

  .section-02 {
    cursor: pointer;
    border-top-width: 1px;
    border-bottom-width: 1px;
    position: static;
  }

  .section-04 {
    cursor: pointer;
    border-top-width: 1px;
    position: static;
  }

  .feature_description {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 0;
    display: flex;
    overflow: hidden;
  }

  .feature_title {
    grid-column-gap: 3rem;
    flex-direction: row;
    display: flex;
  }

  .feature_content-top {
    grid-column-gap: 1rem;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: flex;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .feature_image-wrapper {
    margin-top: 2rem;
    position: static;
  }

  .section-01 {
    cursor: pointer;
    border-bottom-width: 1px;
    position: static;
    overflow: hidden;
  }

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

  .section-03 {
    cursor: pointer;
    border-top-width: 1px;
    border-bottom-width: 1px;
    position: static;
  }

  .tag.work-version {
    padding: .1rem .65rem;
  }

  .home-work-list {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    padding-top: 3rem;
  }

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

  .padding-regular {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-padding-2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .process_step {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .process_timeline {
    align-self: flex-start;
    margin-left: 2rem;
  }

  .home-about {
    border-top-style: none;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .text-huge {
    font-size: 2rem;
  }

  .studio-intro {
    grid-template-columns: auto auto auto;
  }

  /* Mobile: ocultar las 2 imágenes de la sección "home-about" y dejar el
     intro a una sola columna (centrado a todo el ancho). */
  .studio-intro.large {
    grid-template-columns: 1fr;
  }

  .about-intro-text {
    max-width: 23rem;
  }

  .about-image {
    width: 6rem;
    display: none;
  }

  .home-about-intro {
    max-width: 25rem;
  }

  .faq_answer {
    margin-bottom: 1.25rem;
  }

  .graphic_faq {
    max-width: 25rem;
    top: -9.2rem;
    left: -1rem;
  }

  .faq_answer-content {
    padding-bottom: 1.25rem;
  }

  .faq_question {
    padding-top: 1.25rem;
    padding-bottom: 1rem;
  }

  .faq_section {
    grid-row-gap: 3.5rem;
  }

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

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

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

  .footer-grid {
    grid-row-gap: 1.75rem;
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }

  .circle-small {
    width: 30rem;
    height: 30rem;
  }

  .header_love-wrap {
    width: 23rem;
  }

  .blue_box-wrap {
    padding: 14rem 2rem 2rem;
  }

  .circle-large {
    width: 52rem;
    height: 52rem;
  }

  .profile-wrap.is-2, .profile-wrap.is-3 {
    display: none;
  }

  .section_service {
    padding-top: 4.5rem;
  }

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

  .heading-style-h2-2 {
    font-size: 2.25rem;
  }

  .benefits-heading {
    margin-bottom: 50px;
  }

  .benefits-wrapper {
    padding: 75px 25px;
  }

  .benefits-flexbox {
    width: 100%;
  }

  .product__canvas {
    padding-top: 22vh;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .padding-global-3 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .home-routines_sticky-wrapper {
    height: auto;
  }

  .home-routines_space {
    display: none;
  }

  .padding-global-4 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .home-routines_component {
    min-height: auto;
    padding: 4rem 1.25rem;
    position: static;
    top: 2rem;
  }

  .heading-xmedium {
    font-size: 1.5rem;
  }

  .single-testimonial_componenet {
    grid-column-gap: 1.75rem;
  }

  .heading-medium {
    font-size: 1.5rem;
  }

  .page-padding-3 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .padding-left.padding-medium.is--single-testimonial {
    border-left-color: #0000;
    padding-left: 0;
  }

  .single-testimonial_image-wrapper.shadow {
    margin-left: -1rem;
  }

  .overview-tabs_menu {
    justify-content: flex-start;
  }

  .overview-tab_item {
    flex: 0 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Mobile: apilar texto + video, y reducir el padding del contenido. */
  .overview_grid {
    grid-template-columns: 1fr;
  }

  .overview_tab-content {
    padding: 1.5rem;
  }

  .heading-small {
    font-size: 1rem;
  }
}

@media screen and (max-width: 479px) {
  .max-width-large {
    max-width: none;
  }

  .nav-logo {
    width: 5rem;
  }

  .menu-button {
    justify-content: center;
    align-items: center;
    width: 4rem;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon-wrapper {
    flex: none;
  }

  .image-wrapper.tab {
    width: 10rem;
  }

  .image-container.hero {
    width: 100%;
    height: auto;
  }

  .hero-image {
    width: 14rem;
  }

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

  .grid.subhero {
    grid-template-columns: 1fr;
    width: 100%;
    overflow: visible;
  }

  .grid.about {
    width: 100%;
  }

  .grid.footer {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    width: 100%;
  }

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

  .section.tab {
    min-height: 100dvh;
  }

  .section.contact {
    min-height: auto;
    padding-top: 0;
  }

  .numbers-section {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    display: flex;
  }

  .numbers-column {
    width: 45%;
    padding-left: 0;
  }

  .numbers-column.first {
    width: 100%;
  }

  .line-vertical {
    width: 100%;
    height: 1px;
  }

  .contact-image-container {
    max-width: 90%;
  }

  .contact-heading {
    font-size: 2.8rem;
  }

  .newsletter-container {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .newsletter-text-field {
    padding-bottom: 12px;
    font-size: 1rem;
  }

  .newsletter-submit-button {
    font-size: 1rem;
  }

  .text-block {
    white-space: normal;
  }

  .hero-content {
    align-items: center;
    height: auto;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-grid {
    flex-direction: column;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    height: 90vh;
    padding-top: 15%;
    padding-bottom: 5%;
    display: flex;
  }

  .link-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: #fdfbf6;
    border-radius: 1rem;
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .nav-menu-2 {
    background-color: #f4f3f100;
    border-radius: 0;
    transform: none;
  }

  .logo-wrapper {
    width: 10rem;
  }

  .card-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding-bottom: 0;
  }

  .hamburger-lottie {
    width: 1.75rem;
    height: 1.75rem;
  }

  .heading-hero-2 {
    font-size: 11vw;
  }

  .nav-link-2 {
    font-size: 1.2rem;
  }

  .navbar-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .container-2 {
    max-width: none;
  }

  .card-grid {
    height: 50%;
  }

  .text-big {
    font-size: 1.2rem;
  }

  .feature_icon {
    width: 1.25rem;
    max-width: none;
    height: 1.75rem;
  }

  .feature_text-description {
    width: auto;
    max-width: 21rem;
  }

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

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

  .feature_title {
    grid-column-gap: 1rem;
  }

  .feature_content-top {
    grid-column-gap: 1rem;
    justify-content: space-between;
  }

  .feature_button-bg {
    background-image: radial-gradient(circle closest-corner, #9b8bc4, #fff);
  }

  .section-01 {
    height: auto;
  }

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

  .home-work-description {
    max-width: 20rem;
  }

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

  .process_overlay-top {
    height: 4rem;
  }

  .process_step {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 2rem;
  }

  .process_item-indicator {
    width: 2rem;
    height: 2rem;
  }

  .process_overlay-bottom {
    height: 4rem;
  }

  .process_timeline {
    margin-left: 1rem;
  }

  .about-intro-text {
    max-width: 21rem;
  }

  .about-image {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .graphic_faq {
    max-width: 14rem;
    top: -3.1rem;
    left: 3.9rem;
  }

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

  .footer-grid {
    padding-bottom: 5rem;
  }

  .circle-small {
    width: 50rem;
    height: 50rem;
    margin-top: 22rem;
  }

  .header_love-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    width: 100%;
  }

  .blue_box-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .circle-large {
    width: 46rem;
    height: 44rem;
    margin-top: 2rem;
  }

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

  .arrow-box {
    width: 36px;
    height: 36px;
    padding: 8px 10px 10px;
  }

  .heading-style-h2-2 {
    font-size: 2rem;
  }

  .benefits-heading {
    margin-bottom: 50px;
  }

  .benefits-wrapper {
    padding: 50px 25px;
  }

  .product__nav {
    justify-content: center;
    align-items: center;
  }

  .product__nav-btn, .product__nav-btn.mod--prev {
    width: 10rem;
    height: 10rem;
  }

  .care__slide-title.active {
    font-size: 10rem;
  }

  .content {
    max-width: none;
    height: 100%;
  }

  .care__heading-wrap {
    font-size: 10rem;
  }

  .care__col.col--1 {
    max-width: none;
    margin-bottom: 1em;
  }

  .care__col.col--2 {
    max-width: none;
  }

  .care__btn {
    width: 20em;
    height: 20em;
  }

  .care__p.active {
    font-size: 3rem;
  }

  .product__columns {
    flex-flow: column;
  }

  .section-2.mod--care {
    height: 100vh;
  }

  .swiper-wrapper-2 {
    flex-flow: column;
  }

  .btn-link.mod--care.active {
    font-size: 5em;
  }

  .heading {
    text-align: center;
    font-size: 8rem;
  }

  .heading.mod--margin-0 {
    font-size: 10rem;
  }

  .care__heading-star {
    width: 10rem;
    height: 10rem;
  }

  .care__columns {
    border-radius: 10em;
    flex-flow: column;
    height: 100%;
    padding-top: 10rem;
  }

  .product__canvas {
    padding-top: 20vh;
  }

  .arrow-wrapper {
    width: 60px;
  }

  .hero-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .hero_title-wrapper {
    margin-bottom: 3em;
  }

  .detail-wrapper.is-1 {
    z-index: 10001;
    top: 32%;
    left: 8%;
  }

  .detail-wrapper.is-2 {
    z-index: 10002;
    top: 20%;
    left: 28%;
  }

  .detail-wrapper.is-3 {
    z-index: 1000;
    top: 60%;
    left: 42%;
  }

  .padding-global-3 {
    padding: 1.5rem 1rem;
  }

  .sub-text {
    grid-column-gap: .3rem;
    grid-row-gap: .3rem;
    flex-wrap: wrap;
  }

  .product_infor-wrapper {
    display: none;
  }

  .hero-line {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .arrow {
    width: 60px;
  }

  .article-wrapper {
    width: 90%;
  }

  .sub-line {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    flex-direction: column;
  }

  .text-weight-bold.text-size-medium {
    font-size: 1rem;
  }

  .home-routines_h2 {
    font-size: 2rem;
  }

  .home-routines_sticky-wrapper {
    height: auto;
  }

  .home-routines_space {
    display: none;
  }

  .single-testimonial_componenet {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
    padding: 1rem;
  }

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

  .padding-left.padding-medium.is--single-testimonial {
    border-top: 1px solid #e8e3ef;
    padding-top: 1rem;
  }

  .single-testimonial_image-wrapper, .single-testimonial_image-wrapper.shadow {
    margin-left: 0;
  }

  .overview_tab-pane {
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .overview_feature-grids {
    grid-template-columns: 1fr;
  }
}

#w-node-_16dfcd36-2bb9-f58a-6ceb-82987100f8d5-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2880d343-9029-6b86-382a-32030c85a6b6-509e6570 {
  grid-area: 2 / 1 / 4 / 4;
  align-self: end;
}

#w-node-_2880d343-9029-6b86-382a-32030c85a6bf-509e6570 {
  grid-area: 1 / 5 / 3 / 7;
  align-self: center;
}

#w-node-_91efc4ee-37ab-3fd4-da7c-fbc3ead86f0d-509e6570, #w-node-_91efc4ee-37ab-3fd4-da7c-fbc3ead86f19-509e6570, #w-node-_91efc4ee-37ab-3fd4-da7c-fbc3ead86f25-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b78fd9af-c95d-c24b-dfd9-54775aca4c67-509e6570 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-ab815e50-a726-e9df-97fa-f45bde351426-509e6570, #w-node-aa96f526-2f88-bd0a-f0cc-2b930f04c21c-509e6570, #w-node-ad876920-a7f4-94ba-af63-c0a05d47728f-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9724b4a1-8759-cc53-c53f-1be642c50929-509e6570 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_05b2a1ba-cc74-cf9c-ec01-4cfa26e7f1dd-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-daf7a62a-0cb5-8cee-adf8-84e74a718582-509e6570 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64be-509e6570 {
  align-self: stretch;
}

#w-node-_86914046-5f91-9cb6-fe86-d07b6af59c11-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c18-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c21-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c28-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c2f-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c43-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c4a-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c51-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c65-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c6c-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c80-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c87-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c8e-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59ca2-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59ca9-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59cb2-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59cb9-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb538fc-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb538ff-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53908-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53910-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53918-509e6570 {
  place-self: center start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb5391a-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53920-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53928-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53930-509e6570 {
  place-self: center start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53932-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53938-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53940-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53948-509e6570 {
  place-self: center start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb5394a-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53950-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53958-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53960-509e6570 {
  place-self: center start;
}

#w-node-_006bc5f8-50ec-7529-1431-c7979cb53962-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_61ec2b13-4b2d-b859-260e-b69849a9b999-509e6570 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_61ec2b13-4b2d-b859-260e-b69849a9b9a8-509e6570 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: start end;
}

#w-node-_61ec2b13-4b2d-b859-260e-b69849a9b9ab-509e6570 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: end;
}

#w-node-ebafc5c7-1e68-9c72-1d14-a94a0a16abcd-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start;
}

#w-node-ebafc5c7-1e68-9c72-1d14-a94a0a16abcf-509e6570, #w-node-ebafc5c7-1e68-9c72-1d14-a94a0a16abdf-509e6570, #w-node-ebafc5c7-1e68-9c72-1d14-a94a0a16abec-509e6570 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ebafc5c7-1e68-9c72-1d14-a94a0a16ac08-509e6570 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_2880d343-9029-6b86-382a-32030c85a6b6-509e6570 {
    grid-area: 1 / 1 / 3 / 6;
    align-self: start;
  }

  #w-node-_2880d343-9029-6b86-382a-32030c85a6bf-509e6570 {
    grid-area: 3 / 1 / 5 / 6;
    align-self: center;
  }

  #w-node-b78fd9af-c95d-c24b-dfd9-54775aca4c67-509e6570, #w-node-_9724b4a1-8759-cc53-c53f-1be642c50929-509e6570 {
    grid-column: span 4 / span 4;
  }

  #w-node-_05b2a1ba-cc74-cf9c-ec01-4cfa26e7f1dd-509e6570 {
    grid-area: 3 / 3 / 4 / 5;
  }

  #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c07-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c36-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c39-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c58-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c5b-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c73-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c76-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c95-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59c98-509e6570, #w-node-_86914046-5f91-9cb6-fe86-d07b6af59cc0-509e6570 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb538ff-509e6570 {
    justify-self: start;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53908-509e6570 {
    grid-column: span 2 / span 2;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53910-509e6570 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: start;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53918-509e6570 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb5391a-509e6570 {
    order: -9999;
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53920-509e6570 {
    grid-column: span 2 / span 2;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53928-509e6570 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: start;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53930-509e6570 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53932-509e6570 {
    order: -9999;
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53938-509e6570 {
    grid-column: span 2 / span 2;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53940-509e6570 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: start;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53948-509e6570 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb5394a-509e6570 {
    order: -9999;
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53950-509e6570 {
    grid-column: span 2 / span 2;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53958-509e6570 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: start;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53960-509e6570 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_006bc5f8-50ec-7529-1431-c7979cb53962-509e6570 {
    order: -9999;
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_61ec2b13-4b2d-b859-260e-b69849a9b9a8-509e6570 {
    grid-column: 3 / 4;
    justify-self: center;
  }

  #w-node-_61ec2b13-4b2d-b859-260e-b69849a9b9ab-509e6570 {
    grid-column: 1 / 2;
    justify-self: center;
  }

  #w-node-ebafc5c7-1e68-9c72-1d14-a94a0a16abcd-509e6570 {
    grid-column: span 3 / span 3;
  }

  #w-node-ebafc5c7-1e68-9c72-1d14-a94a0a16abfa-509e6570, #w-node-ebafc5c7-1e68-9c72-1d14-a94a0a16ac08-509e6570 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_05b2a1ba-cc74-cf9c-ec01-4cfa26e7f1dd-509e6570, #w-node-daf7a62a-0cb5-8cee-adf8-84e74a718585-509e6570, #w-node-daf7a62a-0cb5-8cee-adf8-84e74a71858e-509e6570 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64a3-509e6570 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64a6-509e6570 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64a9-509e6570 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64b0-509e6570 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64b6-509e6570 {
    grid-area: 1 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64b9-509e6570, #w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64be-509e6570 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64c3-509e6570 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_0c810765-d35f-8d6e-5d17-ab1917dc64c6-509e6570 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_61ec2b13-4b2d-b859-260e-b69849a9b999-509e6570 {
    grid-column: 1 / 4;
  }

  #w-node-_61ec2b13-4b2d-b859-260e-b69849a9b9a8-509e6570 {
    grid-column: 3 / 4;
    justify-self: end;
  }

  #w-node-_61ec2b13-4b2d-b859-260e-b69849a9b9ab-509e6570 {
    grid-column-start: 1;
    justify-self: start;
  }

  #w-node-ebafc5c7-1e68-9c72-1d14-a94a0a16abcd-509e6570 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2880d343-9029-6b86-382a-32030c85a6b6-509e6570 {
    grid-area: 1 / 1 / 3 / 5;
    align-self: center;
  }

  #w-node-_2880d343-9029-6b86-382a-32030c85a6bf-509e6570 {
    grid-area: 3 / 1 / 5 / 5;
    align-self: end;
  }

  #w-node-b78fd9af-c95d-c24b-dfd9-54775aca4c67-509e6570, #w-node-_9724b4a1-8759-cc53-c53f-1be642c50929-509e6570 {
    grid-column: span 4 / span 4;
  }

  #w-node-_05b2a1ba-cc74-cf9c-ec01-4cfa26e7f1dd-509e6570 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    justify-self: auto;
  }
}


@font-face {
  font-family: 'Matter';
  src: url('../fonts/Matter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Matter';
  src: url('../fonts/Matter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Matter';
  src: url('../fonts/Matter-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* === Hero split-title: smaller so the Spanish copy keeps the 2-line rhythm === */
.hero_title-wrapper .heading-style-h1 {
  font-size: 3.5rem;
}

/* === Testimonial slider (single-testimonial -> 2 slides) === */
.testimonial-slider { position: relative; }
.testimonial-slider_viewport { overflow: hidden; }
.testimonial-slider_track {
  display: flex;
  transition: transform .6s cubic-bezier(.65, .05, .36, 1);
}
.testimonial-slide { flex: 0 0 100%; min-width: 100%; }
.testimonial-slider_controls {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-gap: 1.25rem;
  margin-top: 2.5rem;
}
.testimonial-slider_dots { display: flex; grid-column-gap: .6rem; }
.testimonial-dot {
  width: .7rem;
  height: .7rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c7bfdf;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.testimonial-dot.is-active { background: #5c4fd6; transform: scale(1.3); }
.testimonial-slider_arrow {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #c7bfdf;
  border-radius: 50%;
  background: #fff;
  color: #1f1d2b;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.testimonial-slider_arrow:hover {
  background: #5c4fd6;
  border-color: #5c4fd6;
  color: #fff;
}

/* === Routines card: white text over the dark gradient === */
.home-routines_heading-wrapper,
.home-routines_heading-wrapper h2,
.home-routines_heading-wrapper p {
  color: #ffffff;
}

/* === Testimonial slider: equal card heights + controls spacing === */
.testimonial-slider .single-testimonial_image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.testimonial-slider_controls {
  padding-bottom: 3rem;
}

/* ============================================================
   itb-footer — brand footer (purple/ink palette)
   ============================================================ */
.itb-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1f1d2b 0%, #2e2540 100%);
  color: #e8e3ef;
  padding: 5rem 6% 2.25rem;
  font-family: Matter, sans-serif;
}
.itb-footer__halo {
  position: absolute;
  top: -28%;
  left: 50%;
  width: 60rem;
  height: 40rem;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(92, 79, 214, .45), rgba(92, 79, 214, 0) 70%);
  pointer-events: none;
  filter: blur(8px);
}
.itb-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}
.itb-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr;
  gap: 3rem;
}
.itb-footer__col--brand { max-width: 24rem; }
.itb-footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.itb-footer__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .85rem;
  background: linear-gradient(145deg, #5c4fd6, #6b5b95);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}
.itb-footer__name {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
}
.itb-footer__name em { font-style: italic; color: #9b8bc4; }
.itb-footer__mission {
  margin: 0 0 1.75rem;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(232, 227, 239, .68);
}
.itb-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  background: #5c4fd6;
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s, transform .25s;
}
.itb-footer__cta:hover { background: #6b5b95; transform: translateY(-2px); }
.itb-footer__cta svg { transition: transform .25s; }
.itb-footer__cta:hover svg { transform: translateX(3px); }
.itb-footer__col-title {
  margin: 0 0 1.1rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9b8bc4;
}
.itb-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.itb-footer__link {
  color: rgba(232, 227, 239, .72);
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s;
}
.itb-footer__link:hover { color: #fff; }
.itb-footer__list--contact { gap: .85rem; }
.itb-footer__link--icon { display: inline-flex; align-items: center; gap: .55rem; }
.itb-footer__link--icon svg { color: #9b8bc4; flex: none; }
.itb-footer__social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.itb-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #e8e3ef;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.itb-footer__social-btn:hover {
  background: #5c4fd6;
  border-color: #5c4fd6;
  color: #fff;
  transform: translateY(-2px);
}
.itb-footer__divider {
  height: 1px;
  margin: 3rem 0 1.5rem;
  background: rgba(255, 255, 255, .1);
}
.itb-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.itb-footer__copyright { margin: 0; font-size: .82rem; color: rgba(232, 227, 239, .6); }
.itb-footer__rights { color: rgba(232, 227, 239, .4); }
.itb-footer__legal-mini {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.itb-footer__legal-mini-link {
  color: rgba(232, 227, 239, .6);
  font-size: .82rem;
  text-decoration: none;
  transition: color .2s;
}
.itb-footer__legal-mini-link:hover { color: #fff; }
.itb-footer__disclaimer {
  margin: 1.75rem 0 0;
  font-size: .72rem;
  line-height: 1.6;
  color: rgba(232, 227, 239, .38);
}
@media screen and (max-width: 991px) {
  .itb-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .itb-footer__col--brand { grid-column: 1 / -1; max-width: none; }
}
@media screen and (max-width: 600px) {
  .itb-footer { padding: 3.5rem 7% 2rem; }
  .itb-footer__grid { grid-template-columns: 1fr; }
  .itb-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* itb-footer brand logo (white version over dark footer) */
.itb-footer__brand { text-decoration: none; }
.itb-footer__logo {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Work-list product titles: sentence case (lowercase + first letter uppercase) */
.project-title .heading-regular {
  text-transform: lowercase;
}
.project-title .heading-regular::first-letter {
  text-transform: uppercase;
}

/* Hero background video inside .carousel-wrapper (below the purple overlay) */
.carousel-wrapper .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* === Marquee infinito (section_sense) — animación CSS pura === */
@keyframes itb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes itb-marquee-rev {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
.section_sense .sense_line-row {
  animation: itb-marquee 32s linear infinite;
  will-change: transform;
}
.section_sense .sense_line-row-reverse {
  animation: itb-marquee-rev 32s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .section_sense .sense_line-row,
  .section_sense .sense_line-row-reverse { animation: none; }
}

/* === Process section: show interface videos COMPLETE inside the boxes === */
.section-home-process .process_item-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
  padding: 1rem;
  box-sizing: border-box;
}
.section-home-process .process_item-image_container,
.section-home-process .process_item-image_container.step-3 {
  width: 100%;
  height: 100%;
}

/* === Hero heading gradient text === */
.heading-hero-2.is-gradient {
  background-image: linear-gradient(100deg, #1f1d2b 0%, #2e2540 42%, #5c4fd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* === button-2: white border on hover === */
.button-2:hover {
  border-color: #ffffff !important;
}

/* Back Office mockups: keep them at the original mockup size (not full-bleed) */
.home-routines_image {
  width: 661px;
  max-width: 100%;
  height: auto;
}

/* ============================================================
   Testimonial slider (Sofía/Brizeida) — responsive en mobile.
   En ≤767px se apila todo: imagen arriba, luego encabezado →
   cita → bloque de stats en vertical (el divisor pasa de borde
   izquierdo a borde superior). Antes a 480-767 quedaba en doble
   2-columnas (imagen|texto y cita|stats), demasiado apretado.
   ============================================================ */
@media screen and (max-width: 767px) {
  .single-testimonial_componenet {
    grid-template-columns: 1fr;
    grid-row-gap: 1.5rem;
    padding: 1.25rem;
  }

  .single-testimonial_grid {
    grid-template-columns: 1fr;
    grid-row-gap: 1rem;
    padding-top: 1.25rem;
  }

  .padding-left.padding-medium.is--single-testimonial {
    border-left: 0;
    border-top: 1px solid #e8e3ef;
    padding-left: 0;
    padding-top: 1.25rem;
  }

  .single-testimonial_image-wrapper,
  .single-testimonial_image-wrapper.shadow {
    margin-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .testimonial-slider_arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .single-testimonial_componenet {
    padding: 1rem;
  }
}

/* ============================================================
   Navbar: botones (.button-2) más pequeños en mobile, para que
   "Iniciar sesión" + "Comprar" + el menú hamburguesa quepan bien.
   ============================================================ */
@media screen and (max-width: 767px) {
  .button-2 {
    padding: .55rem .8rem;
    font-size: .9rem;
    border-radius: .75rem;
  }
}

@media screen and (max-width: 479px) {
  .button-2 {
    padding: .45rem .6rem;
    font-size: .8rem;
    border-radius: .6rem;
  }
}

/* ============================================================
   Navbar mobile — UI/UX (≤767): jerarquía de acciones + menú
   desplegable tipo "sheet". Todo scopeado a .navbar-2 para no
   tocar los botones del hero.
   ============================================================ */
@media screen and (max-width: 767px) {
  /* Logo más compacto y barra con aire */
  .navbar-2 .logo-wrapper { width: 8rem; }
  .navbar-2 .navbar-grid { grid-column-gap: .4rem; column-gap: .4rem; }

  /* Acción primaria: "Comprar" sólido en el violeta de marca */
  .navbar-2 .button-2[href$="/shop/"] {
    background-color: #5c4fd6;
    border-color: #5c4fd6;
  }
  .navbar-2 .button-2[href$="/shop/"] .text-button { color: #fdfbf6; }

  /* Acción secundaria: "Iniciar sesión" como ghost (sin borde) */
  .navbar-2 .button-2[href$="/login"] {
    background-color: #0000;
    border-color: #0000;
    padding-left: .35rem;
    padding-right: .35rem;
  }

  /* Hamburguesa con área táctil clara */
  .navbar-2 .hamburger {
    border-radius: .6rem;
    padding: .35rem;
  }

  /* Menú desplegable como panel elegante */
  .navbar-2 .nav-menu-2 {
    border: 1px solid #ece7f7;
    box-shadow: 0 14px 34px #1f1d2b1f;
    margin-top: .5rem;
    padding: .75rem;
    transform: none;
  }
  .navbar-2 .link-wrapper {
    grid-row-gap: .15rem;
    align-items: stretch;
    width: 100%;
  }
  .navbar-2 .nav-link-2 {
    border-radius: .75rem;
    width: 100%;
    margin: 0;
    padding: .85rem 1rem;
    font-size: 1.05rem;
    text-align: center;
    transition: background-color .15s, color .15s;
  }
  .navbar-2 .nav-link-2:hover,
  .navbar-2 .nav-link-2:active {
    background-color: #f2eefc;
    color: #5c4fd6;
  }
}

@media screen and (max-width: 479px) {
  .navbar-2 .logo-wrapper { width: 7rem; }
  .navbar-2 .button-2[href$="/login"] {
    padding-left: .3rem;
    padding-right: .3rem;
  }
  /* A 479 el panel cream vive en .link-wrapper: ahí va la sombra */
  .navbar-2 .nav-menu-2 {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .navbar-2 .link-wrapper {
    border: 1px solid #ece7f7;
    box-shadow: 0 14px 34px #1f1d2b1f;
    padding: .75rem;
  }
}
