@font-face {
  font-family: "Ibercaja";
  src: url("../fonts/Ibercaja-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ibercaja";
  src: url("../fonts/Ibercaja-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ibercaja";
  src: url("../fonts/Ibercaja-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Ibercaja";
  src: url("../fonts/Ibercaja-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ibercaja";
  src: url("../fonts/Ibercaja-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ibercaja", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 2.125rem;
  }
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.8rem;
  margin-top: 0rem;
}
@media (max-width: 767.98px) {
  h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 575.98px) {
  h3 {
    font-size: 1.2rem;
  }
}

h4 {
  font-size: 1.75rem;
}
@media (max-width: 767.98px) {
  h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  h4 {
    font-size: 1.375rem;
  }
}

h5 {
  font-size: 1.5rem;
}
@media (max-width: 767.98px) {
  h5 {
    font-size: 1.3125rem;
  }
}
@media (max-width: 575.98px) {
  h5 {
    font-size: 1.1875rem;
  }
}

h6 {
  font-size: 1.25rem;
}
@media (max-width: 767.98px) {
  h6 {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  h6 {
    font-size: 1rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --mkt-color-primary: #097aff;
  --mkt-color-secondary: #ff4242;
  --mkt-color-accent: #ff4242;
  --mkt-color-error: #da1133;
  --mkt-color-light: #fbfbfb;
  --mkt-color-dark: #000000;
  --mkt-color-body: #000000;
}

html {
  font-size: 14px;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: "Ibercaja", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #ff4242;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mkt-text-primary {
  color: #097aff;
}

.mkt-text-secondary {
  color: #ff4242;
}

.mkt-text-accent {
  color: #ff4242;
}

.mkt-text-white {
  color: #ffffff;
}

.mkt-bg-primary {
  background-color: #097aff;
}

.mkt-bg-secondary {
  background-color: #ff4242;
}

.mkt-bg-accent {
  background-color: #ff4242;
}

.mkt-container {
  width: min(100% - 2rem, 1430px);
  margin-inline: auto;
}

.mkt-container-fluid {
  width: calc(100% - 2rem);
  margin-inline: auto;
}

.mkt-grid {
  display: grid;
  gap: var(--mkt-grid-gap, 2rem);
}

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

.mkt-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mkt-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mkt-grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(var(--mkt-grid-item-min, 16rem), 1fr));
}

@media (max-width: 767.98px) {
  .mkt-grid--2,
  .mkt-grid--3,
  .mkt-grid--4 {
    grid-template-columns: 1fr;
  }
}
.mkt-section-space {
  padding-block-start: var(--mkt-section-space-top, var(--mkt-section-space, 6rem));
  padding-block-end: var(--mkt-section-space-bottom, var(--mkt-section-space, 6rem));
}

.mkt-section-space-sm {
  padding-block-start: 4rem;
  padding-block-end: 4rem;
}

.mkt-section-space-lg {
  padding-block-start: 8rem;
  padding-block-end: 8rem;
}

.site-topbar-wr {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem 2rem;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.8rem;
}
.site-topbar-wr .site-topbar-login-link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-topbar-wr .site-topbar-login-link:hover {
  color: #ff4242;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  color: #000000;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}
.site-header__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-header__brand-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo {
  display: block;
  width: 280px;
  height: auto;
  flex-shrink: 0;
}
.site-header__logo--text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-left: auto;
  flex: 1 1 auto;
}
.site-header__nav {
  flex: 0 1 auto;
}
.site-header__cta {
  flex: 0 0 auto;
}

.header-fixed .site-header__inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 2rem;
}
.header-fixed .site-header__inner .site-header__logo {
  width: 200px;
  max-width: 200px;
  height: auto;
}

@media (max-width: 991.98px) {
  .site-header__actions, .site-header__cta {
    display: none;
  }
}
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2.5rem 0 2.25rem;
}
.site-footer__row {
  display: flex;
  justify-content: center;
}
.site-footer__row + .site-footer__row {
  margin-top: 2rem;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.site-footer__logo-svg {
  display: block;
  height: auto;
}
.site-footer__logo--emprendedores .site-footer__logo-svg {
  width: 10.25rem;
}
.site-footer__logo--ibercaja .site-footer__logo-svg {
  width: 8.75rem;
}
.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 575.98px) {
  .site-footer__meta {
    gap: 0.85rem 1.25rem;
    flex-direction: column;
  }
}
.site-footer__meta-text, .site-footer__legal-link {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.4;
}
.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  justify-content: center;
}
.site-footer__legal-links .site-footer__legal-link {
  text-decoration: none;
}
.site-footer__legal-links .site-footer__legal-link:hover, .site-footer__legal-links .site-footer__legal-link:focus {
  text-decoration: underline;
}

.site-desktop-navigation {
  display: block;
}
.site-desktop-navigation .mkt-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-desktop-navigation .mkt-menu .mkt-menu__item {
  position: relative;
  margin: 0;
}
.site-desktop-navigation .mkt-menu .mkt-menu__item .mkt-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.site-desktop-navigation .mkt-menu .mkt-menu__item .mkt-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}
.site-desktop-navigation .mkt-menu .mkt-menu__item .mkt-menu__link .mkt-menu__caret {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.site-desktop-navigation .mkt-menu .mkt-menu__item.is-current > .mkt-menu__link, .site-desktop-navigation .mkt-menu .mkt-menu__item.current-menu-item > .mkt-menu__link, .site-desktop-navigation .mkt-menu .mkt-menu__item.current_page_item > .mkt-menu__link, .site-desktop-navigation .mkt-menu .mkt-menu__item.current-menu-ancestor > .mkt-menu__link, .site-desktop-navigation .mkt-menu .mkt-menu__item.current-page-ancestor > .mkt-menu__link {
  color: #097aff;
}
.site-desktop-navigation .mkt-menu .mkt-menu__item.is-current > .mkt-menu__link::after, .site-desktop-navigation .mkt-menu .mkt-menu__item.current-menu-item > .mkt-menu__link::after, .site-desktop-navigation .mkt-menu .mkt-menu__item.current_page_item > .mkt-menu__link::after, .site-desktop-navigation .mkt-menu .mkt-menu__item.current-menu-ancestor > .mkt-menu__link::after, .site-desktop-navigation .mkt-menu .mkt-menu__item.current-page-ancestor > .mkt-menu__link::after {
  background: #097aff;
}
.site-desktop-navigation .mkt-menu__submenu {
  position: absolute;
  top: calc(100% + 1rem);
  display: none;
  min-width: 220px;
  margin: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(9, 122, 255, 0.12);
  padding: 0;
}
.site-desktop-navigation .mkt-menu__link--depth-0 {
  color: #000000;
  font-weight: 400;
}
.site-desktop-navigation .mkt-menu__link--depth-1,
.site-desktop-navigation .mkt-menu__link--depth-2 {
  color: #000000;
}
.site-desktop-navigation .mkt-menu__link--depth-1:hover,
.site-desktop-navigation .mkt-menu__link--depth-2:hover {
  background-color: #ff4242;
  color: #ffffff;
}

.mkt-menu__submenu--depth-2 {
  top: 0;
  left: 100%;
  margin-left: 0;
}

.mkt-menu__item.is-align-right > .mkt-menu__submenu {
  right: 0;
  left: auto;
}

.mkt-menu__item.is-open-left > .mkt-menu__submenu--depth-2 {
  right: 100%;
  left: auto;
  margin-right: 0;
  margin-left: 0;
}

.mkt-menu__item.is-open > .mkt-menu__submenu {
  display: block;
}

.mkt-menu__submenu .mkt-menu__item {
  width: 100%;
}

.mkt-menu__submenu .mkt-menu__link {
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 1rem;
}

.mkt-menu__submenu .mkt-menu__caret {
  display: none;
}

@media (max-width: 991.98px) {
  .site-desktop-navigation {
    display: none;
  }
}
.site-mobile-menu-toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.site-mobile-menu-toggle__line {
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-mobile-menu-toggle__line:nth-child(1) {
  transform: translateY(-7px);
}

.site-mobile-menu-toggle__line:nth-child(3) {
  transform: translateY(7px);
}

.site-mobile-menu-toggle.is-open .site-mobile-menu-toggle__line:nth-child(1) {
  transform: rotate(45deg);
}

.site-mobile-menu-toggle.is-open .site-mobile-menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-mobile-menu-toggle.is-open .site-mobile-menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg);
}

