<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('normalize.css');
@import url('grid.css');
:root {
  --color-gray-25: #fcfcfd;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f2f4f7;
  --color-gray-200: #eaecf0;
  --color-gray-300: #d0d5dd;
  --color-gray-400: #98a2b3;
  --color-gray-500: #667085;
  --color-gray-600: #475467;
  --color-gray-700: #344054;
  --color-gray-800: #1d2939;
  --color-gray-900: #101828;
  --primary-main: #5e00cc;
  --primary-main-50: #f8f7ff;
  --primary-main-100: #ded6ff;
  --primary-main-200: #c2b0ff;
  --primary-main-300: #ab8eff;
  --primary-main-400: #9268ff;
  --primary-main-500: #7d45f4;
  --primary-main-600: #6821d9;
  --primary-main-700: #5000b4;
  --primary-main-800: #3b008b;
  --primary-main-900: #23005c;
  --color-yellow: #fcb90d;
  --color-yellow-50: #fef9e2;
  --color-yellow-100: #fdeeb5;
  --color-yellow-200: #fce385;
  --color-yellow-300: #fcd953;
  --color-yellow-400: #fccf2f;
  --color-yellow-500: #fcc616;
  --color-yellow-600: #fcb80d;
  --color-yellow-700: #d1990c;
  --color-yellow-800: #a77100;
  --color-yellow-900: #512200;
  --color-magenta: #d70079;
  --color-coffe: #c4ad9c;
  --color-coffe-50: #f9f8f7;
  --color-blue: #d3ddff;
  --color-green-50: #ecfdf3;
  --color-green-100: #d1fadf;
  --color-green-600: #039855;
  --color-green-700: #027a48;
  /* Mobile */
  --text-sm: 0.88rem;
  --text-lg: 1.13rem;
  --text-xl: 1.1rem;
  --text-display-xs: 1.125rem;
  --text-size-30: 1.5rem;
  --text-display-md: 1.88rem;
}

/* --- General styles --- */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f7f6;
}

main {
  background-image: url('/landing/img/bg.webp');
  background-position: center 480px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transform: translate3d(0, 0, 0);
  transition: background-position 0.1s linear;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--color-gray-900);
}

p {
  color: var(--color-gray-600);
}

a {
  transition: background-color 0.3s ease-in-out;
}

/* --- btn --- */
.btn {
  background: white;
  color: var(--color-gray-600);
  padding: 0.625rem 1.125rem;
  border-radius: 1.38rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  box-shadow: inset 0 0 0 1px var(--color-gray-300);
  justify-content: center;
}

.btn:hover {
  background-color: var(--primary-main-50);
}

.btn.btn-yellow {
  background-color: var(--color-yellow);
  color: black;
  box-shadow: none;
}

.btn.btn-yellow-light {
  background-color: var(--color-yellow-50);
  color: black;
  box-shadow: none;
}
.btn.btn-yellow-light:hover {
  background-color: var(--color-yellow-100);
}

.btn.btn-yellow:hover {
  background-color: var(--color-yellow-500);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: var(--text-lg);
  border-radius: 1.88rem;
}

.contact-tag,
.title-tag {
  font-weight: 600;
  color: var(--primary-main);
  text-align: center;
}

/* --- Dialog --- */
.dialog {
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(52, 64, 84, 0.7);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  display: none;
}