.site-mobile-navigation {
  display: none;
  background: #ffffff;
  border-top: 1px solid rgba(9, 122, 255, 0.1);
}
.site-mobile-navigation__cta {
  display: flex;
  justify-content: center;
  padding: 1rem 0 1.5rem;
}

.mkt-mobile-menu,
.mkt-mobile-menu__submenu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mkt-mobile-menu {
  padding: 0.75rem 0 1rem;
}

.mkt-mobile-menu__item {
  border-bottom: 1px solid rgba(9, 122, 255, 0.08);
}

.mkt-mobile-menu__row {
  display: flex;
  align-items: stretch;
}

.mkt-mobile-menu__link {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-height: 48px;
  color: #097aff;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.mkt-mobile-menu__link--depth-1 {
  padding-left: 1rem;
}

.mkt-mobile-menu__link--depth-2 {
  padding-left: 2rem;
}

.mkt-mobile-menu__item.is-current > .mkt-mobile-menu__row > .mkt-mobile-menu__link,
.mkt-mobile-menu__link:hover {
  color: #ff4242;
}

.mkt-mobile-menu__submenu-toggle {
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #097aff;
  background: transparent;
  border: 0;
}

.mkt-mobile-menu__caret {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.mkt-mobile-menu__submenu-toggle.is-open .mkt-mobile-menu__caret {
  transform: rotate(-135deg) translateY(-1px);
}

@media (max-width: 991.98px) {
  .site-mobile-menu-toggle {
    position: relative;
    display: inline-flex;
  }
  .site-mobile-navigation:not([hidden]) {
    display: block;
  }
}
.mkt-privacy-overlay[hidden],
.mkt-privacy-trigger[hidden] {
  display: none !important;
}

.mkt-privacy-overlay {
  pointer-events: none;
  overflow-y: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.mkt-privacy-overlay .mkt-privacy-panel {
  pointer-events: auto;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 4px;
  max-width: 720px;
  width: 90%;
}
.mkt-privacy-overlay .mkt-privacy-panel .mkt-privacy-panel-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.mkt-privacy-overlay .mkt-privacy-panel .mkt-privacy-panel-text {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.mkt-privacy-overlay .mkt-privacy-panel .cookie-config-wr {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cookie-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.cookie-option__input {
  flex: 0 0 auto;
  margin-top: 0.15rem;
}
.cookie-option__label {
  font-size: 0.9rem;
}

.mkt-privacy-trigger {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #ffffff;
  background: #097aff;
  border-radius: 40%;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.3;
}
.mkt-privacy-trigger .mkt-privacy-trigger-icon {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}
.mkt-privacy-trigger:hover {
  opacity: 1;
}

.mkt-info-developer {
  background: #000000;
  color: #ffffff;
  opacity: 0.1;
  font-size: 0.8em;
  padding: 0.25rem 2rem;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
.mkt-info-developer:hover {
  opacity: 0.9;
}

.mkt-accordion {
  display: grid;
  gap: 1rem;
}
.mkt-accordion__item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(9, 122, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 1rem 2rem rgba(9, 122, 255, 0.06);
}
.mkt-accordion__heading {
  margin: 0;
}
.mkt-accordion__trigger {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 1.35rem;
  border: 0;
  color: #097aff;
  background: transparent;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.mkt-accordion__trigger:hover, .mkt-accordion__trigger:focus {
  color: #097aff;
  background: rgba(255, 66, 66, 0.2);
}
.mkt-accordion__trigger:focus-visible {
  outline: 3px solid rgba(255, 66, 66, 0.55);
  outline-offset: -3px;
}
.mkt-accordion__title {
  flex: 1;
}
.mkt-accordion__icon {
  position: relative;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}
.mkt-accordion__icon::before, .mkt-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.mkt-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.mkt-accordion__panel {
  border-top: 1px solid rgba(9, 122, 255, 0.1);
}
.mkt-accordion__content {
  padding: 1.2rem 1.35rem 1.35rem;
}
.mkt-accordion__content > :last-child {
  margin-bottom: 0;
}
.mkt-accordion__item.is-open .mkt-accordion__trigger {
  background: rgba(255, 66, 66, 0.16);
}
.mkt-accordion__item.is-open .mkt-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.mkt-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.mkt-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(9, 122, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
}
.mkt-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.15rem;
  margin-right: 0.7rem;
  color: rgba(9, 122, 255, 0.35);
}
.mkt-breadcrumbs__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mkt-breadcrumbs__link:hover, .mkt-breadcrumbs__link:focus {
  color: #097aff;
}
.mkt-breadcrumbs__current {
  color: #097aff;
  font-weight: 700;
}

.mkt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.mkt-button:hover, .mkt-button:focus {
  text-decoration: none;
}
.mkt-button:focus-visible {
  outline: 3px solid rgba(255, 66, 66, 0.5);
  outline-offset: 3px;
}
.mkt-button:disabled, .mkt-button[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.6;
}
.mkt-button--sm {
  min-height: 2.4rem;
  padding: 0.6rem 0.95rem;
  font-size: 0.95rem;
}
.mkt-button--lg {
  min-height: 3.4rem;
  padding: 1rem 2.5rem;
}
.mkt-button--primary {
  color: #ffffff;
  background: #097aff;
  border-color: #097aff;
}
.mkt-button--primary:hover, .mkt-button--primary:focus {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}
.mkt-button--secondary {
  color: #097aff;
  background: #ff4242;
  border-color: #ff4242;
}
.mkt-button--secondary:hover, .mkt-button--secondary:focus {
  color: #ffffff;
  background: #097aff;
  border-color: #097aff;
}
.mkt-button--outline {
  color: #097aff;
  background: transparent;
  border-color: #097aff;
}
.mkt-button--outline:hover, .mkt-button--outline:focus {
  color: #ffffff;
  background: #097aff;
  border-color: #097aff;
}
.mkt-button--black {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}
.mkt-button--black:hover, .mkt-button--black:focus {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.82);
  border-color: rgba(0, 0, 0, 0.82);
}
.mkt-button--outline-black {
  color: #000000;
  background: transparent;
  border-color: #000000;
}
.mkt-button--outline-black:hover, .mkt-button--outline-black:focus {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}
.mkt-button--ghost {
  color: #097aff;
  background: transparent;
  border-color: transparent;
}
.mkt-button--ghost:hover, .mkt-button--ghost:focus {
  color: #097aff;
  background: rgba(9, 122, 255, 0.08);
}

.mkt-button-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #097aff;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}
.mkt-button-icon--close::before, .mkt-button-icon--close::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 2px;
  background: currentColor;
}
.mkt-button-icon--close::before {
  transform: rotate(45deg);
}
.mkt-button-icon--close::after {
  transform: rotate(-45deg);
}

.mkt-category-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 30%);
  overflow: hidden;
  background: #ffffff;
  border-radius: 1.75rem;
  box-shadow: 0 1.5rem 3rem rgba(9, 122, 255, 0.08);
}
@media (max-width: 767.98px) {
  .mkt-category-card {
    grid-template-columns: minmax(0, 1fr);
  }
}
.mkt-category-card__content {
  padding: 2.2rem 3rem;
}
@media (max-width: 767.98px) {
  .mkt-category-card__content {
    padding: 2rem 1.5rem;
  }
}
.mkt-category-card__label {
  margin-bottom: 0.35rem;
  color: #ff4242;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
}
.mkt-category-card__title {
  margin-bottom: 1.5rem;
  color: #097aff;
  line-height: 1.05;
  font-weight: 500;
}
.mkt-category-card__description {
  max-width: 80%;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.mkt-category-card__criteria-title {
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: #000000;
}
.mkt-category-card__criteria-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.5;
}
.mkt-category-card__criteria-list li + li {
  margin-top: 0.3rem;
}
.mkt-category-card__button {
  margin-top: 2rem;
}
.mkt-category-card__media {
  min-height: 100%;
}
.mkt-category-card__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mkt-card-post {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(9, 122, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(9, 122, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mkt-card-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(9, 122, 255, 0.1);
}
.mkt-card-post__media {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(251, 251, 251, 0.9), rgba(255, 66, 66, 0.14));
}
.mkt-card-post__media img,
.mkt-card-post__media .mkt-card-post__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.mkt-card-post:hover .mkt-card-post__media img {
  transform: scale(1.04);
}
.mkt-card-post__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}
.mkt-card-post__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.5rem;
}
.mkt-card-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #ff4242;
  font-size: 0.95rem;
}
.mkt-card-post__title {
  margin-bottom: 0;
  color: #097aff;
  font-size: 1.5rem;
  line-height: 1.2;
}
.mkt-card-post__title a {
  color: inherit;
}
.mkt-card-post__title a:hover {
  color: #ff4242;
}
.mkt-card-post__excerpt {
  margin-top: 1rem;
  color: #000000;
}
.mkt-card-post__excerpt p {
  margin-bottom: 0;
}
.mkt-card-post__footer {
  margin-top: 1.5rem;
}
.mkt-card-post__link {
  color: inherit;
  font-weight: 600;
}
.mkt-card-post__link:hover {
  color: #ff4242;
}

.mkt-edition-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 4.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1.75rem;
  box-shadow: 0 1.5rem 3rem rgba(9, 122, 255, 0.08);
}
@media (max-width: 767.98px) {
  .mkt-edition-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
.mkt-edition-card:nth-child(even) .mkt-edition-card__content {
  order: 2;
}
@media (max-width: 767.98px) {
  .mkt-edition-card:nth-child(even) .mkt-edition-card__content {
    order: 1;
  }
}
.mkt-edition-card:nth-child(even) .mkt-edition-card__media {
  order: 1;
}
@media (max-width: 767.98px) {
  .mkt-edition-card:nth-child(even) .mkt-edition-card__media {
    order: 2;
  }
}
.mkt-edition-card__content {
  text-align: left;
}
.mkt-edition-card__label {
  margin-bottom: 0.5rem;
  color: #ff4242;
  font-size: 1.2rem;
  line-height: 1.3;
}
.mkt-edition-card__title {
  margin-bottom: 1rem;
  color: #097aff;
  margin-top: 0;
  line-height: 1.08;
}
.mkt-edition-card__text {
  color: #000000;
  line-height: 1.7;
}
.mkt-edition-card__text > *:last-child {
  margin-bottom: 0;
}
.mkt-edition-card__media {
  min-height: 100%;
}
.mkt-edition-card__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

.mkt-form {
  position: relative;
}
.mkt-form__container {
  transition: opacity 0.2s ease;
}
.mkt-form__field--full {
  grid-column: 1/-1;
}
.mkt-form__field-control {
  display: grid;
  gap: 0.45rem;
}
.mkt-form__field-control.is-error .mkt-form__label {
  color: #da1133;
}
.mkt-form__field-error {
  color: #da1133;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.mkt-form__label {
  display: block;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.8rem;
}
.mkt-form__group-label {
  padding: 0;
}
.mkt-form__control {
  width: 100%;
  border: 1px solid #000000;
  background-color: transparent;
  color: #000000;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mkt-form__control:focus {
  border-color: #097aff;
  box-shadow: 0 0 0 0.18rem rgba(9, 122, 255, 0.16);
  outline: 0;
}
.mkt-form__control[type=file] {
  cursor: pointer;
}
.mkt-form__control.is-error {
  border-color: #da1133;
  box-shadow: 0 0 0 0.18rem rgba(218, 17, 51, 0.12);
}
.mkt-form textarea.mkt-form__control {
  resize: vertical;
}
.mkt-form__help {
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.9rem;
}
.mkt-form__auxiliary {
  margin-top: 1rem;
}
.mkt-form__actions {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.mkt-form__submit {
  display: flex;
}
.mkt-form__check {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  min-width: 0;
  padding: 0;
  border: 0;
}
.mkt-form__check.is-error .mkt-form__label,
.mkt-form__check.is-error .mkt-form__option {
  color: #da1133;
}
.mkt-form__check.is-error .mkt-form__mark {
  border-color: #da1133;
  box-shadow: 0 0 0 0.18rem rgba(218, 17, 51, 0.1);
}
.mkt-form__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.mkt-form__option {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: flex-start;
  color: #000000;
  line-height: 1.4;
  cursor: pointer;
}
.mkt-form__option-body {
  display: grid;
  gap: 0.2rem;
}
.mkt-form__option-title {
  display: block;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.mkt-form__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.mkt-form__input:checked + .mkt-form__mark {
  border-color: #097aff;
  background-color: #097aff;
  box-shadow: 0 0 0 0.18rem rgba(9, 122, 255, 0.14);
}
.mkt-form__input:checked + .mkt-form__mark::after {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}
.mkt-form__input[type=radio] + .mkt-form__mark {
  border-radius: 50%;
}
.mkt-form__input[type=radio] + .mkt-form__mark::after {
  inset: 0.28rem;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 50%;
  background-color: #ffffff;
  transform: scale(0.4);
}
.mkt-form__input[type=radio]:checked + .mkt-form__mark::after {
  transform: scale(1);
}
.mkt-form__input:focus-visible + .mkt-form__mark {
  border-color: #097aff;
  box-shadow: 0 0 0 0.2rem rgba(255, 66, 66, 0.35);
}
.mkt-form__input:disabled + .mkt-form__mark, .mkt-form__input:disabled ~ .mkt-form__option-text {
  opacity: 0.5;
  cursor: not-allowed;
}
.mkt-form__mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(9, 122, 255, 0.52);
  border-radius: 2px;
  background: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.mkt-form__mark::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.38rem;
  width: 0.32rem;
  height: 0.65rem;
  border: solid #ffffff;
  border-width: 0 0.14rem 0.14rem 0;
  opacity: 0;
}
.mkt-form .mkt-form__option:hover .mkt-form__mark {
  border-color: #097aff;
}
.mkt-form__option-text {
  display: inline-block;
  color: rgba(0, 0, 0, 0.72);
  font-size: 1rem;
  line-height: 1.45;
}
.mkt-form__option-text a {
  color: inherit;
  text-decoration: underline;
}
.mkt-form__gallery-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}
.mkt-form__gallery-preview-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mkt-form__gallery-remove {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  opacity: 1;
  padding: 0.35rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  background-size: 12px;
  box-sizing: content-box;
}
.mkt-form__preview-image {
  display: block;
  max-width: 14rem;
  height: auto;
  margin-top: 0.75rem;
  border-radius: 4px;
}
.mkt-form__message-body {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  background-color: rgba(9, 122, 255, 0.1);
  color: #097aff;
}
.mkt-form__message-body.is-visible {
  display: block;
}
.mkt-form__message-body.is-error {
  background-color: rgba(218, 17, 51, 0.1);
  color: #da1133;
}
.mkt-form__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}
.mkt-form__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.25rem solid rgba(9, 122, 255, 0.18);
  border-top-color: #097aff;
  border-radius: 999px;
  animation: mkt-form-spinner 0.8s linear infinite;
}
.mkt-form.is-submitting .mkt-form__container {
  opacity: 0.3;
  pointer-events: none;
}
.mkt-form.is-submitting .mkt-form__loading {
  opacity: 1;
}