@keyframes keyf-dialog {
  from {
    display: flex;
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dialog.active {
  animation: keyf-dialog 300ms;
  display: flex;
}

.dialog-window {
  width: 500px;
  border-radius: 1rem;
  background-color: white;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.8s ease-in-out;
}

@keyframes keyf-dialog-win {
  0% {
    transform: scale(0.7) translateY(-2rem);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

.dialog.active .dialog-window {
  animation: keyf-dialog-win 400ms;
}

.dialog-window h2 {
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.dialog-window .dialog-close {
  position: absolute;
  background-image: url('/landing/img/icons/x-close.svg');
  background-position: center center;
  background-color: white;
  background-repeat: no-repeat;
  height: 38px;
  width: 38px;
  right: 1rem;
  top: 1rem;
  border-radius: 2rem;
  cursor: pointer;
}

.dialog-window .dialog-close:hover {
  background-color: var(--primary-main-50);
}

.dialog-window img.icon {
  background: var(--color-green-100);
  border: 8px solid var(--color-green-100);
  box-shadow: 0 0 0 8px var(--color-green-50);
  width: 44px;
  height: 44px;
}

/* --- Sections --- */
.blq {
  padding: 2.5rem 0;
}

.blq h2 {
  font-size: var(--text-display-md);
  text-align: center;
  font-weight: 600;
  margin: 0.75rem 0;
}

/* --- Alerts --- */

.alerts {
  background-color: var(--primary-main);
  color: white;
  width: 100%;
  display: block;
  font-size: 14px;
  padding: 0.5rem;
  z-index: 1;
}

.on-menu .alerts {
  display: none;
}

.alerts .container {
  display: flex;
  gap: 1rem;
}
.alert-title {
  color: var(--primary-main-50);
  margin-bottom: 4px;
  font-weight: 600;
}
.alert-info {
  color: var(--primary-main-100);
}

/* --- Header --- */
.header {
  border-bottom: 1px solid var(--color-gray-100);
  background-color: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0px;
  position: fixed;
  width: 100%;
  z-index: 60;
  top: 0px;
  left: 0px;
  transition: background-color 0.4s ease-in-out;
}

.on-menu .header {
  background-color: rgba(255, 255, 255, 1);
}

.header .nav.container {
  min-height: 4.5rem;
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  display: flex;
  align-content: center;
  align-items: center;
}

.header .top-actions {
  padding: 0px;
  display: inline-block;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.header .top-actions .btn {
  display: none;
  font-size: var(--text-sm);
}

/* Menu  mobile */
.header .btn-menu-mobile {
  height: 2.375rem;
  width: 2.375rem;
  background-color: white;
  border-radius: 1.5rem;
  background-image: url('/landing/img/icons/menu-01.svg');
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  transition: background-color 0.4s ease-in-out;
  background-size: 1.5rem 1.5rem;
}

.header .btn-menu-mobile:hover:active {
  background: var(--primary-main-100);
}

.on-menu .header .btn-menu-mobile {
  transform: rotate(90deg);
  background-image: url('/landing/img/icons/x-close.svg');
  background-size: 2rem 2rem;
}

.on-menu {
  overflow: hidden;
}

.header .section-menu {
  flex-direction: column;
  position: fixed;
  flex-grow: 1;
  width: 0px;
  height: 0px;
  z-index: 11;
  top: 0rem;
  right: 2rem;
  background: rgb(255, 255, 255);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  opacity: 0.1;
  transform: scale(0.6);
  border-radius: 10rem;
}

.on-menu .header .section-menu {
  top: 4.5rem;
  right: 0px;
  border-radius: 0rem;
  transform: scale(1);
  opacity: 1;
  display: flex;
  height: calc(100dvh - 4.5rem);
  width: 100%;
  overflow: auto;
  z-index: 80;
}

.header .mobile-actions {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.header .mobile-actions .btn {
  width: 100%;
}

/* Top nav */
.header nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-content: start;
  align-items: start;
}

.header nav ul {
  padding: 1.5rem 0;
  margin: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
}

.header nav ul li {
  padding: 0.75rem 0.5rem;
  display: block;
}

.header nav ul .bar {
  background: var(--color-gray-200);
  height: 2px;
  margin: 0 1rem;
}

.header nav ul li a {
  color: var(--color-gray-600);
  font-weight: 600;
  text-decoration: none;
  padding: 0.15rem 0.5rem;
  margin: 0 0.25rem;
}

.header nav ul li a.item-disable {
  color: var(--color-gray-300);
}

.header nav ul li a.active,
.header nav ul li a:hover {
  color: var(--primary-main);
}

/* Menu desktop actions */
.header .btn-menu-desktop {
  height: 2.5rem;
  width: 2.5rem;
  background-color: var(--color-yellow-50);
  border-radius: 1.5rem;
  background-image: url('/landing/img/icons/user-01.svg');
  background-repeat: no-repeat;
  background-position: center center;
  display: none;
  transition: background-color 0.4s ease-in-out;
  background-size: 1.5rem 1.5rem;
}

.header .btn-menu-desktop:hover {
  background-color: var(--color-yellow-100);
}

.header .menu-desktop {
  position: absolute;
  background-color: white;
  top: 4rem;
  right: 0px;
  border-radius: 8px;
  box-shadow:
    0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  width: 12rem;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.header .menu-desktop.animate {
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
}

.header .menu-desktop.active {
  display: flex;
}

.header .menu-desktop .btn-yellow {
  background-color: var(--color-yellow-50);
}

.header .menu-desktop .btn-yellow:hover {
  background-color: var(--color-yellow-100);
}

/* --- Hero --- */
.hero {
  margin-top: 0rem;
  padding-top: 11.5rem;
  width: 100%;
  overflow: hidden;
  background: #f9f8f7;
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 2.75rem;
  width: 100%;
  margin: 0px;
  text-align: center;
  max-width: 100%;
  font-weight: 600;
}

.hero h1 span {
  background-image: url('/landing/img/line.webp');
  background-size: 90% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero p {
  font-size: var(--text-xl);
  margin: 1.5rem 0 2.5rem 0;
  display: block;
  text-align: center;
}

.hero .btn-lg {
  margin-bottom: 1rem;
  width: 100%;
  padding: 0.625rem 1rem;
}

.hero .btn-lg.btn-yellow {
  box-shadow: none;
}

/* --- Contact --- */
.contact {
  background: linear-gradient(180deg, rgba(244, 242, 241, 1) 0%, rgba(244, 242, 241, 0) 100%);
}

.contact .container {
  display: flex;
  justify-content: center;
}

.contact-inner {
  width: 768px;
  max-width: 100%;
}

.contact-inner p {
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  text-align: center;
}

.contact-form {
  padding: 2.5rem 0 0 0;
  max-width: 100%;
}

.contact-form form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  column-gap: 1.5rem;
  row-gap: 1rem;
}

.contact-form form .hs_acepto_terminos_y_condiciones,
.contact-form form .hs_submit {
  grid-column: 1/-1;
}

.contact-form .hs-form-field label,
.contact-form legend.hs-field-desc {
  color: var(--color-gray-700);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0.25rem;
}

.contact-form input[type='text'],
.contact-form input[type='number'],
.contact-form input[type='email'],
.contact-form select {
  border-radius: 8px;
  border: 1px solid var(--color-gray-300);
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  height: 40px;
  padding: 0 0.5rem;
  width: 100%;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-form select {
  background-image: url('/landing/img/icons/chevron-down.svg');
  background-position: calc(100% - 0.4rem) center;
  background-repeat: no-repeat;
  padding-right: 2rem !important;
}

.contact-form input[type='email'] {
  background-image: url('/landing/img/icons/mail-01.svg');
  background-position: 0.65rem center;
  background-repeat: no-repeat;
  padding-left: 2.5rem !important;
}

.contact-form input[type='text']:hover,
.contact-form input[type='number']:hover,
.contact-form input[type='email']:hover,
.contact-form select:hover,
.contact-form input[type='text']:focus,
.contact-form input[type='email']:focus,
.contact-form input[type='number']:focus,
.contact-form select:focus {
  border-color: var(--primary-main-400);
  outline: none;
  box-shadow:
    0px 0px 0px 4px #ded6ff,
    0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.contact-form input[type='text'].error,
.contact-form input[type='email'].error,
.contact-form select.error {
  border-color: #fda29b;
}

.contact-form input[type='text']::placeholder,
.contact-form input[type='email']::placeholder,
.contact-form select {
  color: var(--gray-500, #667085);
}

.contact-form form ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.contact-form label.hs-error-msg {
  color: #d92d20;
  font-size: 80%;
  font-weight: normal;
}

.contact-form .hs_error_rollup {
  text-align: center;
  color: #d92d20;
  grid-column: 1/-1;
}

.contact-form .hs-form-booleancheckbox label {
  display: flex;
  gap: 0.75rem;
  justify-content: start;
  font-weight: normal;
}

.contact-form input[type='checkbox'] {
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  margin-top: 0.25rem;
}

.contact-form a {
  color: var(--primary-main, #5e00cc);
  text-decoration: none;
  font-weight: 600;
}

.contact-form form .actions {
  text-align: center;
}

.contact-form form .hs_submit input[type='submit'] {
  background: #fcb90d;
  color: black;
  font-weight: 600;
  border: none;
  border-radius: 99px !important;
  padding: 0.6rem 1.5rem 0.6rem 3rem;
  cursor: pointer;
  margin-top: 1rem;
  background-image: url('/landing/img/icons/send-01.svg');
  background-position: 1rem center;
  background-repeat: no-repeat;
}

.contact-form
  .hs_0-2\/numero_de_identificacion_tributaria__nit_.hs-0-2\/numero_de_identificacion_tributaria__nit_.hs-fieldtype-number.field.hs-form-field {
  margin-top: 1rem;
}

.contact-form .hs-dependent-field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .submitted-message {
  font-size: 1.5rem;
  background: #fcb90d;
  color: black;
  text-align: center;
  border-radius: 1rem;
  padding: 1rem;
}

/* --- How To --- */
.how-to .items {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  width: 55rem;
  max-width: 100%;
  margin: 6rem auto 0 auto;
  gap: 3rem;
}

.how-to .items .item {
  text-align: center;
  font-size: var(--text-lg);
}

.how-to .items .item h3 {
  font-size: var(--text-display-xs);
  font-weight: 600;
  margin: 1rem 0 0 0;
}

.how-to .items .item p {
  margin: 0px;
}

.icon {
  background: var(--primary-main-200);
  border: 8px solid var(--primary-main-200);
  width: 40px;
  height: 40px;
  border-radius: 28px;
  box-shadow: 0 0 0 8px var(--primary-main-100);
}

/* ---  Products --- */
.products {
  background: linear-gradient(190deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.products h2 {
  margin-bottom: 5rem;
}

.products-items {
  height: 560px;
  width: 100%;
  padding: 0.25rem 0px;
  overflow: hidden;
}

.products-items .item {
  background-repeat: no-repeat;
  background-position: -160px -30px;
  background-size: 1000px;
  height: 100%;
  justify-content: space-between;
  border-radius: 1rem;
  display: inline-flex;
  float: left;
  flex-direction: row;
  transition: all 0.3s ease-in-out;
  width: 18%;
  margin: 0 1%;
  opacity: 1;
}

.products-items .item:hover {
  background-position: -170px -40px;
  background-size: 1020px;
}

.products-items.active .item {
  overflow: hidden;
  width: 0px;
  opacity: 0;
  margin: 0px;
}

.products-items .item.active {
  width: 100%;
  opacity: 1;
  background-position: -120px -240px;
  background-size: 1600px;
}

.products-items .item-loyal {
  background-image: url('/landing/img/laas-exp.webp');
}

/* produc-2 */
.products-items .item-btn {
  background-image: url('/landing/img/boton-exp.webp');
  background-position: -220px 0px;
  background-size: 840px;
}

.products-items .item-btn:hover {
  background-position: -230px -10px;
  background-size: 860px;
}

.products-items .item-btn.active {
  background-position: -120px -120px;
  background-size: 1200px;
}

/* product-3 */
.products-items .item-store {
  background-image: url('/landing/img/tienda-exp.webp');
  background-position: -100px -10px;
  background-size: 900px;
}

.products-items .item-store:hover {
  background-image: url('/landing/img/tienda-exp.webp');
  background-position: -110px -20px;
  background-size: 920px;
}

.products-items .item-store.active {
  background-position: 0px -110px;
  background-size: 1180px;
}

/* product-4 */
.products-items .item-plus {
  background-image: url('/landing/img/incentivos-exp.webp');
  background-position: -250px 0px;
  background-size: 830px;
}

.products-items .item-plus:hover {
  background-position: -260px -10px;
  background-size: 850px;
}

.products-items .item-plus.active {
  background-position: 0px -120px;
  background-size: 1160px;
}

/* product-5 */
.products-items .item-services {
  background-image: url('/landing/img/medios-exp.webp');
  background-position: -120px 0px;
  background-size: 820px;
}

.products-items .item-services:hover {
  background-position: -120px -10px;
  background-size: 840px;
}

.products-items .item-services.active {
  background-position: 0px -10px;
  background-size: 1160px;
}

/* products desc */
.products-items .item .item-intro {
  display: flex;
  padding: 1.5rem;
  height: 100%;
  flex-direction: column;
  width: 16rem;
  max-width: 100%;
  justify-content: space-between;
  cursor: pointer;
}

.products-items .item .item-intro h3 {
  font-size: var(--text-size-30);
  line-height: 2.38rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.products-items .item .item-intro .btn-amp {
  color: white;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  transition: all 0.1s ease-in-out;
  justify-content: flex-start;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.products-items .item .item-intro .btn-amp .btn-amp-plus {
  display: inline-block;
}

.products-items .item .item-intro .btn-amp .btn-amp-minus {
  display: none;
}

.products-items .item .item-intro .btn-amp i {
  background-image: url('/landing/img/icons/arrow-narrow-right.svg');
  height: 24px;
  width: 24px;
  transition: all 0.3s ease-in-out;
}

/* active */
.products-items .item.active .item-intro .btn-amp {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.products-items .item.active .item-intro .btn-amp .btn-amp-plus {
  display: none;
}

.products-items .item.active .item-intro .btn-amp .btn-amp-minus {
  display: inline-block;
}

.products-items .item.active .item-intro .btn-amp i {
  transform: rotate(180deg);
}

.products-items .item .item-amp {
  display: flex;
  flex-direction: column;
  color: white;
  background: rgba(73, 79, 87, 0.5);
  backdrop-filter: blur(8px);
  justify-content: space-between;
  overflow: hidden;
  width: 0px;
  opacity: 0;
  padding: 0rem;
  transform: translateX(5rem);
  transition: all 0.4s ease-in-out;
  transition-delay: 10ms;
}

.products-items .item.active .item-amp {
  width: 27rem;
  padding: 2.5rem;
  opacity: 1;
  transform: translateX(0px);
}

.products-items .item .item-amp h4 {
  color: white;
  font-size: var(--text-display-xs);
  line-height: 2rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.products-items .item .item-amp ul {
  margin-left: 0px;
  padding-left: 1rem;
  font-size: var(--text-lg);
  line-height: 1.75rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.products-items .item .item-amp .actions {
  display: flex;
  justify-content: space-between;
}

/* .item-loyal:hover {
  display: block;
  width: 80%;
  background-position: 0 0;
} */
/* --- Questions --- */
.questions {
  background: white;
}

.questions h2 {
  margin: 0 0 1.25rem 0;
}

.questions .questions-info {
  text-align: center;
  font-size: var(--text-xl);
  margin-bottom: 4rem;
}

.questions .accordion {
  list-style: none;
  margin: 0px;
  padding: 0px;
  width: 48rem;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.questions .accordion .accordion-item {
  border-top: 1px solid var(--color-gray-200);
  padding: 1rem 0;
}

.questions .accordion .accordion-item h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-gray-900);
  padding: 0px 4rem 0 0;
  position: relative;
  cursor: pointer;
  margin: 0px;
}

.questions .accordion .accordion-item h3 i {
  height: 24px;
  width: 24px;
  display: inline-block;
  background-image: url('/landing/img/icons/plus-circle.svg');
  position: absolute;
  top: 0px;
  right: 0px;
  transition: all 0.3s ease-in-out;
}

.questions .accordion .accordion-item.active h3 i {
  transform: rotateZ(-180deg);
  background-image: url('/landing/img/icons/minus-circle.svg');
}

.questions .accordion .accordion-item .data {
  display: block;
  color: var(--color-gray-600);
  font-weight: 300;
  line-height: 1.5rem;
  font-size: 1rem;
  height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  margin-top: 0px;
}

.questions .accordion .accordion-item.active .data {
  margin-top: 1rem;
}

.questions .accordion .accordion-item:first-child {
  border-top: none;
}

/* --- Brands --- */
.brands {
  background-color: rgb(249, 248, 247);
}

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 10));
  }
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, rgb(249, 248, 247) 0%, rgba(249, 248, 247, 0) 100%);
  content: '';
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  animation: scroll 24s cubic-bezier(0.35, -0.02, 0.61, 0.96) infinite;
  display: flex;
  width: calc(250px * 22);
  gap: 0rem;
}

.slider .slide {
  height: 100px;
  width: 250px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider .slide img {
  width: auto;
  height: 40px;
  display: inline-block;
}

.slider .slide img.logo-med {
  height: 50px;
}

.slider .slide img.logo-big {
  height: 60px;
}

.slider .slide img.logo-large {
  height: 80px;
}

/* --- Wompi --- */
.wompi {
  background-color: white;
}

.wompi b {
  font-weight: 600;
}

.wompi .container {
  padding-inline: 1rem;
}

.wompi .flex {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  font-size: var(--text-xl);
}

.wompi .flex .wompi-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wompi .flex .wompi-col p {
  line-height: 1.88rem;
  margin: 0px;
}
.wompi .flex .wompi-col h3 {
  margin: 0px;
  font-weight: 600;
}
.wompi .flex .wompi-col h3 {
  font-size: var(--text-size-30);
  line-height: 2.38rem;
}
.wompi .flex .wompi-col h3 span {
  color: var(--primary-main);
  display: block;
}

.wompi .w-logo {
  text-align: center;
  margin-bottom: 1rem;
}

.wompi .w-logo img {
  max-width: 100%;
}

.wompi ul {
  margin: 0px;
  margin-top: -0.5rem;
  padding: 0px 0px 0px 1rem;
  list-style: none;
  color: var(--color-gray-600);
}
.wompi ul li {
  padding-block: 0.25rem;
  line-height: 1.88rem;
}

.wompi ul li::before {
  content: '';
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--color-gray-300);
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  margin-left: -1rem;
  margin-top: 0.65rem;
}

.wompi ul.alternative li::before {
  background-color: var(--primary-main);
}

/* --- Footer --- */
footer.blq {
  background: white;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.5rem;
}

footer .container {
  display: flex;
  flex-direction: column;
}

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

footer .top .extra {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

footer .top .social {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

footer .inc {
  display: flex;
  justify-content: end;
  position: relative;
  padding-top: 1rem;
}

footer .inc img {
  margin-top: 1rem;
  top: 0px;
  right: 0px;
  position: absolute;
}

footer .menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

footer .menu h2 {
  text-align: left;
  color: var(--color-gray-500);
  font-size: 0.875rem;
  font-family: Poppins;
  font-weight: 600;
  line-height: 1.25rem;
  margin-bottom: 1rem;
}

footer .menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

footer .menu ul li {
  color: var(--color-gray-600);
  font-size: var(--text-sm);
}

footer .menu ul li a,
footer .menu ul li .link {
  color: var(--color-gray-600);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  padding: 0 0 0.75rem 0;
  display: block;
}

footer .menu ul li .link-phone,
footer .menu ul li .link-email {
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  font-weight: 300;
  padding: 0px;
  line-height: 1.5rem;
}

footer .menu ul li a:hover {
  color: var(--primary-main);
}

.tag.tag-new {
  border-radius: 16px;
  background: var(--color-green-50);
  color: var(--color-green-700);
  font-size: 0.75rem;
  font-family: Poppins;
  font-weight: 500;
  line-height: 1.125rem;
  display: inline;
  padding: 0.125rem 0.5rem;
  align-items: center;
}

footer .legal {
  color: var(--color-gray-500);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-200);
  text-align: center;
}

/* -------------------------
  Responsive
---------------------------- */
@media (min-width: 768px) {
  /* --- How To --- */
  .how-to .items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .header nav ul li a {
    font-size: var(--text-sm);
  }
}

@media (min-width: 992px) {
  :root {
    --text-sm: 0.88rem;
    --text-lg: 1.13rem;
    --text-xl: 1.25rem;
    --text-display-xs: 1.5rem;
    --text-size-30: 1.88rem;
    --text-display-md: 2.25rem;
  }

  /* --- Hero --- */
  .blq.hero {
    margin-top: 0rem;
    padding-top: 15rem;
  }

  .hero h1 {
    font-size: 3.75rem;
    line-height: 4.5rem;
    width: 75rem;
    text-align: left;
  }

  .hero p {
    text-align: left;
  }

  .hero .btn-lg {
    width: auto;
    padding: 0.625rem 1.125rem;
    margin-right: 1rem;
  }

  /* --- Contact --- */
  /* --- How to --- */
  .how-to .items .item {
    margin-top: 0px;
  }

  .how-to .items .item h3 {
    margin: 1rem 0rem;
  }

  .how-to .items .item p {
    margin: 1rem 0;
  }

  /* --- Footer --- */
  footer .menu {
    flex-direction: row;
    gap: 3rem;
  }

  footer .inc {
    padding-top: 0rem;
  }

  footer .inc img {
    margin-top: 2rem;
  }
}

@media (min-width: 1200px) {
  .blq {
    padding: 5rem 0;
  }

  /* --- Header --- */
  .header {
    padding: 0px;
  }

  .header .nav.container {
    min-height: 5rem;
  }

  .header .btn-menu-mobile {
    display: none;
  }

  .header .section-menu {
    display: flex;
    flex-direction: row;
    position: relative;
    flex-grow: 1;
    width: auto;
    height: auto;
    z-index: 0;
    left: 0.5rem;
    top: 0rem;
    right: 0rem;
    background: rgba(255, 255, 255, 0);
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    border-radius: 0rem;
  }

  .header nav {
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
  }

  .header nav ul {
    padding: 0;
    margin: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    width: auto;
    height: auto;
  }

  .header nav ul li {
    padding: 0;
  }

  .header nav ul .bar {
    height: 1.75rem;
    margin: 0 0.5rem;
    width: 2px;
  }

  .header .mobile-actions {
    display: none;
  }

  .header .btn-menu-desktop {
    display: inline-block;
  }

  /* wompi */
  .wompi {
    padding-block: 7.5rem;
  }

  .wompi .container {
    padding-inline: 8.75rem;
  }
  .wompi .flex {
    margin-top: 5rem;
    gap: 10rem;
    flex-direction: row;
  }
  .wompi .w-logo {
    text-align: left;
  }

  .header .top-actions .btn {
    display: inline-block;
  }

  .header .top-actions .btn-menu-mobile {
    display: none;
  }
}

@media (min-width: 1400px) {
  .header nav ul li a,
  .header .top-actions .btn {
    font-size: 1rem;
  }

  .header .section-menu {
    left: 2rem;
  }
}

/* --- Responsive only mobile --- */
@media (max-width: 1200px) {
  .products-items {
    height: auto;
    width: 100%;
    padding: 0px;
    overflow: initial;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 2fr));
    gap: 1rem;
  }

  .products-items .item,
  .products-items .item-loyal,
  .products-items .item-btn,
  .products-items .item-store,
  .products-items .item-plus,
  .products-items .item-services {
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    width: auto;
    display: block;
  }

  .products-items .item:hover,
  .products-items .item-loyal:hover,
  .products-items .item-btn:hover,
  .products-items .item-store:hover,
  .products-items .item-plus:hover,
  .products-items .item-services:hover {
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .products-items .item .item-intro {
    height: auto;
    width: auto;
  }

  .products-items .item .item-amp {
    display: none;
  }
}

/* 0 to 768px */
@media (max-width: 768px) {
  .hero-actions {
    display: flex;
    flex-direction: column-reverse;
  }

  .products-items {
    grid-template-columns: repeat(1, minmax(0, 2fr));
  }
}

/* -------- ANIMATE --------- */
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* FadeInDown */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* FadeInRight */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
</pre></body></html>