@keyframes mkt-form-spinner {
  to {
    transform: rotate(360deg);
  }
}
.mkt-section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.mkt-section-heading__pretitle {
  margin-bottom: 0;
  color: #ff4242;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mkt-section-heading__title {
  margin-bottom: 0;
  color: #097aff;
  margin-top: -0.25rem;
}
.mkt-section-heading__subtitle {
  margin-bottom: 0;
  color: #000000;
}

.mkt-listing__items {
  --mkt-grid-gap: 2rem;
  --mkt-grid-item-min: 18rem;
}
.mkt-listing__item {
  min-width: 0;
}
.mkt-listing__item-enter {
  opacity: 0;
  transform: translateY(2.75rem) scale(0.97);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--mkt-listing-enter-delay, 0ms);
  will-change: opacity, transform;
}
.mkt-listing__item-enter.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.mkt-listing__actions {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.mkt-listing__load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  color: #ffffff;
  background: #097aff;
  border: 1px solid #097aff;
  border-radius: 999px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.mkt-listing__load-more:hover {
  color: #097aff;
  background: #ff4242;
  border-color: #ff4242;
}
.mkt-listing__load-more.is-loading, .mkt-listing__load-more:disabled {
  opacity: 0.6;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .mkt-listing__item-enter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.mkt-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.mkt-modal[hidden] {
  display: none;
}
.mkt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 122, 255, 0.72);
}
.mkt-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 2rem;
  color: #000000;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2rem 5rem rgba(9, 122, 255, 0.28);
}
.mkt-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.mkt-modal__heading {
  margin: 0 2.5rem 1rem 0;
  color: #097aff;
}
.mkt-modal__content > :last-child {
  margin-bottom: 0;
}
.mkt-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mkt-modal-is-open {
  overflow: hidden;
}

.mkt-modal-sample-content {
  display: grid;
  gap: 1rem;
}
.mkt-modal-sample-content__title {
  margin: 0 2.5rem 0 0;
  color: #097aff;
}
.mkt-modal-sample-content__text > :last-child {
  margin-bottom: 0;
}

.mkt-page-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.mkt-page-intro__title {
  margin-bottom: 0;
  color: #097aff;
  max-width: 54rem;
  line-height: 1.02;
}
.mkt-page-intro__title-primary, .mkt-page-intro__title-secondary {
  display: inline;
}
.mkt-page-intro__title-secondary {
  color: #ff4242;
}
.mkt-page-intro__text {
  max-width: 54rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.45;
}
.mkt-page-intro__buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.mkt-page-intro__button.is-active {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}

.mkt-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  color: #097aff;
  background: rgba(9, 122, 255, 0.08);
}
.mkt-pill--sm {
  min-height: 1.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.82rem;
}
.mkt-pill--lg {
  min-height: 2.3rem;
  padding: 0.45rem 1rem;
  font-size: 0.98rem;
}
.mkt-pill--primary {
  color: #ffffff;
  background: #097aff;
  border-color: #097aff;
}
.mkt-pill--secondary {
  color: #097aff;
  background: #ff4242;
  border-color: #ff4242;
}
.mkt-pill--accent {
  color: #ffffff;
  background: #ff4242;
  border-color: #ff4242;
}
.mkt-pill--outline {
  color: #097aff;
  background: transparent;
  border-color: rgba(9, 122, 255, 0.2);
}

.mkt-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 0.5rem;
  background: #000000;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.mkt-tabs {
  display: grid;
  gap: 1.25rem;
}
.mkt-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 0.25rem;
}
.mkt-tabs__button {
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #097aff;
  background: transparent;
  font: inherit;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.mkt-tabs__button:hover, .mkt-tabs__button:focus {
  background: rgba(9, 122, 255, 0.08);
}
.mkt-tabs__button:focus-visible {
  outline: 3px solid rgba(255, 66, 66, 0.5);
  outline-offset: 3px;
}
.mkt-tabs__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.mkt-tabs__button.is-active {
  color: #ffffff;
  background: #097aff;
  border-color: #097aff;
}
.mkt-tabs__panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 122, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 1rem 2rem rgba(9, 122, 255, 0.05);
}
.mkt-tabs__content > :last-child {
  margin-bottom: 0;
}

.mkt-tabs-sample-content {
  display: grid;
  gap: 1rem;
}
.mkt-tabs-sample-content__title {
  margin: 0;
  color: #097aff;
}
.mkt-tabs-sample-content__list {
  padding-left: 1.25rem;
  margin: 0;
}
.mkt-tabs-sample-content__list li + li {
  margin-top: 0.4rem;
}

.mkt-hero-1 {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(255, 66, 66, 0.22), transparent 30%), radial-gradient(circle at top left, rgba(255, 66, 66, 0.16), transparent 24%), linear-gradient(145deg, #120224 0%, #2b0851 58%, #140a35 100%);
  padding: 6rem 0 5rem;
}
@media (max-width: 767.98px) {
  .mkt-hero-1 {
    padding: 4.5rem 0 4rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-hero-1 {
    padding: 3.75rem 0 3rem;
  }
}
.mkt-hero-1__heading .mkt-section-heading__title {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-size: 4.2rem;
  line-height: 1.02;
}
@media (max-width: 991.98px) {
  .mkt-hero-1__heading .mkt-section-heading__title {
    max-width: 11ch;
    font-size: 3.6rem;
  }
}
@media (max-width: 767.98px) {
  .mkt-hero-1__heading .mkt-section-heading__title {
    font-size: 2.9rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-hero-1__heading .mkt-section-heading__title {
    font-size: 2.3rem;
  }
}
.mkt-hero-1__heading .mkt-section-heading__subtitle {
  max-width: 46rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
}
@media (max-width: 575.98px) {
  .mkt-hero-1__heading .mkt-section-heading__subtitle {
    font-size: 1rem;
  }
}

.mkt-404__panel {
  max-width: 48rem;
  padding: 3rem;
  margin-inline: auto;
  text-align: center;
  background: rgba(251, 251, 251, 0.65);
  border-radius: 1.5rem;
}
.mkt-404__heading {
  margin-bottom: 2rem;
}
.mkt-404__actions {
  display: flex;
  justify-content: center;
}

.mkt-archive__header {
  margin-bottom: 3rem;
}
.mkt-archive__description {
  max-width: 46rem;
  margin-top: 1rem;
  color: #000000;
}
.mkt-archive__description > *:last-child {
  margin-bottom: 0;
}

.mkt-category-archive {
  background-color: #fbfbfb;
}
.mkt-category-archive__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mkt-category-archive__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mkt-category-archive__card[hidden] {
  display: none;
}

.mkt-editions-archive {
  background-color: #fbfbfb;
}
.mkt-editions-archive__cards {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mkt-archive-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  background: rgba(251, 251, 251, 0.65);
  border-radius: 1.25rem;
}
.mkt-archive-empty h2 {
  margin-bottom: 0.75rem;
}
.mkt-archive-empty p {
  margin-bottom: 0;
}

.mkt-blog-archive__header {
  margin-bottom: 3rem;
}
.mkt-blog-archive__description {
  max-width: 46rem;
  margin-top: 1rem;
  color: #000000;
}
.mkt-blog-archive__description > *:last-child {
  margin-bottom: 0;
}

.mkt-blog-filters {
  margin-bottom: 3rem;
}
.mkt-blog-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mkt-blog-filters__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  color: #097aff;
  background: #ffffff;
  border: 1px solid rgba(9, 122, 255, 0.12);
  border-radius: 999px;
}
.mkt-blog-filters__link:hover, .mkt-blog-filters__link.is-active {
  color: #ffffff;
  background: #097aff;
  border-color: #097aff;
}

.mkt-blog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.mkt-blog-pagination .page-numbers li {
  margin: 0;
}
.mkt-blog-pagination .page-numbers a,
.mkt-blog-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.85rem;
  color: #097aff;
  background: #ffffff;
  border: 1px solid rgba(9, 122, 255, 0.12);
  border-radius: 999px;
}
.mkt-blog-pagination .page-numbers .current {
  color: #ffffff;
  background: #097aff;
  border-color: #097aff;
}

.mkt-blog-single__date, .mkt-blog-single__author, .mkt-blog-single__categories {
  color: #ff4242;
  font-size: 0.95rem;
}
.mkt-blog-single__article {
  max-width: 920px;
}
.mkt-blog-single__header {
  margin-bottom: 3rem;
}
.mkt-blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.mkt-blog-single__heading {
  margin-bottom: 1.5rem;
}
.mkt-blog-single__heading .mkt-section-heading__title {
  margin-bottom: 0;
}
.mkt-blog-single__categories a {
  color: inherit;
}
.mkt-blog-single__categories a:hover {
  color: #ff4242;
}
.mkt-blog-single__thumbnail {
  overflow: hidden;
  border-radius: 1.25rem;
  aspect-ratio: 16/9;
}
.mkt-blog-single__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mkt-blog-single__content {
  color: #000000;
}
.mkt-blog-single__content > * + * {
  margin-top: 1.5rem;
}
.mkt-blog-single__content h2,
.mkt-blog-single__content h3,
.mkt-blog-single__content h4 {
  margin-top: 2.5rem;
}
.mkt-blog-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.mkt-blog-single__content blockquote {
  padding-left: 1.5rem;
  margin-left: 0;
  border-left: 4px solid rgba(255, 66, 66, 0.45);
}
.mkt-blog-single__footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(9, 122, 255, 0.12);
}
.mkt-blog-single__footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 767.98px) {
  .mkt-blog-single__footer-grid {
    grid-template-columns: 1fr;
  }
}
.mkt-blog-single__footer-actions {
  display: flex;
  justify-content: flex-start;
}
.mkt-blog-single__footer .post-navigation .nav-links {
  display: grid;
  gap: 1rem;
}
.mkt-blog-single__footer .post-navigation a {
  display: block;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(9, 122, 255, 0.12);
  border-radius: 8px;
}
.mkt-blog-single__nav-label {
  display: block;
  margin-bottom: 0.25rem;
  color: #ff4242;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mkt-blog-single__nav-title {
  color: #097aff;
}
.mkt-blog-single__related {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(9, 122, 255, 0.12);
}
.mkt-blog-single__related-heading {
  margin-bottom: 2rem;
}

.mkt-blog-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  background: rgba(251, 251, 251, 0.65);
  border-radius: 1.25rem;
}
.mkt-blog-empty h2 {
  margin-bottom: 0.75rem;
}
.mkt-blog-empty p {
  margin-bottom: 0;
}

.mkt-home-hero {
  padding: 4.5rem 0 5rem;
  background: #fbfbfb;
}
@media (max-width: 767.98px) {
  .mkt-home-hero {
    padding: 3.5rem 0 4rem;
  }
}
.mkt-home-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}
@media (max-width: 767.98px) {
  .mkt-home-hero__layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
.mkt-home-hero__content {
  max-width: 36rem;
}
.mkt-home-hero__title {
  max-width: 400px;
  margin-bottom: 1.5rem;
  color: #097aff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}
.mkt-home-hero__text {
  max-width: 520px;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .mkt-home-hero__text {
    font-size: 1.4rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-home-hero__text {
    font-size: 1.2rem;
  }
}
.mkt-home-hero__media {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .mkt-home-hero__media {
    justify-content: flex-start;
  }
}
.mkt-home-hero__image {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 2rem;
}

.mkt-home-call-status {
  padding: 2rem 0 5rem;
}
@media (max-width: 767.98px) {
  .mkt-home-call-status {
    padding-bottom: 4rem;
  }
}
.mkt-home-call-status__title {
  text-align: center;
  color: #000000;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .mkt-home-call-status__title {
    margin-bottom: 3.5rem;
  }
}
.mkt-home-call-status__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .mkt-home-call-status__items {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.1rem;
    max-width: 24rem;
  }
}
.mkt-home-call-status__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mkt-home-call-status__icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(9, 122, 255, 0.6);
  opacity: 0.28;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.mkt-home-call-status__icon {
  width: 1.2rem;
  height: 1.2rem;
}
.mkt-home-call-status__divider {
  width: 100%;
  height: 4px;
  margin: 1.25rem 0 0.9rem;
  background: rgba(0, 0, 0, 0.14);
}
@media (max-width: 767.98px) {
  .mkt-home-call-status__divider {
    width: 260px;
  }
}
.mkt-home-call-status__item-title {
  font-size: 1.1rem;
  line-height: 1;
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .mkt-home-call-status__item-title {
    font-size: 1.45rem;
    margin-top: 0;
  }
}
.mkt-home-call-status__item-text {
  margin-bottom: 0;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}
.mkt-home-call-status__item--active .mkt-home-call-status__icon-circle {
  background: #097aff;
  opacity: 1;
}
.mkt-home-call-status__item--active .mkt-home-call-status__divider {
  background: #ff4242;
}
.mkt-home-call-status__item--active .mkt-home-call-status__item-title {
  color: #097aff;
}

.mkt-home-categories {
  background: #f0efef;
  padding: 1.5rem 0 5rem;
}
@media (max-width: 767.98px) {
  .mkt-home-categories {
    padding-bottom: 4rem;
  }
}
.mkt-home-categories__title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.mkt-home-categories__tabs {
  display: grid;
  gap: 1.5rem;
}
.mkt-home-categories__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.mkt-home-categories__button {
  min-height: 2.8rem;
  padding-inline: 1.25rem;
}
.mkt-home-categories__button.is-active {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}
.mkt-home-categories__panel {
  padding: 0;
  border: 0;
  background: transparent;
}

.mkt-home-quote {
  padding: 5rem 0;
  text-align: center;
  color: #ffffff;
  background: #097aff;
}
@media (max-width: 767.98px) {
  .mkt-home-quote {
    padding: 4rem 0;
  }
}
.mkt-home-quote__content {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
.mkt-home-quote__image-wrap {
  margin-bottom: 2rem;
}
.mkt-home-quote__image {
  display: block;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 999px;
}
.mkt-home-quote__text {
  display: block;
  margin-bottom: 1.75rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
}
.mkt-home-quote__author {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.mkt-home-quote__role {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.mkt-inscription {
  background-color: #fbfbfb;
}
.mkt-inscription__intro {
  max-width: 58rem;
}
.mkt-inscription__form-section {
  margin-top: 2.5rem;
}
.mkt-inscription__form-shell {
  max-width: 61.875rem;
  margin: 0 auto;
  padding: 2.25rem 3rem;
  background: #ffffff;
  border-radius: 1.75rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.08);
}
@media (max-width: 767.98px) {
  .mkt-inscription__form-shell {
    padding: 1.5rem;
  }
}

.mkt-inscription-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mkt-inscription-form__section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mkt-inscription-form__section-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.mkt-inscription-form__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
}
.mkt-inscription-form__section-icon-svg {
  width: 0.9rem;
  height: auto;
}
.mkt-inscription-form__section-title {
  margin-bottom: 0;
  line-height: 2.75;
  font-size: 1.25rem;
  font-weight: 500;
}
.mkt-inscription-form__fields {
  row-gap: 0.4rem;
}
.mkt-inscription-form__category-picker {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mkt-inscription-form__category-picker-header {
  text-align: left;
}
.mkt-inscription-form__category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .mkt-inscription-form__category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-inscription-form__category-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.mkt-inscription-form__category-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 1rem;
  border: 1px solid #000000;
  border-radius: 0.5rem;
  background: transparent;
  color: #000000;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.mkt-inscription-form__category-option.is-selected {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mkt-inscription-form__note {
  margin-top: 0.65rem;
  margin-bottom: 0;
  color: #000000;
  font-size: 1rem;
  line-height: 1.5;
}
.mkt-inscription-form__note-link {
  color: inherit;
  text-decoration: underline;
}
.mkt-inscription-form__consent-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mkt-inscription-form__divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.16);
}
.mkt-inscription-form__consents {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mkt-inscription-form__consents .mkt-form__auxiliary {
  margin-top: 0;
}
.mkt-inscription-form__consents .mkt-form__check {
  margin-top: 0;
}
.mkt-inscription-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}
.mkt-inscription-form .mkt-form__field-control {
  gap: 0.55rem;
}
.mkt-inscription-form .mkt-form__control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.mkt-inscription-form .mkt-form__control::placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.mkt-inscription-form textarea.mkt-form__control {
  min-height: 9.625rem;
  resize: vertical;
}
