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

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

h2 {
  font-size: 2.3rem;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 1.65rem;
  }
}

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

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

.sofia-sans {
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.4;
}

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

:root {
  --mkt-color-primary: #133259;
  --mkt-color-secondary: #283e9a;
  --mkt-color-accent: #3b5bdb;
  --mkt-color-error: #e74c3c;
  --mkt-color-light: #f3f3fa;
  --mkt-color-dark: #242424;
  --mkt-color-body: #0a0a0a;
}

html {
  font-size: 15px;
}

body {
  background: #ffffff;
  color: #0a0a0a;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.25px;
}

a {
  color: #0a0a0a;
  text-decoration: none;
}
a:hover {
  color: #3b5bdb;
}

.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: #133259;
}

.mkt-text-secondary {
  color: #283e9a;
}

.mkt-text-accent {
  color: #3b5bdb;
}

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

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

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

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

.mkt-container {
  width: min(100% - 2rem, 1194px);
  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: 6rem;
  padding-block-end: 6rem;
}
@media (max-width: 767.98px) {
  .mkt-section-space {
    padding-block-start: 4rem;
    padding-block-end: 4rem;
  }
}

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

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

.mkt-section-space-xs {
  padding-block-start: 1.25rem;
  padding-block-end: 1.25rem;
}

.mkt-pt-0 {
  padding-block-start: 0 !important;
}

.mkt-pb-0 {
  padding-block-end: 0 !important;
}

.site-topbar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2rem;
  background-color: #133259;
}
@media (max-width: 767.98px) {
  .site-topbar {
    display: none;
  }
}
.site-topbar__navigation {
  display: flex;
  gap: 2.5rem;
}
.site-topbar__navigation a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.site-topbar__navigation a:hover {
  text-decoration: underline;
}
.site-topbar__social-links {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 1179.98px) {
  .site-topbar__social-links {
    display: none;
  }
}
.site-topbar__social-links a svg {
  fill: #ffffff;
  transition: fill 0.2s ease;
}
.site-topbar__social-links__icon {
  width: 22px;
  height: 22px;
}

.site-header-menu-1,
.site-header-menu-2 {
  padding: 1.25rem 2rem;
  background-color: #ffffff;
}
@media (max-width: 767.98px) {
  .site-header-menu-1,
  .site-header-menu-2 {
    display: none;
  }
}
.site-header-menu-1__navigation,
.site-header-menu-2__navigation {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.site-header-menu-1__navigation a,
.site-header-menu-2__navigation a {
  color: #283e9a;
  text-decoration: none;
  transition: color 0.2s ease;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.site-header-menu-1__navigation a:hover,
.site-header-menu-2__navigation a:hover {
  text-decoration: underline;
}

@media (max-width: 1179.98px) {
  .site-header-menu-2 {
    display: none;
  }
}
.site-header-menu-2__navigation a {
  padding-left: 1.25rem;
  position: relative;
}
.site-header-menu-2__navigation a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  aspect-ratio: 1/1;
  background-color: #283e9a;
  border-radius: 999px;
}

.site-header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 2.5rem 2rem;
  color: #283e9a;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background-color: #ffffff;
}
@media (max-width: 991.98px) {
  .site-header-main {
    padding: 1.75rem 2rem;
  }
}
@media (max-width: 767.98px) {
  .site-header-main {
    padding: 1.25rem 2rem;
  }
}
@media (max-width: 575.98px) {
  .site-header-main {
    padding: 1.2rem 1.2rem;
  }
}
.site-header-main__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1310px;
  margin: 0 auto;
}
.site-header-main__actions {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
}
.site-header-main__actions .site-overlay-menu-toggle,
.site-header-main__actions .site-header-search-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  height: 2.25rem;
  width: 2.25rem;
  border: 0;
  padding: 0;
  border-radius: 4px;
  color: currentColor;
  cursor: pointer;
  background: transparent;
}
@media (max-width: 575.98px) {
  .site-header-main__actions .site-overlay-menu-toggle,
  .site-header-main__actions .site-header-search-toggle {
    height: 1.1rem;
    width: 1.1rem;
  }
}
.site-header-main__actions .site-overlay-menu-toggle:hover,
.site-header-main__actions .site-header-search-toggle:hover {
  background: #e5e5e5;
}
.site-header-main__actions .site-overlay-menu-toggle__line,
.site-header-main__actions .site-header-search-toggle__line {
  display: block;
  width: 1.5rem;
  height: 3px;
  border-radius: 999px;
  background-color: currentColor;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 575.98px) {
  .site-header-main__actions .site-overlay-menu-toggle__line,
  .site-header-main__actions .site-header-search-toggle__line {
    height: 2px;
    width: 1.1rem;
  }
}
.site-header-main__logo-link {
  display: inline-flex;
  align-items: center;
  justify-self: center;
}
.site-header-main__kiosko {
  justify-self: end;
}
@media (max-width: 767.98px) {
  .site-header-main__kiosko {
    display: none;
  }
}
.site-header-main .site-logo {
  display: block;
  max-height: 100px;
  width: 370px;
  height: auto;
}
@media (max-width: 991.98px) {
  .site-header-main .site-logo {
    width: 300px;
  }
}
@media (max-width: 767.98px) {
  .site-header-main .site-logo {
    width: 240px;
  }
}
@media (max-width: 575.98px) {
  .site-header-main .site-logo {
    width: 210px;
  }
}
@media (max-width: 399.98px) {
  .site-header-main .site-logo {
    width: 160px;
  }
}

.header-fixed .site-header {
  padding-top: var(--mkt-header-main-height, 0px);
}
.header-fixed .site-header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.site-footer {
  background-color: #133259;
  color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 6rem;
  font-size: 1.125rem;
}
@media (max-width: 767.98px) {
  .site-footer {
    padding-top: 0rem;
    padding-bottom: 8rem;
  }
}
.site-footer__logo {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.site-footer__logo img {
  width: 300px;
}
@media (max-width: 767.98px) {
  .site-footer__logo img {
    width: 200px;
  }
}
.site-footer__legal {
  padding-block: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .site-footer__legal {
    flex-direction: column;
  }
}
.site-footer__legal a {
  color: #ffffff;
  font-weight: 300;
}
.site-footer__copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: 2rem;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .site-footer__copyright {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
}
.site-footer__social a {
  width: 24px;
  height: 24px;
}
@media (max-width: 767.98px) {
  .site-footer__social a {
    width: 30px;
    height: 30px;
  }
}

.mkt-back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 120;
  box-shadow: 0 0.75rem 2rem rgba(36, 36, 36, 0.16);
}
@media (max-width: 767.98px) {
  .mkt-back-to-top {
    padding: 0.7rem !important;
    border-radius: 4px !important;
  }
}
.mkt-back-to-top__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}
@media (max-width: 767.98px) {
  .mkt-back-to-top__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.mkt-back-to-top__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #3b5bdb;
}
@media (max-width: 767.98px) {
  .mkt-back-to-top__label {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .mkt-back-to-top {
    display: none;
  }
}

.mkt-admin-test-link {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mkt-admin-test-link__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  color: #ffffff;
  background: #3b5bdb;
  box-shadow: 0 0.75rem 2rem rgba(36, 36, 36, 0.16);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.mkt-admin-test-link__item:hover, .mkt-admin-test-link__item:focus {
  color: #ffffff;
  background: #283e9a;
  transform: translateY(-0.15rem);
}
.mkt-admin-test-link__item:focus-visible {
  outline: 3px solid rgba(59, 91, 219, 0.5);
  outline-offset: 3px;
}
.mkt-admin-test-link__item svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: #ffffff;
  stroke: #ffffff;
}
@media (max-width: 575.98px) {
  .mkt-admin-test-link {
    left: 1rem;
    bottom: 5rem;
  }
}

.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;
  color: currentColor;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.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__submenu {
  position: absolute;
  top: calc(100% + 1rem);
  display: none;
  min-width: 220px;
  margin: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(19, 50, 89, 0.12);
  padding: 0;
}
.site-desktop-navigation .mkt-menu__link--depth-1,
.site-desktop-navigation .mkt-menu__link--depth-2 {
  color: #242424;
}
.site-desktop-navigation .mkt-menu__link--depth-1:hover,
.site-desktop-navigation .mkt-menu__link--depth-2:hover {
  background-color: #3b5bdb;
  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(19, 50, 89, 0.1);
}

.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(19, 50, 89, 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: #133259;
  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: #3b5bdb;
}

.mkt-mobile-menu__submenu-toggle {
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #133259;
  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 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 36, 36, 0.6);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
  overflow-y: auto;
}
.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 .mkt-privacy-panel-customize {
  display: inline-block;
  margin: 0.75rem 0 0;
  padding: 0;
  border: 0;
  color: #0a0a0a;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}
.mkt-privacy-overlay .mkt-privacy-panel .mkt-privacy-panel-customize:hover, .mkt-privacy-overlay .mkt-privacy-panel .mkt-privacy-panel-customize:focus-visible {
  color: #133259;
}
.mkt-privacy-overlay .mkt-privacy-panel .cookie-config-wr {
  display: none;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.mkt-privacy-overlay .mkt-privacy-panel .mkt-privacy-panel-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
  color: #6e6e6e;
  font-size: 0.75rem;
  line-height: 1.4;
}
.mkt-privacy-overlay .mkt-privacy-panel .mkt-privacy-panel-policies a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.mkt-privacy-overlay .mkt-privacy-panel .mkt-privacy-panel-policies a:hover, .mkt-privacy-overlay .mkt-privacy-panel .mkt-privacy-panel-policies a:focus-visible {
  color: #133259;
}
.mkt-privacy-overlay.is-customizing .mkt-privacy-panel .cookie-config-wr {
  display: grid;
}

.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: #133259;
  border-radius: 40%;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  opacity: 1;
}
.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: #242424;
  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;
}

html.overlay-menu-open,
body.overlay-menu-open {
  overflow: hidden;
}

.site-overlay-navigation {
  position: fixed;
  inset: 0;
  z-index: 1200;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #133259;
  color: #ffffff;
  top: 110px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

.header-fixed .site-overlay-navigation {
  top: 0px;
}

.site-overlay-navigation.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.6s ease, visibility 0s linear 0s;
}

.menu-overlay {
  min-height: 100vh;
  padding: 0rem 5rem 3rem 5rem;
  max-width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(-2rem);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 767.98px) {
  .menu-overlay {
    padding: 0rem 1.75rem 3rem 1.75rem;
  }
}
.menu-overlay__topbar {
  position: sticky;
  padding-top: 3rem;
  top: 0;
  z-index: 2;
  padding-bottom: 2rem;
  background: #133259;
}
@media (max-width: 575.98px) {
  .menu-overlay__topbar {
    padding-top: 1.4rem;
    padding-bottom: 1rem;
  }
}
.menu-overlay__topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.menu-overlay__close {
  position: absolute;
  left: 0;
  top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: white;
  border-radius: 4px;
  flex: 0 0 auto;
}
@media (max-width: 575.98px) {
  .menu-overlay__close {
    left: -0.8rem;
    top: 0rem;
    width: 2rem;
    height: 2rem;
    padding: 0rem;
  }
}
.menu-overlay__close svg {
  width: 5rem;
  height: 5rem;
}
.menu-overlay__close:hover {
  background: #666666;
}
.menu-overlay__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
}
.menu-overlay__search {
  padding-block: 4rem;
}
.menu-overlay__search-form {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.menu-overlay__search-submit {
  align-self: center;
}
.menu-overlay__logo {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  flex: 0 1 auto;
}
.menu-overlay__logo svg {
  width: 370px;
  height: auto;
}
@media (max-width: 767.98px) {
  .menu-overlay__logo svg {
    width: 250px;
  }
}
@media (max-width: 575.98px) {
  .menu-overlay__logo svg {
    width: 200px;
  }
}
.menu-overlay__logo-svg {
  display: block;
  width: min(100%, 22rem);
  height: auto;
}
.menu-overlay__grid {
  --mkt-grid-gap: 2.5rem;
  --mkt-grid-item-min: 14rem;
  padding-block: 3rem;
}
.menu-overlay__column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
}
@media (max-width: 767.98px) {
  .menu-overlay__column {
    gap: 1.5rem;
  }
}
.menu-overlay__title {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
}
@media (max-width: 767.98px) {
  .menu-overlay__title {
    font-size: 1.15rem;
  }
}
.menu-overlay__links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .menu-overlay__links {
    gap: 1.5rem;
  }
}
.menu-overlay__links a {
  text-decoration: none;
  color: currentColor;
  opacity: 0.8;
  font-size: 1.125rem;
}
.menu-overlay__links a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .menu-overlay__links a {
    font-size: 1rem;
  }
}
.menu-overlay__kiosko {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.menu-overlay__kiosko img {
  width: 100%;
  height: auto;
}
.menu-overlay__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}
@media (max-width: 991.98px) {
  .menu-overlay__footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }
}
.menu-overlay__footer-links {
  padding-block: 2rem;
  display: flex;
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .menu-overlay__footer-links {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
  }
}
.menu-overlay__footer-links a {
  text-decoration: none;
  color: currentColor;
  opacity: 0.8;
}
.menu-overlay__footer-links a:hover {
  text-decoration: underline;
}
.menu-overlay__footer-social {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .menu-overlay__footer-social {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.menu-overlay__footer-social-icons {
  display: flex;
  gap: 1rem;
}
.menu-overlay__footer-social-icons a svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.site-overlay-navigation.is-open .menu-overlay {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1280px) {
  .menu-overlay__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.mkt-accordion {
  display: grid;
  gap: 1rem;
}
.mkt-accordion__item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(19, 50, 89, 0.14);
  border-radius: 8px;
  box-shadow: 0 1rem 2rem rgba(19, 50, 89, 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: #133259;
  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: #133259;
  background: rgba(40, 62, 154, 0.2);
}
.mkt-accordion__trigger:focus-visible {
  outline: 3px solid rgba(59, 91, 219, 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(19, 50, 89, 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(40, 62, 154, 0.16);
}
.mkt-accordion__item.is-open .mkt-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.mkt-article-toc {
  margin-block: 2rem 3rem;
  padding: 2rem 2.5rem 2.5rem;
  background-color: rgba(243, 243, 250, 0.75);
  color: #283e9a;
}
.mkt-article-toc__title {
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1;
}
.mkt-article-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mkt-article-toc__list--level-3, .mkt-article-toc__list--level-4 {
  padding-left: 1.8rem;
}
.mkt-article-toc__item {
  margin-top: 0.75rem;
}
.mkt-article-toc__link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: inherit;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  text-underline-offset: 0.12em;
}
.mkt-article-toc__label {
  text-decoration: underline;
}
.mkt-article-toc__arrow {
  flex: 0 0 auto;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .mkt-article-toc {
    padding: 2rem 1.5rem 2.25rem;
  }
  .mkt-article-toc__title {
    font-size: 2rem;
  }
  .mkt-article-toc__link {
    font-size: 1.2rem;
  }
  .mkt-article-toc__list--level-3, .mkt-article-toc__list--level-4 {
    padding-left: 1.5rem;
  }
}

.mkt-blog-single__post-content h2,
.mkt-blog-single__post-content h3,
.mkt-blog-single__post-content h4 {
  scroll-margin-top: 160px;
}

.mkt-ad-slot {
  display: flex;
  justify-content: center;
  width: 100%;
}
.mkt-ad-slot__media {
  display: flex;
  justify-content: center;
  max-width: 100%;
}
.mkt-ad-slot__picture {
  display: block;
  max-width: 100%;
}
.mkt-ad-slot__image {
  display: block;
  max-width: 100%;
  height: auto;
}
.mkt-ad-slot--billboard {
  margin-block: 4rem;
}
@media (max-width: 767.98px) {
  .mkt-ad-slot--billboard {
    margin-block: 2rem;
  }
}
.mkt-ad-slot--skin-top {
  --mkt-ad-skin-top-width: 1240px;
  --mkt-ad-skin-center-width: 1200px;
  --mkt-ad-skin-center-half-width: 600px;
  --mkt-ad-skin-side-width: 290px;
  --mkt-ad-skin-gap: 25px;
  --mkt-ad-skin-side-offset: 5px;
  margin-block: 3rem;
  width: 100%;
  max-width: none;
}
.mkt-ad-slot--skin-top .mkt-ad-slot__skin-inner {
  position: relative;
  width: var(--mkt-ad-skin-top-width);
  max-width: 100%;
  margin-inline: auto;
}
.mkt-ad-slot--skin-top .mkt-ad-slot__media {
  width: var(--mkt-ad-skin-top-width);
  max-width: 100%;
  aspect-ratio: 1240/280;
}
.mkt-ad-slot--skin-top .mkt-ad-slot__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mkt-ad-slot--skin-top .mkt-ad-slot__skin-side {
  position: absolute;
  top: 0;
  width: var(--mkt-ad-skin-side-width);
  height: 700px;
}
.mkt-ad-slot--skin-top .mkt-ad-slot__skin-side--left {
  right: calc(100% + var(--mkt-ad-skin-side-offset));
}
.mkt-ad-slot--skin-top .mkt-ad-slot__skin-side--right {
  left: calc(100% + var(--mkt-ad-skin-side-offset));
}
.mkt-ad-slot--skin-top .mkt-ad-slot__skin-side-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991.98px) {
  .mkt-ad-slot--skin-top {
    margin-block: 2rem;
  }
  .mkt-ad-slot--skin-top .mkt-ad-slot__skin-inner {
    width: 100%;
  }
  .mkt-ad-slot--skin-top .mkt-ad-slot__media {
    width: auto;
    aspect-ratio: auto;
  }
  .mkt-ad-slot--skin-top .mkt-ad-slot__image {
    width: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .mkt-ad-slot--skin-top .mkt-ad-slot__skin-side {
    display: none;
  }
}
.header-fixed .mkt-ad-slot--skin-top .mkt-ad-slot__skin-side {
  position: fixed;
  top: var(--mkt-header-main-height, 0px);
  z-index: 900;
}
.header-fixed .mkt-ad-slot--skin-top .mkt-ad-slot__skin-side--left {
  right: auto;
  left: calc(50% - var(--mkt-ad-skin-center-half-width) - var(--mkt-ad-skin-gap) - var(--mkt-ad-skin-side-width));
}
.header-fixed .mkt-ad-slot--skin-top .mkt-ad-slot__skin-side--right {
  left: calc(50% + var(--mkt-ad-skin-center-half-width) + var(--mkt-ad-skin-gap));
}
.mkt-ad-slot--skycraper, .mkt-ad-slot--skyscraper {
  justify-content: center;
  margin-top: 3rem;
  height: 100%;
  align-items: start;
}
.mkt-ad-slot--skycraper .mkt-ad-slot__media, .mkt-ad-slot--skyscraper .mkt-ad-slot__media {
  position: sticky;
  top: 12rem;
}
@media (max-width: 767.98px) {
  .mkt-ad-slot--skycraper, .mkt-ad-slot--skyscraper {
    justify-content: flex-start;
  }
}
@media (max-width: 991.98px) {
  .mkt-ad-slot--profile-sidebar {
    height: auto;
  }
  .mkt-ad-slot--profile-sidebar .mkt-ad-slot__media {
    position: static;
    top: auto;
  }
}
@media (max-width: 767.98px) {
  .mkt-ad-slot--profile-sidebar {
    justify-content: center;
  }
}
.mkt-ad-slot--profile-inline-rectangle {
  margin-block: 2.5rem;
}
.mkt-ad-slot--profile-inline-rectangle .mkt-ad-slot__media,
.mkt-ad-slot--profile-inline-rectangle .mkt-ad-slot__picture {
  width: min(100%, 300px);
}
.mkt-ad-slot--leaderboard {
  max-width: 728px;
  margin-inline: auto;
}
.mkt-ad-slot--fixed {
  position: fixed;
  right: 50%;
  bottom: 0;
  z-index: 900;
  width: min(100%, 728px);
  transform: translateX(50%);
}
@media (max-width: 767.98px) {
  .mkt-ad-slot--fixed {
    width: min(100% - 2rem, 320px);
  }
}
@media (max-width: 399.98px) {
  .mkt-ad-slot--fixed {
    width: min(100% - 1rem, 320px);
  }
}
@media (min-width: 992px) {
  .mkt-ad-slot--no-desktop {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .mkt-ad-slot--no-tablet {
    display: none;
  }
}
@media (min-width: 400px) and (max-width: 767.98px) {
  .mkt-ad-slot--no-mobile {
    display: none;
  }
}
@media (max-width: 399.98px) {
  .mkt-ad-slot--no-mobile-narrow {
    display: none;
  }
}
.mkt-ad-slot.is-hidden {
  display: none;
}
.mkt-ad-slot__close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: 50%;
  background-color: #242424;
  color: #ffffff;
  cursor: pointer;
}
.mkt-ad-slot__close::before, .mkt-ad-slot__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 2px;
  background-color: currentColor;
}
.mkt-ad-slot__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mkt-ad-slot__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mkt-breadcrumbs {
  color: rgba(10, 10, 10, 0.9);
}
.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;
  line-height: 1.2;
  white-space: nowrap;
}
.mkt-breadcrumbs__link {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.mkt-breadcrumbs__link:hover, .mkt-breadcrumbs__link:focus {
  color: #133259;
}
.mkt-breadcrumbs__separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.15rem;
  margin-right: 0.7rem;
  line-height: 0;
}
.mkt-breadcrumbs__separator-icon {
  fill: rgba(10, 10, 10, 0.9);
  stroke: rgba(10, 10, 10, 0.9);
  width: 1.75rem;
  height: 1.75rem;
}

.mkt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 1.25rem 2rem;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  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(59, 91, 219, 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: 1rem 1.25rem;
  font-size: 0.75rem;
}
.mkt-button--lg {
  min-height: 3.4rem;
  padding: 1rem 2.5rem;
}
.mkt-button--primary {
  color: #ffffff;
  background: #133259;
  border-color: #133259;
}
.mkt-button--primary:hover, .mkt-button--primary:focus {
  color: #ffffff;
  background: #283e9a;
  border-color: #283e9a;
}
.mkt-button--secondary {
  color: #ffffff;
  background: #283e9a;
  border-color: #283e9a;
}
.mkt-button--secondary:hover, .mkt-button--secondary:focus {
  color: #ffffff;
  background: #133259;
  border-color: #133259;
}
.mkt-button--dark {
  color: #ffffff;
  background: #242424;
  border-color: #242424;
}
.mkt-button--dark:hover, .mkt-button--dark:focus {
  color: #ffffff;
  background: #133259;
  border-color: #133259;
}
.mkt-button--black {
  color: #ffffff;
  background: #242424;
  border-color: #242424;
}
.mkt-button--black:hover, .mkt-button--black:focus {
  color: #ffffff;
  background: #133259;
  border-color: #133259;
}
.mkt-button--white {
  color: #242424;
  background: #ffffff;
  border-color: #ffffff;
}
.mkt-button--white:hover, .mkt-button--white:focus {
  color: #3b5bdb;
}
.mkt-button--outline {
  color: #133259;
  background: transparent;
  border-color: #133259;
}
.mkt-button--outline:hover, .mkt-button--outline:focus {
  color: #ffffff;
  background: #133259;
  border-color: #133259;
}
.mkt-button--outline-secondary {
  color: #283e9a;
  background: transparent;
  border-color: #283e9a;
}
.mkt-button--outline-secondary:hover, .mkt-button--outline-secondary:focus {
  color: #ffffff;
  background: #283e9a;
  border-color: #283e9a;
}
.mkt-button--ghost {
  color: #133259;
  background: transparent;
  border-color: transparent;
}
.mkt-button--ghost:hover, .mkt-button--ghost:focus {
  color: #133259;
  background: rgba(19, 50, 89, 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: #133259;
  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-card-1 {
  height: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  padding: 1rem;
  background-color: #ffffff;
  cursor: pointer;
}
.mkt-card-1:hover {
  border-color: #283e9a;
  background-color: rgba(40, 62, 154, 0.05);
}
.mkt-card-1__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.mkt-card-1__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.mkt-card-1__icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 3rem;
  height: 3rem;
}
.mkt-card-1__icon-image {
  display: block;
  width: 100%;
  height: 100%;
}
.mkt-card-1__title {
  margin: 0;
  color: #283e9a;
  font-size: 1.25rem;
}
.mkt-card-1__text {
  color: #6e6e6e;
  font-size: 1.1rem;
}
.mkt-card-1__text p {
  margin: 0;
}

.mkt-card-banner-emp {
  display: flex;
  flex-direction: column;
  width: min(100%, 400px);
  background-color: #ffffff;
  border-radius: 4px;
}
.mkt-card-banner-emp__link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.mkt-card-banner-emp__link:hover, .mkt-card-banner-emp__link:focus {
  text-decoration: none;
}
.mkt-card-banner-emp__media {
  width: 100%;
}
.mkt-card-banner-emp__image {
  display: block;
  width: 100%;
  height: auto;
}
.mkt-card-banner-emp__content {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #fbf4ec;
}
.mkt-card-banner-emp__title {
  margin: 0;
}
.mkt-card-banner-emp__text {
  margin: 1rem 0 0;
}
.mkt-card-banner-emp__divider {
  width: 100%;
  height: 1px;
  margin: 1.2rem 0;
  background-color: rgba(36, 36, 36, 0.2);
}
.mkt-card-banner-emp__button {
  width: 100%;
}
.mkt-card-banner-emp--horizontal {
  flex-direction: row;
  width: 100%;
}
.mkt-card-banner-emp--horizontal .mkt-card-banner-emp__link {
  flex: 1;
  flex-direction: row;
}
.mkt-card-banner-emp--horizontal .mkt-card-banner-emp__media,
.mkt-card-banner-emp--horizontal .mkt-card-banner-emp__content {
  flex: 0 0 50%;
  width: 50%;
  min-height: 350px;
  gap: 1rem;
}
.mkt-card-banner-emp--horizontal .mkt-card-banner-emp__media {
  position: relative;
  order: 2;
  min-height: 0;
}
.mkt-card-banner-emp--horizontal .mkt-card-banner-emp__content {
  order: 1;
}
.mkt-card-banner-emp--horizontal .mkt-card-banner-emp__button {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
.mkt-card-banner-emp--horizontal .mkt-card-banner-emp__image {
  position: absolute;
  inset: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mkt-card-banner-emp--horizontal .mkt-card-banner-emp__divider {
  display: none;
}
@media (max-width: 767.98px) {
  .mkt-card-banner-emp--horizontal {
    flex-direction: column;
  }
  .mkt-card-banner-emp--horizontal .mkt-card-banner-emp__link {
    flex-direction: column;
  }
  .mkt-card-banner-emp--horizontal .mkt-card-banner-emp__media,
  .mkt-card-banner-emp--horizontal .mkt-card-banner-emp__content {
    flex-basis: auto;
    width: 100%;
  }
  .mkt-card-banner-emp--horizontal .mkt-card-banner-emp__media,
  .mkt-card-banner-emp--horizontal .mkt-card-banner-emp__content {
    order: initial;
  }
  .mkt-card-banner-emp--horizontal .mkt-card-banner-emp__media {
    position: static;
  }
  .mkt-card-banner-emp--horizontal .mkt-card-banner-emp__image {
    position: static;
    height: auto;
  }
}

.mkt-card-franchise {
  height: 100%;
  border: 1px solid #e5e5e5;
  background: #ffffff;
}
.mkt-card-franchise__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #0a0a0a;
}
.mkt-card-franchise__link:hover, .mkt-card-franchise__link:focus {
  color: #0a0a0a;
  text-decoration: none;
}
.mkt-card-franchise__link:hover .mkt-card-franchise__title, .mkt-card-franchise__link:focus .mkt-card-franchise__title {
  color: #3b5bdb;
}
.mkt-card-franchise__link:hover .mkt-card-franchise__photo, .mkt-card-franchise__link:focus .mkt-card-franchise__photo {
  transform: scale(1.04);
}
.mkt-card-franchise__media {
  display: flex;
  position: relative;
  align-items: flex-end;
  aspect-ratio: 16/9;
  overflow: hidden;
  padding: 1rem;
  background: #133259;
}
.mkt-card-franchise__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.35s ease;
}
.mkt-card-franchise__logo-frame {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  width: 7.25rem;
  aspect-ratio: 1;
  padding: 0.75rem;
  background: #ffffff;
  box-shadow: 3px 3px 13px rgba(36, 36, 36, 0.15);
}
.mkt-card-franchise__logo {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mkt-card-franchise__logo-placeholder {
  display: -webkit-box;
  overflow: hidden;
  color: #133259;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.mkt-card-franchise__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.9rem 1rem 1.15rem;
}
.mkt-card-franchise__sector {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.65rem;
  color: #283e9a;
  background: #f3f3fa;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.mkt-card-franchise__title {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  line-height: 1.25;
  transition: color 0.2s ease;
}
.mkt-card-franchise__investment {
  margin-top: auto;
  font-size: 0.9rem;
  line-height: 1.35;
}
.mkt-card-franchise__investment strong {
  font-weight: 700;
}

.mkt-card-directory-entry {
  height: 100%;
  border: 1px solid #e5e5e5;
  background: #ffffff;
}
.mkt-card-directory-entry__link {
  display: flex;
  height: 100%;
  color: #0a0a0a;
  text-decoration: none;
}
.mkt-card-directory-entry__link:hover, .mkt-card-directory-entry__link:focus {
  color: #0a0a0a;
  text-decoration: none;
}
.mkt-card-directory-entry__link:hover .mkt-card-directory-entry__title, .mkt-card-directory-entry__link:focus .mkt-card-directory-entry__title {
  color: #3b5bdb;
}
.mkt-card-directory-entry__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  padding: 1rem;
  border-right: 1px solid #e5e5e5;
}
.mkt-card-directory-entry__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 9rem;
  aspect-ratio: 1;
  padding: 0.75rem;
  background: #ffffff;
}
.mkt-card-directory-entry__logo {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mkt-card-directory-entry__logo-placeholder {
  color: #133259;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}
.mkt-card-directory-entry__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 1.25rem;
}
.mkt-card-directory-entry__eyebrow {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.65rem;
  color: #283e9a;
  background: #f3f3fa;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.mkt-card-directory-entry__title {
  font-size: 1.15rem;
  line-height: 1.25;
  transition: color 0.2s ease;
}
.mkt-card-directory-entry__detail {
  margin-top: auto;
  font-size: 0.9rem;
  line-height: 1.35;
}
.mkt-card-directory-entry__detail strong {
  font-weight: 700;
}

.mkt-card-post {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  gap: 1.5rem;
}
.mkt-card-post__media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.mkt-card-post__media img,
.mkt-card-post__media picture,
.mkt-card-post__media .mkt-card-post__image {
  display: block;
  width: 100%;
  height: 100%;
}
.mkt-card-post__media img,
.mkt-card-post__media .mkt-card-post__image {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.mkt-card-post__badge {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.35rem;
  background-color: rgba(229, 229, 229, 0.85);
  color: #242424;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 2px;
}
.mkt-card-post__badge--accent {
  background-color: #3b5bdb;
  color: #ffffff;
}
.mkt-card-post__badge-icon {
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 auto;
  display: block;
}
.mkt-card-post__badge-label {
  display: block;
  line-height: 1;
}
.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;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .mkt-card-post__body {
    gap: 0.6rem;
  }
}
.mkt-card-post__meta {
  color: #3b5bdb;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.125em;
}
.mkt-card-post__title {
  margin: 0;
  color: #0a0a0a;
  font-size: 1.5rem;
  line-height: 1.2;
}
.mkt-card-post__title a {
  color: inherit;
}
.mkt-card-post__title a:hover {
  text-decoration: underline;
}
.mkt-card-post__author {
  color: #0a0a0a;
  font-size: 0.8rem;
}
.mkt-card-post__excerpt {
  color: #6e6e6e;
}
.mkt-card-post__excerpt p {
  margin: 0;
}
.mkt-card-post--xl .mkt-card-post__media {
  aspect-ratio: 3/2;
}
.mkt-card-post--xl .mkt-card-post__title {
  font-size: 2.25rem;
  line-height: 1.08;
}
@media (max-width: 767.98px) {
  .mkt-card-post--xl .mkt-card-post__title {
    font-size: 1.75rem;
  }
}
.mkt-card-post--lg .mkt-card-post__title {
  font-size: 2.25rem;
  line-height: 1.25;
}
@media (max-width: 767.98px) {
  .mkt-card-post--lg .mkt-card-post__title {
    font-size: 1.75rem;
  }
}
.mkt-card-post--md .mkt-card-post__media {
  aspect-ratio: 3/2;
}
.mkt-card-post--md .mkt-card-post__title {
  font-size: 1.5rem;
  line-height: 1.2;
}
.mkt-card-post--sm {
  gap: 1rem;
}
.mkt-card-post--sm .mkt-card-post__media {
  aspect-ratio: 16/9;
}
.mkt-card-post--sm .mkt-card-post__body {
  gap: 0.75rem;
}
@media (max-width: 767.98px) {
  .mkt-card-post--sm .mkt-card-post__body {
    gap: 0.5rem;
  }
}
.mkt-card-post--sm .mkt-card-post__title {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .mkt-card-post--sm .mkt-card-post__title {
    font-size: 1.15rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-card-post--sm .mkt-card-post__title {
    font-size: 1.05rem;
  }
}
.mkt-card-post--sm .mkt-card-post__excerpt {
  margin-top: 0.5rem;
}
.mkt-card-post--horizontal {
  display: grid;
  grid-template-columns: 17.1875rem minmax(0, 1fr);
  align-items: flex-start;
  gap: 1.5rem;
}
.mkt-card-post--horizontal .mkt-card-post__link {
  display: block;
  width: 100%;
}
.mkt-card-post--horizontal .mkt-card-post__media {
  width: 17.1875rem;
  aspect-ratio: 275/154;
  margin-bottom: 0;
}
.mkt-card-post--horizontal .mkt-card-post__body {
  min-width: 0;
  gap: 0.75rem;
}
.mkt-card-post--horizontal .mkt-card-post__title {
  font-size: 1.2rem;
}
@media (max-width: 767.98px) {
  .mkt-card-post--horizontal {
    display: flex;
    flex-direction: column;
  }
  .mkt-card-post--horizontal .mkt-card-post__media,
  .mkt-card-post--horizontal .mkt-card-post__body {
    width: 100%;
    flex-basis: auto;
  }
}

.mkt-card-guide,
.mkt-card-special {
  height: 100%;
}
.mkt-card-guide__link, .mkt-card-guide__content,
.mkt-card-special__link,
.mkt-card-special__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  color: #0a0a0a;
}
.mkt-card-guide__media,
.mkt-card-special__media {
  overflow: hidden;
  box-shadow: 0 0 0.5rem rgba(36, 36, 36, 0.1);
  border-radius: 4px;
}
.mkt-card-guide__image,
.mkt-card-special__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mkt-card-guide__title,
.mkt-card-special__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #0a0a0a;
}

.mkt-card-guide__media {
  aspect-ratio: 280/373;
}

.mkt-card-special__media {
  aspect-ratio: 520/712;
}

.mkt-card-post-list {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.5rem;
}
.mkt-card-post-list__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.mkt-card-post-list__title {
  margin: 0 0 0.75rem;
  color: #283e9a;
}
.mkt-card-post-list__excerpt {
  color: #0a0a0a;
}
.mkt-card-post-list__excerpt p {
  margin: 0;
}

.mkt-card-kiosk {
  width: auto;
}
.mkt-card-kiosk__link {
  display: block;
}
.mkt-card-kiosk__media {
  overflow: hidden;
}
.mkt-card-kiosk__image {
  display: block;
  width: auto;
  height: 21.25rem;
}
@media (max-width: 575.98px) {
  .mkt-card-kiosk__image {
    height: 17.5rem;
  }
}

.mkt-card-signature {
  height: 100%;
}
.mkt-card-signature__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  color: #0a0a0a;
  text-align: center;
}
.mkt-card-signature__media {
  width: 10rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.mkt-card-signature__author-image, .mkt-card-signature__author-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}
.mkt-card-signature__author-image {
  -o-object-fit: cover;
     object-fit: cover;
}
.mkt-card-signature__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  gap: 0.5rem;
  align-items: center;
}
.mkt-card-signature__author-name {
  line-height: 1.15;
  color: rgba(10, 10, 10, 0.85);
}
.mkt-card-signature__author-description {
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(10, 10, 10, 0.85);
}
.mkt-card-signature__title {
  margin: 0;
  margin-top: auto;
  max-width: 18rem;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #0a0a0a;
  padding-top: 0.5rem;
}
.mkt-card-signature:hover .mkt-card-signature__title {
  text-decoration: underline;
}

.mkt-choice,
.mkt-form__option {
  position: relative;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  line-height: 1.4;
  cursor: pointer;
}

.mkt-choice__label {
  position: relative;
}

.mkt-choice--enhanced input[type=checkbox],
.mkt-choice--enhanced input[type=radio],
.mkt-form__check--enhanced input[type=checkbox],
.mkt-form__check--enhanced input[type=radio] {
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.mkt-choice--enhanced input[type=checkbox]:focus-visible + .mkt-choice__indicator,
.mkt-choice--enhanced input[type=radio]:focus-visible + .mkt-choice__indicator,
.mkt-choice--enhanced input[type=checkbox]:focus-visible + label .mkt-choice__indicator,
.mkt-choice--enhanced input[type=radio]:focus-visible + label .mkt-choice__indicator,
.mkt-form__check--enhanced input[type=checkbox]:focus-visible + .mkt-choice__indicator,
.mkt-form__check--enhanced input[type=radio]:focus-visible + .mkt-choice__indicator,
.mkt-form__check--enhanced input[type=checkbox]:focus-visible + label .mkt-choice__indicator,
.mkt-form__check--enhanced input[type=radio]:focus-visible + label .mkt-choice__indicator {
  box-shadow: 0 0 0 0.18rem rgba(19, 50, 89, 0.16);
}
.mkt-choice--enhanced input[type=checkbox]:disabled + .mkt-choice__indicator,
.mkt-choice--enhanced input[type=radio]:disabled + .mkt-choice__indicator,
.mkt-choice--enhanced input[type=checkbox]:disabled + label .mkt-choice__indicator,
.mkt-choice--enhanced input[type=radio]:disabled + label .mkt-choice__indicator,
.mkt-choice--enhanced input[type=checkbox]:disabled + label,
.mkt-choice--enhanced input[type=radio]:disabled + label,
.mkt-form__check--enhanced input[type=checkbox]:disabled + .mkt-choice__indicator,
.mkt-form__check--enhanced input[type=radio]:disabled + .mkt-choice__indicator,
.mkt-form__check--enhanced input[type=checkbox]:disabled + label .mkt-choice__indicator,
.mkt-form__check--enhanced input[type=radio]:disabled + label .mkt-choice__indicator,
.mkt-form__check--enhanced input[type=checkbox]:disabled + label,
.mkt-form__check--enhanced input[type=radio]:disabled + label {
  cursor: not-allowed;
  opacity: 0.62;
}

.mkt-choice__indicator,
.mkt-form__choice-control {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid #242424;
  background-color: transparent;
  color: #283e9a;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.mkt-choice__indicator::after,
.mkt-form__choice-control::after {
  position: absolute;
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mkt-choice__indicator--checkbox::after,
.mkt-form__choice-control--checkbox::after {
  top: 0.16rem;
  left: 0.36rem;
  width: 0.32rem;
  height: 0.62rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.mkt-choice__indicator--radio,
.mkt-form__choice-control--radio {
  border-radius: 50%;
}
.mkt-choice__indicator--radio::after,
.mkt-form__choice-control--radio::after {
  inset: 0.28rem;
  border-radius: 50%;
  background-color: currentColor;
}

.mkt-choice.is-checked .mkt-choice__indicator,
.mkt-choice__label.is-checked .mkt-choice__indicator,
.mkt-form__option.is-checked .mkt-form__choice-control,
.mkt-form__choice-label.is-checked .mkt-form__choice-control {
  border-color: #283e9a;
}
.mkt-choice.is-checked .mkt-choice__indicator::after,
.mkt-choice__label.is-checked .mkt-choice__indicator::after,
.mkt-form__option.is-checked .mkt-form__choice-control::after,
.mkt-form__choice-label.is-checked .mkt-form__choice-control::after {
  opacity: 1;
}

.mkt-field,
.mkt-form__field-control {
  display: grid;
  gap: 0.45rem;
}

.mkt-field__label,
.mkt-form__label {
  display: block;
  margin: 0;
  color: #242424;
  font-size: 0.9rem;
}

.mkt-control,
.mkt-form__control {
  width: 100%;
  border: 1px solid #242424;
  background-color: transparent;
  color: #0a0a0a;
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  padding: 1rem 1.2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mkt-control:focus,
.mkt-form__control:focus {
  border-color: #133259;
  box-shadow: 0 0 0 0.18rem rgba(19, 50, 89, 0.16);
  outline: 0;
}
.mkt-control[type=file],
.mkt-form__control[type=file] {
  cursor: pointer;
}
.mkt-control.is-error,
.mkt-form__control.is-error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 0.18rem rgba(231, 76, 60, 0.12);
}

textarea.mkt-control,
textarea.mkt-form__control {
  resize: vertical;
}

.mkt-select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding-right: 3rem;
  background-image: linear-gradient(45deg, transparent 50%, #242424 50%), linear-gradient(135deg, #242424 50%, transparent 50%);
  background-position: calc(100% - 1.25rem) calc(50% - 0.12rem), calc(100% - 0.9rem) calc(50% - 0.12rem);
  background-size: 0.4rem 0.4rem;
  background-repeat: no-repeat;
}
.mkt-select::-ms-expand {
  display: none;
}

.mkt-field__error,
.mkt-form__field-error {
  margin-top: 0.25rem;
  color: #e74c3c;
  font-size: 0.875rem;
}

.mkt-form {
  position: relative;
}
.mkt-form__container {
  transition: opacity 0.2s ease;
}
.mkt-form__fields {
  display: grid;
  gap: 1rem;
}
.mkt-form__fields--newsletter {
  gap: 1.25rem;
}
.mkt-form__field {
  min-width: 0;
}
.mkt-form__field--full {
  grid-column: 1/-1;
}
.mkt-form__inline-label {
  display: block;
  margin-bottom: 0.65rem;
  color: #242424;
  font-size: 0.9rem;
}
.mkt-form__inline-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media (max-width: 575.98px) {
  .mkt-form__inline-row {
    flex-direction: column;
  }
}
.mkt-form__inline-control {
  flex: 1 1 auto;
  min-width: 0;
}
.mkt-form__inline-submit {
  flex: 0 0 auto;
}
@media (max-width: 575.98px) {
  .mkt-form__inline-submit {
    width: 100%;
  }
  .mkt-form__inline-submit .mkt-button {
    width: 100%;
  }
}
.mkt-form__help {
  color: rgba(10, 10, 10, 0.72);
  font-size: 0.9rem;
}
.mkt-form__auxiliary {
  margin-top: 1rem;
}
.mkt-form__actions {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.mkt-form__check {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}
.mkt-form__check label {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  line-height: 1.4;
  cursor: pointer;
}
.mkt-form__check input[type=checkbox],
.mkt-form__check input[type=radio] {
  margin: 0;
}
.mkt-form__check a {
  color: #283e9a;
}
.mkt-form__radio-group, .mkt-form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.mkt-form__field-control.is-error .mkt-form__label {
  color: #e74c3c;
}
.mkt-form__check.is-error .mkt-form__label,
.mkt-form__check.is-error label {
  color: #e74c3c;
}
.mkt-form__gallery-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}
.mkt-form__gallery-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mkt-form__gallery-item .mkt-button-icon--close {
  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 [data-form-message] {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  background-color: rgba(19, 50, 89, 0.1);
  color: #133259;
}
.mkt-form__message [data-form-message].is-visible {
  display: block;
}
.mkt-form__message [data-form-message].is-error {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}
.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(19, 50, 89, 0.18);
  border-top-color: #133259;
  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-finder {
  padding-block: 4.5rem;
  background: #f8f8f5;
}
.mkt-finder__breadcrumbs {
  margin-bottom: 1.5rem;
}
.mkt-finder__heading {
  margin-bottom: 2rem;
}
.mkt-finder__filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.mkt-finder__filters--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.mkt-finder__filters--1 {
  grid-template-columns: minmax(0, 24rem);
}
.mkt-finder__field {
  min-width: 0;
}
.mkt-finder__control {
  display: block;
  min-height: 3.5rem;
  padding: 0.8rem 1rem;
  border-radius: 0;
}
.mkt-finder__active-filters {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}
.mkt-finder__active-filters[hidden] {
  display: none;
}
.mkt-finder__clear {
  color: #3b5bdb;
  border-color: #3b5bdb;
}
.mkt-finder__clear:hover, .mkt-finder__clear:focus {
  color: #ffffff;
  background-color: #3b5bdb;
  border-color: #3b5bdb;
}
.mkt-finder__results-summary {
  margin: 0;
  color: #3b5bdb;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 991.98px) {
  .mkt-finder__filters--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .mkt-finder {
    padding-block: 3rem;
  }
  .mkt-finder__filters {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .mkt-finder__active-filters {
    grid-template-columns: 1fr;
  }
  .mkt-finder__results-summary {
    text-align: left;
  }
}

.mkt-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.mkt-section-heading__main {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.mkt-section-heading__title {
  margin: 0;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.mkt-section-heading__subtitle {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
}
.mkt-section-heading--has-subtitle .mkt-section-heading__main {
  gap: 0.2rem;
}
.mkt-section-heading__view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  flex-shrink: 0;
  color: #283e9a;
  font-size: 1.25rem;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .mkt-section-heading__view-more {
    font-size: 1.1rem;
  }
}
.mkt-section-heading__view-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.mkt-section-heading__cta {
  flex-shrink: 0;
}
.mkt-section-heading--page {
  padding-block: 1.25rem;
}
@media (max-width: 767.98px) {
  .mkt-section-heading--page {
    padding-block: 0.75rem;
  }
}
.mkt-section-heading--page .mkt-section-heading__title {
  color: #283e9a;
  font-size: 2.5rem;
}
@media (max-width: 767.98px) {
  .mkt-section-heading--page .mkt-section-heading__title {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-section-heading--page .mkt-section-heading__title {
    font-size: 1.8rem;
  }
}
.mkt-section-heading--page .mkt-section-heading__subtitle {
  color: rgba(40, 62, 154, 0.72);
}
.mkt-section-heading--section .mkt-section-heading__title, .mkt-section-heading--section-sm .mkt-section-heading__title {
  color: #3b5bdb;
}
.mkt-section-heading--section .mkt-section-heading__subtitle, .mkt-section-heading--section-sm .mkt-section-heading__subtitle {
  color: rgba(59, 91, 219, 0.72);
}
.mkt-section-heading--section {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e5e5e5;
}
.mkt-section-heading--section .mkt-section-heading__main {
  padding-left: 0.85rem;
  border-left: 0.425rem solid #3b5bdb;
}
.mkt-section-heading--section .mkt-section-heading__title {
  font-size: 3rem;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .mkt-section-heading--section .mkt-section-heading__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-section-heading--section .mkt-section-heading__title {
    font-size: 1.8rem;
  }
}
.mkt-section-heading--section-sm {
  margin-bottom: 1.5rem;
}
.mkt-section-heading--section-sm .mkt-section-heading__main {
  gap: 0.5rem;
  padding-left: 0.85rem;
  border-left: 0.3rem solid #3b5bdb;
}
.mkt-section-heading--section-sm .mkt-section-heading__title {
  font-size: 2rem;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .mkt-section-heading--section-sm .mkt-section-heading__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-section-heading--section-sm .mkt-section-heading__title {
    font-size: 1.5rem;
  }
}

.mkt-input-shell {
  position: relative;
  width: 100%;
}
.mkt-input-shell__field {
  width: 100%;
  border: 1px solid #242424;
  background-color: #ffffff;
  color: #0a0a0a;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mkt-input-shell__field:focus {
  border-color: #133259;
  box-shadow: 0 0 0 0.18rem rgba(19, 50, 89, 0.16);
  outline: 0;
}
.mkt-input-shell__icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  pointer-events: none;
}
.mkt-input-shell--icon-left .mkt-input-shell__field {
  padding-left: 3.25rem;
}
.mkt-input-shell--light .mkt-input-shell__field {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.mkt-input-shell--light .mkt-input-shell__field::-moz-placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.mkt-input-shell--light .mkt-input-shell__field::placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.mkt-input-shell--light .mkt-input-shell__field:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 0.18rem rgba(255, 255, 255, 0.12);
}

.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;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 1.25rem 2rem;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.mkt-listing__load-more:hover, .mkt-listing__load-more:focus {
  text-decoration: none;
}
.mkt-listing__load-more:focus-visible {
  outline: 3px solid rgba(59, 91, 219, 0.5);
  outline-offset: 3px;
}
.mkt-listing__load-more:disabled, .mkt-listing__load-more[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.6;
}

@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(19, 50, 89, 0.72);
}
.mkt-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 2rem;
  color: #0a0a0a;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2rem 5rem rgba(19, 50, 89, 0.28);
}
.mkt-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.mkt-modal__heading {
  margin: 0 2.5rem 1rem 0;
  color: #133259;
}
.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: #133259;
}
.mkt-modal-sample-content__text > :last-child {
  margin-bottom: 0;
}

.mkt-most-read-posts__title {
  display: block;
  margin-bottom: 1rem;
  color: #3b5bdb;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.5rem;
}
.mkt-most-read-posts__list {
  display: grid;
  gap: 0;
}
.mkt-most-read-posts__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.mkt-most-read-posts__index {
  color: #242424;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.mkt-most-read-posts__content {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}
.mkt-most-read-posts__category {
  color: #3b5bdb;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mkt-most-read-posts__link {
  color: rgba(10, 10, 10, 0.8);
  line-height: 1.3;
  text-decoration: none;
}
.mkt-most-read-posts__link:hover {
  text-decoration: underline;
  color: #0a0a0a;
}

.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: #133259;
  background: rgba(19, 50, 89, 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: #133259;
  border-color: #133259;
}
.mkt-pill--secondary {
  color: #133259;
  background: #283e9a;
  border-color: #283e9a;
}
.mkt-pill--accent {
  color: #ffffff;
  background: #3b5bdb;
  border-color: #3b5bdb;
}
.mkt-pill--outline {
  color: #133259;
  background: transparent;
  border-color: rgba(19, 50, 89, 0.2);
}

.mkt-post-author-meta {
  display: grid;
  grid-template-columns: 3.125rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
}
.mkt-post-author-meta__media {
  width: 3.125rem;
}
.mkt-post-author-meta__avatar {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #e5e5e5;
}
.mkt-post-author-meta__avatar--sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #133259;
  border: 0;
}
.mkt-post-author-meta__avatar-icon {
  width: 1rem;
  height: 1rem;
  display: block;
}
.mkt-post-author-meta__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.mkt-post-author-meta__name-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: #6e6e6e;
  font-size: 1.25rem;
}
.mkt-post-author-meta__name-row a {
  color: #283e9a;
  text-decoration: none;
  font-weight: 600;
}
.mkt-post-author-meta__meta-row {
  color: #666666;
  font-size: 0.9rem;
  line-height: 1.6;
}
.mkt-post-author-meta--excerpt {
  grid-template-columns: 4rem minmax(0, 1fr);
}
.mkt-post-author-meta--excerpt .mkt-post-author-meta__media {
  width: 4rem;
}
.mkt-post-author-meta--excerpt .mkt-post-author-meta__avatar {
  width: 4rem;
  height: 4rem;
}
@media (max-width: 575.98px) {
  .mkt-post-author-meta {
    grid-template-columns: 1fr;
  }
  .mkt-post-author-meta--excerpt {
    grid-template-columns: 1fr;
  }
}

.mkt-post-share__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 575.98px) {
  .mkt-post-share__header {
    align-items: flex-start;
    flex-direction: column;
  }
}
.mkt-post-share__label {
  color: #0a0a0a;
  font-size: 1.25rem;
}
.mkt-post-share__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mkt-post-share__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  width: 2.5rem;
  height: 2.5rem;
}
.mkt-post-share__link:hover {
  color: #3b5bdb;
  border-color: #3b5bdb;
}
.mkt-post-share__icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.mkt-social-links__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
}
.mkt-social-links__icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.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: #133259;
  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(19, 50, 89, 0.08);
}
.mkt-tabs__button:focus-visible {
  outline: 3px solid rgba(59, 91, 219, 0.5);
  outline-offset: 3px;
}
.mkt-tabs__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.mkt-tabs__button.is-active {
  color: #ffffff;
  background: #133259;
  border-color: #133259;
}
.mkt-tabs__panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 50, 89, 0.12);
  border-radius: 8px;
  box-shadow: 0 1rem 2rem rgba(19, 50, 89, 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: #133259;
}
.mkt-tabs-sample-content__list {
  padding-left: 1.25rem;
  margin: 0;
}
.mkt-tabs-sample-content__list li + li {
  margin-top: 0.4rem;
}

.mkt-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.85rem 1rem;
  border: 1px solid #283e9a;
  border-radius: 0.25rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  color: #283e9a;
  background: transparent;
}
@media (max-width: 575.98px) {
  .mkt-tag {
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
  }
}
.mkt-tag:hover {
  background: #283e9a;
  color: #ffffff;
}
.mkt-tag--light {
  border: 0;
  color: #283e9a;
  background: #fbf4ec;
}
.mkt-tag--light:hover {
  background: rgb(246.5652173913, 231.8043478261, 214.9347826087);
  color: #283e9a;
}

.mkt-hero-1 {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(59, 91, 219, 0.22), transparent 30%), radial-gradient(circle at top left, rgba(40, 62, 154, 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-guest-signatures {
  background-color: #f8f8f5;
  padding-block: 2.5rem;
}
.mkt-guest-signatures__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.65rem;
  align-items: stretch;
}
@media (max-width: 991.98px) {
  .mkt-guest-signatures__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-guest-signatures__grid {
    grid-template-columns: 1fr;
  }
}
.mkt-guest-signatures__item {
  min-width: 0;
  height: 100%;
}

.mkt-franchise-finder-promo {
  padding-block: 4.5rem;
}
.mkt-franchise-finder-promo__sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.mkt-franchise-finder-promo__sector {
  text-decoration: none;
}

.mkt-franchise-recommendations {
  padding-block: 4.5rem;
  background: #fbf4ec;
}
.mkt-franchise-recommendations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 767.98px) {
  .mkt-franchise-recommendations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-franchise-recommendations__grid {
    grid-template-columns: 1fr;
  }
}

.mkt-guides-section {
  background-color: #f3f3fa;
}
.mkt-guides-section .mkt-section-heading {
  margin-bottom: 2rem;
}
.mkt-guides-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.65rem;
}
@media (max-width: 767.98px) {
  .mkt-guides-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.mkt-guides-section__item {
  min-width: 0;
}
.mkt-guides-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.mkt-highlight-section {
  padding: 4rem 0;
}
@media (max-width: 767.98px) {
  .mkt-highlight-section {
    padding: 3rem 0;
  }
}
@media (max-width: 575.98px) {
  .mkt-highlight-section {
    padding: 2.5rem 0;
  }
}

.mkt-highlight-section--primary {
  background-color: #133259;
  color: #ffffff;
}
.mkt-highlight-section--primary .mkt-card-post__title,
.mkt-highlight-section--primary .mkt-card-post__title a,
.mkt-highlight-section--primary .mkt-card-post__author,
.mkt-highlight-section--primary .mkt-card-post__excerpt,
.mkt-highlight-section--primary .mkt-card-post__excerpt p {
  color: #ffffff;
}
.mkt-highlight-section--primary .mkt-card-post__meta {
  color: #f9cb02;
}

.mkt-highlight-section--light {
  background-color: #f3f3fa;
}

.mkt-kiosk-section {
  background-color: #f8f8f5;
  padding-block: 3rem;
}
.mkt-kiosk-section .mkt-section-heading {
  margin-bottom: 2rem;
}
.mkt-kiosk-section__slider {
  overflow: hidden;
  padding-bottom: 1.5rem !important;
}
.mkt-kiosk-section__wrapper {
  align-items: stretch;
}
.mkt-kiosk-section .mkt-card-kiosk {
  width: auto;
}
.mkt-kiosk-section__scrollbar {
  left: 0 !important;
  width: 100% !important;
  cursor: grab !important;
}

.mkt-newsletter-section {
  width: 100%;
  background-color: #fbf4ec;
  padding: 7rem 0;
  color: #0a0a0a;
}
@media (max-width: 767.98px) {
  .mkt-newsletter-section {
    padding: 2.5rem 0;
  }
}
.mkt-newsletter-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}
@media (max-width: 767.98px) {
  .mkt-newsletter-section__grid {
    grid-template-columns: 1fr;
  }
}
.mkt-newsletter-section__content, .mkt-newsletter-section__form {
  min-width: 0;
}
.mkt-newsletter-section__form .mkt-form--newsletter.is-success .mkt-form__fields--newsletter,
.mkt-newsletter-section__form .mkt-form--newsletter.is-success .mkt-form__auxiliary {
  display: none;
}
.mkt-newsletter-section__form .mkt-form__fields--newsletter {
  display: block;
}
.mkt-newsletter-section__form .mkt-form__field--newsletter-email {
  min-width: 0;
}
.mkt-newsletter-section__form .mkt-form__inline-label {
  margin-bottom: 0.65rem;
  font-size: 1rem;
}
.mkt-newsletter-section__form .mkt-form__inline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: flex-start;
}
.mkt-newsletter-section__form .mkt-form__inline-control {
  min-width: 0;
}
.mkt-newsletter-section__form .mkt-form__inline-submit .mkt-button {
  min-height: calc(3.4rem + 2px);
  height: calc(3.4rem + 2px);
  white-space: nowrap;
}
.mkt-newsletter-section__form .mkt-form__auxiliary {
  margin-top: 1.25rem;
}
.mkt-newsletter-section__form .mkt-form__check {
  margin-top: 0;
}
@media (max-width: 575.98px) {
  .mkt-newsletter-section__form .mkt-form__inline-row {
    grid-template-columns: 1fr;
  }
  .mkt-newsletter-section__form .mkt-form__inline-submit,
  .mkt-newsletter-section__form .mkt-form__inline-submit .mkt-button {
    width: 100%;
  }
}
.mkt-newsletter-section__title {
  margin: 0 0 1rem;
}
.mkt-newsletter-section__text {
  margin: 0;
  max-width: 38rem;
  font-size: 1.25rem;
}

.mkt-posts-layout-1 {
  padding: 2.5rem 0 4rem;
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-1 {
    padding-bottom: 3rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-posts-layout-1 {
    padding-bottom: 2.5rem;
  }
}
.mkt-posts-layout-1__heading {
  margin-bottom: 2rem;
}
.mkt-posts-layout-1__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 1.65rem;
  align-items: start;
}
@media (max-width: 991.98px) {
  .mkt-posts-layout-1__grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-1__grid {
    grid-template-columns: 1fr;
  }
}
.mkt-posts-layout-1__editorial {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.65rem;
  min-width: 0;
}
@media (max-width: 991.98px) {
  .mkt-posts-layout-1__editorial {
    grid-template-columns: 1fr;
  }
}
.mkt-posts-layout-1__featured, .mkt-posts-layout-1__secondary-item, .mkt-posts-layout-1__editorial, .mkt-posts-layout-1__most-read {
  min-width: 0;
}
.mkt-posts-layout-1__secondary {
  display: grid;
  gap: 2rem;
  min-width: 0;
}
@media (max-width: 991.98px) {
  .mkt-posts-layout-1__secondary {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-1__secondary {
    grid-template-columns: 1fr;
  }
}
.mkt-posts-layout-1__card {
  height: 100%;
}
@media (max-width: 991.98px) {
  .mkt-posts-layout-1__most-read {
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-1__most-read {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .mkt-posts-layout-2 {
    padding-bottom: 3rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-posts-layout-2 {
    padding-bottom: 2.5rem;
  }
}
.mkt-posts-layout-2__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.65rem;
  align-items: start;
}
@media (max-width: 991.98px) {
  .mkt-posts-layout-2__grid {
    gap: 1.65rem 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.65rem 1rem;
  }
}
.mkt-posts-layout-2__item, .mkt-posts-layout-2__card {
  min-width: 0;
  height: 100%;
}

@media (max-width: 767.98px) {
  .mkt-posts-layout-3 {
    padding-bottom: 3rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-posts-layout-3 {
    padding-bottom: 2.5rem;
  }
}
.mkt-posts-layout-3__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.65rem;
  align-items: start;
}
@media (max-width: 991.98px) {
  .mkt-posts-layout-3__grid {
    grid-template-columns: 1fr;
  }
}
.mkt-posts-layout-3__featured, .mkt-posts-layout-3__secondary, .mkt-posts-layout-3__secondary-row, .mkt-posts-layout-3__secondary-item, .mkt-posts-layout-3__card {
  min-width: 0;
}
.mkt-posts-layout-3__card {
  height: 100%;
}
.mkt-posts-layout-3__secondary {
  display: grid;
  gap: 1.65rem;
}
.mkt-posts-layout-3__secondary-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.65rem;
}

@media (max-width: 767.98px) {
  .mkt-posts-layout-4 {
    padding-bottom: 3rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-posts-layout-4 {
    padding-bottom: 2.5rem;
  }
}
.mkt-posts-layout-4__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: stretch;
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-4__grid {
    grid-template-columns: 1fr;
  }
}
.mkt-posts-layout-4__main, .mkt-posts-layout-4__featured, .mkt-posts-layout-4__secondary, .mkt-posts-layout-4__secondary-row, .mkt-posts-layout-4__secondary-item, .mkt-posts-layout-4__aside, .mkt-posts-layout-4__card {
  min-width: 0;
}
.mkt-posts-layout-4__main, .mkt-posts-layout-4__secondary {
  display: grid;
  gap: 1.65rem;
}
.mkt-posts-layout-4__secondary-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.65rem;
}
@media (max-width: 575.98px) {
  .mkt-posts-layout-4__secondary-row {
    grid-template-columns: 1fr;
  }
}
.mkt-posts-layout-4__aside {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-4__aside {
    align-items: center;
  }
  .mkt-posts-layout-4__aside .mkt-ad-slot--skycraper,
  .mkt-posts-layout-4__aside .mkt-ad-slot--skyscraper {
    justify-content: center;
  }
  .mkt-posts-layout-4__aside .mkt-ad-slot--skycraper .mkt-ad-slot__media,
  .mkt-posts-layout-4__aside .mkt-ad-slot--skyscraper .mkt-ad-slot__media {
    margin-inline: auto;
  }
}
.mkt-posts-layout-4__card {
  height: 100%;
}
.mkt-posts-layout-4__banner-slot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1.5rem;
  min-height: 100%;
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-4__banner-slot {
    align-items: center;
  }
}

.mkt-posts-layout-5 {
  padding: 0 0 4rem;
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-5 {
    padding-bottom: 3rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-posts-layout-5 {
    padding-bottom: 2.5rem;
  }
}
.mkt-posts-layout-5__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.65rem;
  align-items: start;
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-5__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-posts-layout-5__grid {
    grid-template-columns: 1fr;
  }
}
.mkt-posts-layout-5__item, .mkt-posts-layout-5__card {
  min-width: 0;
  height: 100%;
}
@media (max-width: 767.98px) {
  .mkt-posts-layout-5__item:first-child {
    grid-column: 1/-1;
  }
}

@media (max-width: 767.98px) {
  .mkt-posts-layout-6 {
    padding-bottom: 3rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-posts-layout-6 {
    padding-bottom: 2.5rem;
  }
}
.mkt-posts-layout-6__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.65rem;
  align-items: start;
}
@media (max-width: 991.98px) {
  .mkt-posts-layout-6__grid {
    grid-template-columns: 1fr;
  }
}
.mkt-posts-layout-6__featured, .mkt-posts-layout-6__secondary, .mkt-posts-layout-6__secondary-item, .mkt-posts-layout-6__card {
  min-width: 0;
}
.mkt-posts-layout-6__card {
  height: 100%;
}
.mkt-posts-layout-6__secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .mkt-posts-layout-6__secondary {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .mkt-posts-layout-6__secondary .mkt-card-post--horizontal {
    display: grid;
    grid-template-columns: 17.1875rem minmax(0, 1fr);
    align-items: flex-start;
    gap: 1.5rem;
  }
  .mkt-posts-layout-6__secondary .mkt-card-post--horizontal .mkt-card-post__media {
    width: 17.1875rem;
    margin-bottom: 0;
  }
  .mkt-posts-layout-6__secondary .mkt-card-post--horizontal .mkt-card-post__body {
    min-width: 0;
  }
}

.mkt-specials-section {
  background-color: #ffffff;
}
.mkt-specials-section .mkt-section-heading {
  margin-bottom: 2rem;
}
.mkt-specials-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.65rem;
}
@media (max-width: 767.98px) {
  .mkt-specials-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.mkt-specials-section__item {
  min-width: 0;
}

.mkt-team-directory__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.mkt-team-directory__title {
  margin: 0;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.1;
}
.mkt-team-directory__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}
@media (max-width: 767.98px) {
  .mkt-team-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-team-directory__grid {
    grid-template-columns: 1fr;
  }
}
.mkt-team-directory__column {
  min-width: 0;
}
.mkt-team-directory__section-title {
  margin: 0 0 2rem;
  color: #283e9a;
  font-size: 1.25rem;
  line-height: 1.2;
}
.mkt-team-directory__subsections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mkt-team-directory__subsection {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mkt-team-directory__subsection-title {
  margin: 0;
  margin-bottom: 0.5rem;
  color: #283e9a;
  line-height: 1.35;
  font-weight: 600;
}
.mkt-team-directory__people {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mkt-team-directory__person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.mkt-team-directory__person-name {
  margin: 0;
  line-height: 1.35;
  font-weight: 600;
}
.mkt-team-directory__person-email {
  color: #0a0a0a;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  word-break: break-word;
}

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

.mkt-archive {
  padding-top: 3rem;
}
@media (max-width: 767.98px) {
  .mkt-archive {
    padding-top: 1.5rem;
  }
}
.mkt-archive--has-ads {
  padding-top: 0;
}
.mkt-archive__header {
  margin-bottom: 3rem;
}
.mkt-archive__related-topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding-block: 1.25rem;
}
.mkt-archive__related-topic {
  text-decoration: none;
}
.mkt-archive__content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
  gap: 2rem;
  align-items: stretch;
  padding-top: 6rem;
  margin-bottom: 8rem;
}
.mkt-archive__content-grid--has-campaign {
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .mkt-archive__content-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
  }
}
.mkt-archive__content-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mkt-archive__content-main {
  min-width: 0;
}
.mkt-archive__listing-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .mkt-archive__listing-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-archive__listing-items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .mkt-archive__listing .mkt-card-post--horizontal {
    display: grid;
    grid-template-columns: minmax(6rem, 30%) minmax(0, 1fr);
    align-items: flex-start;
    gap: 1rem;
  }
  .mkt-archive__listing .mkt-card-post--horizontal .mkt-card-post__media,
  .mkt-archive__listing .mkt-card-post--horizontal .mkt-card-post__body {
    width: 100%;
    flex-basis: auto;
  }
  .mkt-archive__listing .mkt-card-post--horizontal .mkt-card-post__media {
    margin-bottom: 0;
  }
  .mkt-archive__listing .mkt-card-post__excerpt {
    display: none;
  }
  .mkt-archive__listing .mkt-card-post__title {
    font-size: 1.05rem;
  }
  .mkt-archive__listing .mkt-card-post__author {
    display: none;
  }
  .mkt-archive__listing .mkt-card-post__media {
    aspect-ratio: 1.2;
  }
}
.mkt-archive__listing .mkt-listing__actions {
  margin-top: 4rem;
  justify-content: center;
}
.mkt-archive__description {
  max-width: 46rem;
  margin-top: 1rem;
  color: #0a0a0a;
}
.mkt-archive__description > *:last-child {
  margin-bottom: 0;
}

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

.mkt-search__results-count {
  margin: 1rem 0 0;
  font-size: 1.25rem;
}
@media (max-width: 767.98px) {
  .mkt-search__content-sidebar {
    display: none;
  }
}

.mkt-author__hero {
  padding: 2rem 0 3rem;
  background: #f8f8f5;
}
.mkt-author__breadcrumbs {
  margin-bottom: 2.5rem;
}
.mkt-author__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 23.75rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.mkt-author__photo-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: #e5e5e5;
}
.mkt-author__photo, .mkt-author__photo-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.mkt-author__photo-placeholder {
  background: #e5e5e5;
}
.mkt-author__profile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 0.2rem;
}
.mkt-author__name {
  margin: 0;
  color: #283e9a;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1.1;
}
.mkt-author__cargo {
  margin: 0.5rem 0 0;
  color: #6e6e6e;
  font-size: 1.25rem;
}
.mkt-author__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.mkt-author__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  color: #ffffff;
  background: #242424;
  border-radius: 4px;
}
.mkt-author__social-link:hover, .mkt-author__social-link:focus-visible {
  background: #283e9a;
}
.mkt-author__social-icon {
  display: block;
  width: 0.9rem;
  height: auto;
}
.mkt-author__divider {
  width: 100%;
  height: 1px;
  margin: 1rem 0 2rem;
  border: 0;
  background: rgba(36, 36, 36, 0.18);
}
.mkt-author__biography {
  color: #6e6e6e;
  font-size: 1.1rem;
  line-height: 1.65;
}
.mkt-author__biography > :first-child {
  margin-top: 0;
}
.mkt-author__biography > :last-child {
  margin-bottom: 0;
}
.mkt-author__featured-layout {
  padding-top: 4rem;
}
.mkt-author__listing-section {
  padding: 5rem 0 8rem;
}
.mkt-author__listing-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.mkt-author__listing .mkt-listing__actions {
  justify-content: center;
  margin-top: 4rem;
}
.mkt-author__empty {
  margin: 0;
  font-size: 1.25rem;
}
@media (max-width: 991.98px) {
  .mkt-author__hero-grid {
    grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
  }
}
@media (max-width: 767.98px) {
  .mkt-author__hero {
    padding: 1.5rem 0 2.5rem;
  }
  .mkt-author__breadcrumbs {
    margin-bottom: 1.75rem;
  }
  .mkt-author__hero-grid {
    grid-template-columns: minmax(0, 13rem) minmax(0, 1fr);
  }
  .mkt-author__listing-section {
    padding: 4rem 0 6rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-author__hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mkt-author__photo-wrap {
    max-width: 18rem;
  }
  .mkt-author__name {
    font-size: 2rem;
  }
  .mkt-author__divider {
    margin-bottom: 1.5rem;
  }
  .mkt-author__listing .mkt-card-post--horizontal {
    display: grid;
    grid-template-columns: minmax(6rem, 30%) minmax(0, 1fr);
    align-items: flex-start;
    gap: 1rem;
  }
  .mkt-author__listing .mkt-card-post--horizontal .mkt-card-post__media,
  .mkt-author__listing .mkt-card-post--horizontal .mkt-card-post__body {
    width: 100%;
    flex-basis: auto;
  }
  .mkt-author__listing .mkt-card-post--horizontal .mkt-card-post__media {
    margin-bottom: 0;
  }
  .mkt-author__listing .mkt-card-post__excerpt,
  .mkt-author__listing .mkt-card-post__author {
    display: none;
  }
  .mkt-author__listing .mkt-card-post__title {
    font-size: 1.05rem;
  }
  .mkt-author__listing .mkt-card-post__media {
    aspect-ratio: 1.2;
  }
}

.mkt-directory-archive__featured {
  background: #ffffff;
}
.mkt-directory-archive__results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.mkt-directory-archive__listing {
  background: #ffffff;
}
.mkt-directory-archive__listing-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.mkt-directory-archive__listing-item, .mkt-directory-archive__featured-item {
  min-width: 0;
}
.mkt-directory-archive__actions {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.mkt-directory-archive .is-hidden {
  display: none;
}
@media (max-width: 767.98px) {
  .mkt-directory-archive__results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-directory-archive__results-grid, .mkt-directory-archive__listing-items {
    grid-template-columns: 1fr;
  }
}

.mkt-blog-archive__header {
  margin-bottom: 3rem;
}
.mkt-blog-archive__description {
  max-width: 46rem;
  margin-top: 1rem;
  color: #0a0a0a;
}
.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: #133259;
  background: #ffffff;
  border: 1px solid rgba(19, 50, 89, 0.12);
  border-radius: 999px;
}
.mkt-blog-filters__link:hover, .mkt-blog-filters__link.is-active {
  color: #ffffff;
  background: #133259;
  border-color: #133259;
}

.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: #133259;
  background: #ffffff;
  border: 1px solid rgba(19, 50, 89, 0.12);
  border-radius: 999px;
}
.mkt-blog-pagination .page-numbers .current {
  color: #ffffff;
  background: #133259;
  border-color: #133259;
}

.mkt-blog-single__date, .mkt-blog-single__author, .mkt-blog-single__categories {
  color: #283e9a;
  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: #3b5bdb;
}
.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: #0a0a0a;
}
.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(59, 91, 219, 0.45);
}
.mkt-blog-single__footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(19, 50, 89, 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(19, 50, 89, 0.12);
  border-radius: 8px;
}
.mkt-blog-single__nav-label {
  display: block;
  margin-bottom: 0.25rem;
  color: #283e9a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mkt-blog-single__nav-title {
  color: #133259;
}
.mkt-blog-single__related {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(19, 50, 89, 0.12);
}
.mkt-blog-single__related-heading {
  margin-bottom: 2rem;
}

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

.mkt-company-template__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .mkt-company-template__cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-company-template__cards-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-contact__hero {
  background-color: #f8f8f5;
}
.mkt-contact__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.mkt-contact__hero-content, .mkt-contact__hero-form {
  min-width: 0;
}
.mkt-contact__hero-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
.mkt-contact__hero-text {
  color: #6e6e6e;
}
.mkt-contact__hero-text > :first-child {
  margin-top: 0;
}
.mkt-contact__hero-text > :last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .mkt-contact__hero-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-home__posts-layout-1--after-billboard {
  padding-top: 0;
}
.mkt-home__highlight {
  padding-bottom: 4rem;
}
.mkt-home__highlight--no-billboard {
  margin-top: 4rem;
}
.mkt-home__highlight__heading {
  margin-bottom: 3rem;
}
.mkt-home__highlight__heading-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .mkt-home__highlight__heading-inner {
    gap: 1rem;
  }
}
.mkt-home__highlight__heading-brand svg {
  width: 360px;
  height: auto;
}
@media (max-width: 991.98px) {
  .mkt-home__highlight__heading-brand svg {
    width: 280px;
  }
}
@media (max-width: 767.98px) {
  .mkt-home__highlight__heading-brand svg {
    width: 200px;
  }
}
@media (max-width: 575.98px) {
  .mkt-home__highlight__heading-brand svg {
    width: 160px;
    position: relative;
    top: 1px;
  }
}
.mkt-home__highlight__heading-title {
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.2;
  color: #f9cb02;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .mkt-home__highlight__heading-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .mkt-home__highlight__heading-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-home__highlight__heading-title {
    font-size: 1rem;
    line-height: 1.4;
    position: relative;
    bottom: 1px;
  }
}
.mkt-home__highlight__heading-separator {
  width: 1px;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  background-color: #ffffff;
}
@media (max-width: 575.98px) {
  .mkt-home__highlight .mkt-posts-layout-2__grid {
    grid-template-columns: 1fr;
  }
}

.mkt-blog-single {
  padding-top: 3.5rem;
}
.mkt-blog-single--has-billboard {
  padding-top: 0;
}
.mkt-blog-single__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.mkt-blog-single__hero-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}
.mkt-blog-single__hero-breadcrumbs a {
  color: #0a0a0a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  font-weight: 600;
}
.mkt-blog-single__hero-breadcrumbs a:last-child {
  color: #3b5bdb;
}
.mkt-blog-single__hero-breadcrumb-separator {
  color: #0a0a0a;
}
.mkt-blog-single__hero-breadcrumb-current {
  color: #3b5bdb;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.mkt-blog-single__hero-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  max-width: 20rem;
  padding-block: 1.5rem;
}
.mkt-blog-single__hero-signature-media {
  display: flex;
  justify-content: center;
}
.mkt-blog-single__hero-signature-image, .mkt-blog-single__hero-signature-placeholder {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.mkt-blog-single__hero-signature-placeholder {
  background-color: rgba(243, 243, 250, 0.9);
}
.mkt-blog-single__hero-signature-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
.mkt-blog-single__hero-signature-name {
  line-height: 1.1;
}
.mkt-blog-single__hero-signature-description {
  color: #0a0a0a;
  font-size: 0.8rem;
}
.mkt-blog-single__hero-title {
  margin-block: 0;
  text-align: center;
  width: 80%;
  font-size: 2.75rem;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.mkt-blog-single__hero-excerpt {
  width: 80%;
  text-align: center;
  color: #0a0a0a;
  font-size: 1.25rem;
}
.mkt-blog-single__hero-excerpt p {
  margin-block: 0;
}
.mkt-blog-single__hero-paid {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-block: 1.6rem;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 1rem;
}
.mkt-blog-single__hero-paid-label {
  color: #666666;
  font-size: 0.9rem;
  line-height: 1.2;
}
.mkt-blog-single__hero-paid-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.mkt-blog-single__hero-paid-logo {
  display: block;
  height: 3rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.mkt-blog-single__hero-paid-name {
  font-size: 1.25rem;
  line-height: 1.2;
}
.mkt-blog-single__hero-media {
  width: 100%;
  margin: 0;
  margin-top: 2rem;
}
.mkt-blog-single__hero-video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #242424;
  border-radius: 8px;
}
.mkt-blog-single__hero-video-embed, .mkt-blog-single__hero-video-player {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.mkt-blog-single__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mkt-blog-single__hero-image-frame {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.mkt-blog-single__hero-caption {
  margin-top: 0.75rem;
  text-align: left;
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.4;
}
.mkt-blog-single__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}
.mkt-blog-single__content-grid--has-sidebar {
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
  gap: 2rem;
}
.mkt-blog-single__content-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
}
.mkt-blog-single__content-sidebar {
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
  min-width: 0;
}
.mkt-blog-single__post-content {
  padding-left: 5rem;
  min-width: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}
.mkt-blog-single__post-content h2,
.mkt-blog-single__post-content h3,
.mkt-blog-single__post-content h4,
.mkt-blog-single__post-content h5,
.mkt-blog-single__post-content h6 {
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.mkt-blog-single__post-content .wp-block-image {
  display: block;
  width: 100%;
  max-width: 737px;
  margin-inline: 0;
}
.mkt-blog-single__post-content .wp-block-image.alignwide, .mkt-blog-single__post-content .wp-block-image.alignfull, .mkt-blog-single__post-content .wp-block-image.alignleft, .mkt-blog-single__post-content .wp-block-image.alignright, .mkt-blog-single__post-content .wp-block-image.aligncenter {
  width: 100%;
  max-width: 737px;
  margin-inline: 0;
}
.mkt-blog-single__post-content .wp-block-image a {
  display: block;
  max-width: 100%;
}
.mkt-blog-single__post-content .wp-block-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.mkt-blog-single__post-content .wp-block-image figcaption {
  width: 100%;
}
.mkt-blog-single__post-content > img,
.mkt-blog-single__post-content > p img {
  max-width: 100%;
  height: auto;
}
.mkt-blog-single__post-content .wp-block-button {
  margin-block: 1rem 0;
}
.mkt-blog-single__post-content .wp-block-button__link,
.mkt-blog-single__post-content .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 1.25rem 2rem;
  border-radius: 0;
  color: #ffffff;
  background-color: #133259;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.mkt-blog-single__post-content .wp-block-button__link:hover, .mkt-blog-single__post-content .wp-block-button__link:focus,
.mkt-blog-single__post-content .wp-element-button:hover,
.mkt-blog-single__post-content .wp-element-button:focus {
  color: #ffffff;
  background-color: #283e9a;
  border-color: #283e9a;
  text-decoration: none;
}
.mkt-blog-single__post-content .wp-block-button__link:focus-visible,
.mkt-blog-single__post-content .wp-element-button:focus-visible {
  outline: 3px solid rgba(59, 91, 219, 0.5);
  outline-offset: 3px;
}
.mkt-blog-single__post-content blockquote,
.mkt-blog-single__post-content .wp-block-quote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid #3b5bdb;
  background-color: rgba(243, 243, 250, 0.75);
  color: #283e9a;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
}
.mkt-blog-single__post-content blockquote p,
.mkt-blog-single__post-content .wp-block-quote p {
  margin: 0;
}
.mkt-blog-single__post-content blockquote cite,
.mkt-blog-single__post-content blockquote .wp-block-quote__citation,
.mkt-blog-single__post-content .wp-block-quote cite,
.mkt-blog-single__post-content .wp-block-quote .wp-block-quote__citation {
  display: block;
  margin-top: 1rem;
  color: #6e6e6e;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
}
.mkt-blog-single__related-topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
}
.mkt-blog-single__related-topics-label {
  color: #0a0a0a;
}
.mkt-blog-single__related-topic {
  text-decoration: none;
}
.mkt-blog-single__recommended {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mkt-blog-single__recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.mkt-blog-single__recommended-item {
  min-width: 0;
}
@media (max-width: 767.98px) {
  .mkt-blog-single {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .mkt-blog-single__hero-signature-image, .mkt-blog-single__hero-signature-placeholder {
    width: 9rem;
    height: 9rem;
  }
  .mkt-blog-single__hero-signature-name {
    font-size: 1.625rem;
  }
  .mkt-blog-single__hero-title {
    max-width: 100%;
  }
  .mkt-blog-single__hero-excerpt {
    max-width: 100%;
  }
  .mkt-blog-single__hero-paid {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .mkt-blog-single__hero-paid-logo {
    max-width: 12rem;
    max-height: 3rem;
  }
  .mkt-blog-single__content-grid {
    grid-template-columns: 1fr;
  }
  .mkt-blog-single__content-sidebar {
    display: none;
  }
  .mkt-blog-single__post-content {
    padding-left: 0;
  }
  .mkt-blog-single__recommended-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-blog-single__recommended-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-directory-single__hero,
.mkt-franchise-single__hero {
  padding: 3rem 0 4.5rem;
  background: #fbf5f2;
}
.mkt-directory-single__breadcrumbs,
.mkt-franchise-single__breadcrumbs {
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
}
.mkt-directory-single__hero-grid,
.mkt-franchise-single__hero-grid {
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.mkt-directory-single__brand-column,
.mkt-franchise-single__brand-column {
  display: flex;
  flex-direction: column;
}
.mkt-directory-single__logo-frame,
.mkt-franchise-single__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  padding: 1.5rem;
  background: #ffffff;
}
.mkt-directory-single__logo,
.mkt-franchise-single__logo {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mkt-directory-single__actions,
.mkt-franchise-single__actions {
  display: flex;
  flex-wrap: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.5rem;
  gap: 0.75rem;
}
.mkt-directory-single__action,
.mkt-franchise-single__action {
  flex: 1 1 0;
  padding-inline: 0.85rem;
  white-space: nowrap;
}
.mkt-directory-single__hero-content,
.mkt-franchise-single__hero-content {
  padding-top: 0.15rem;
}
.mkt-directory-single__sector,
.mkt-franchise-single__sector {
  display: inline-flex;
  margin-bottom: 1.65rem;
  padding: 0.35rem 0.75rem;
  color: #283e9a;
  background: #f3f3fa;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.mkt-directory-single__title,
.mkt-franchise-single__title {
  max-width: 58rem;
  margin: 0 0 1.65rem;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.12;
}
.mkt-directory-single__description,
.mkt-franchise-single__description {
  max-width: 54rem;
  font-size: 0.875rem;
}
.mkt-directory-single__description > :first-child,
.mkt-franchise-single__description > :first-child {
  margin-top: 0;
}
.mkt-directory-single__description > :last-child,
.mkt-franchise-single__description > :last-child {
  margin-bottom: 0;
}
.mkt-directory-single__featured-media,
.mkt-franchise-single__featured-media {
  padding-bottom: 6rem;
  padding-top: 4rem;
}
.mkt-directory-single__featured-figure,
.mkt-franchise-single__featured-figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0;
}
.mkt-directory-single__featured-image,
.mkt-franchise-single__featured-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mkt-directory-single__featured-caption,
.mkt-franchise-single__featured-caption {
  margin-top: 0.65rem;
  color: #6e6e6e;
  font-size: 0.8rem;
}
.mkt-directory-single__section-title, .mkt-directory-single__story-title,
.mkt-franchise-single__section-title,
.mkt-franchise-single__story-title {
  margin: 0 0 2.25rem;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  text-transform: uppercase;
}
.mkt-directory-single__story,
.mkt-franchise-single__story {
  padding-top: 2rem;
}
.mkt-directory-single__story-inner,
.mkt-franchise-single__story-inner {
  max-width: 52rem;
  margin-inline: auto;
}
.mkt-directory-single__story-block + .mkt-directory-single__story-block, .mkt-directory-single__video,
.mkt-directory-single__story-block + .mkt-franchise-single__story-block,
.mkt-franchise-single__video,
.mkt-franchise-single__story-block + .mkt-directory-single__story-block,
.mkt-franchise-single__story-block + .mkt-franchise-single__story-block {
  margin-top: 4rem;
}
.mkt-directory-single__story-title,
.mkt-franchise-single__story-title {
  margin-bottom: 1.7rem;
}
.mkt-directory-single__story-text,
.mkt-franchise-single__story-text {
  font-size: 1.25rem;
  line-height: 1.6;
}
.mkt-directory-single__story-text > :first-child,
.mkt-franchise-single__story-text > :first-child {
  margin-top: 0;
}
.mkt-directory-single__story-text > :last-child,
.mkt-franchise-single__story-text > :last-child {
  margin-bottom: 0;
}
.mkt-directory-single__video,
.mkt-franchise-single__video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.mkt-directory-single__video iframe,
.mkt-directory-single__video video,
.mkt-franchise-single__video iframe,
.mkt-franchise-single__video video {
  width: 100%;
  height: 100%;
  border: 0;
}
.mkt-directory-single__contact,
.mkt-franchise-single__contact {
  background: #f8f8f5;
}
.mkt-directory-single__contact-grid,
.mkt-franchise-single__contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}
.mkt-directory-single__contact-heading .mkt-directory-single__section-title,
.mkt-directory-single__contact-heading .mkt-franchise-single__section-title,
.mkt-franchise-single__contact-heading .mkt-directory-single__section-title,
.mkt-franchise-single__contact-heading .mkt-franchise-single__section-title {
  margin-bottom: 0;
}
.mkt-directory-single__related-content-grid,
.mkt-franchise-single__related-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .mkt-directory-single__hero,
  .mkt-franchise-single__hero {
    padding: 2rem 0 3rem;
  }
  .mkt-directory-single__hero-grid,
  .mkt-franchise-single__hero-grid {
    grid-template-columns: 10rem minmax(0, 1fr);
  }
  .mkt-directory-single__related-content-grid,
  .mkt-franchise-single__related-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .mkt-directory-single__hero-grid, .mkt-directory-single__contact-grid, .mkt-directory-single__related-content-grid,
  .mkt-franchise-single__hero-grid,
  .mkt-franchise-single__contact-grid,
  .mkt-franchise-single__related-content-grid {
    grid-template-columns: 1fr;
  }
  .mkt-directory-single__brand-column,
  .mkt-franchise-single__brand-column {
    max-width: 12rem;
  }
  .mkt-directory-single__section-title, .mkt-directory-single__story-title,
  .mkt-franchise-single__section-title,
  .mkt-franchise-single__story-title {
    margin-bottom: 1.5rem;
  }
}

.mkt-franchise-single__intro-facts {
  display: grid;
  gap: 0.2rem;
  padding: 0;
  margin: 0 0 1.75rem;
}
.mkt-franchise-single__intro-fact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.mkt-franchise-single__intro-fact dt {
  font-weight: 700;
}
.mkt-franchise-single__intro-fact dd {
  margin: 0;
}
.mkt-franchise-single__technical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 2rem;
  padding: 0;
  margin: 0;
}
.mkt-franchise-single__technical-item {
  min-width: 0;
  min-height: 5.2rem;
  padding: 0 1.5rem;
  border-left: 1px solid #e5e5e5;
}
.mkt-franchise-single__technical-item:nth-child(4n+1) {
  padding-left: 0;
  border-left: 0;
}
.mkt-franchise-single__technical-item dt {
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}
.mkt-franchise-single__technical-item dd {
  margin: 0;
  color: #6e6e6e;
  font-size: 1.1rem;
  line-height: 1.4;
}
.mkt-franchise-single__technical-item dd p {
  margin: 0;
}
.mkt-franchise-single__offer {
  padding-bottom: 6rem;
}
.mkt-franchise-single__offer-link {
  display: block;
}
.mkt-franchise-single__offer-image {
  display: block;
  width: 100%;
  height: auto;
}
.mkt-franchise-single__recommendations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.mkt-franchise-single__recommendations {
  padding-top: 3rem;
}
.mkt-franchise-single__recommendations-title {
  margin: 0 0 2.25rem;
  color: #3b5bdb;
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
}
@media (max-width: 991.98px) {
  .mkt-franchise-single__technical-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mkt-franchise-single__technical-item:nth-child(4n+1) {
    padding-left: 1.5rem;
    border-left: 1px solid #e5e5e5;
  }
  .mkt-franchise-single__technical-item:nth-child(3n+1) {
    padding-left: 0;
    border-left: 0;
  }
}
@media (max-width: 767.98px) {
  .mkt-franchise-single__technical-grid, .mkt-franchise-single__recommendations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mkt-franchise-single__technical-item:nth-child(3n+1) {
    padding-left: 1.5rem;
    border-left: 1px solid #e5e5e5;
  }
  .mkt-franchise-single__technical-item:nth-child(2n+1) {
    padding-left: 0;
    border-left: 0;
  }
}
@media (max-width: 575.98px) {
  .mkt-franchise-single__technical-grid, .mkt-franchise-single__recommendations-grid {
    grid-template-columns: 1fr;
  }
  .mkt-franchise-single__technical-item, .mkt-franchise-single__technical-item:nth-child(2n+1), .mkt-franchise-single__technical-item:nth-child(3n+1), .mkt-franchise-single__technical-item:nth-child(4n+1) {
    min-height: 0;
    padding: 0 0 1.25rem;
    border-bottom: 1px solid #e5e5e5;
    border-left: 0;
  }
  .mkt-franchise-single__recommendations-title {
    margin-bottom: 1.5rem;
  }
}

.mkt-post-list-single {
  padding-top: 3rem;
}
.mkt-post-list-single__related-topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding-block: 1.25rem;
}
.mkt-post-list-single__related-topic {
  text-decoration: none;
}
.mkt-post-list-single__listing-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.mkt-post-list-single__listing-item {
  min-width: 0;
}
@media (max-width: 767.98px) {
  .mkt-post-list-single {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}

.mkt-legal h1,
.mkt-legal h2,
.mkt-legal h3,
.mkt-legal h4,
.mkt-legal h5,
.mkt-legal h6 {
  font-family: "Sofia Sans", "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.mkt-legal__content-inner > :first-child {
  margin-top: 0;
}
.mkt-legal__content-inner > :last-child {
  margin-bottom: 0;
}
.mkt-legal__content-inner p,
.mkt-legal__content-inner li,
.mkt-legal__content-inner blockquote,
.mkt-legal__content-inner figcaption,
.mkt-legal__content-inner address {
  font-size: 1.25rem;
}

.mkt-kiosko__subscription {
  background-color: #f3f3fa;
}
.mkt-kiosko__subscription-intro {
  max-width: 70rem;
}
.mkt-kiosko__subscription-title {
  margin: 0 0 0.875rem;
  font-size: 2.5rem;
}
.mkt-kiosko__subscription-text {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
}
.mkt-kiosko__subscription-notice {
  margin: 0.8rem 0 0;
  font-size: 0.875rem;
}
.mkt-kiosko__subscription-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 24.5rem));
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}
.mkt-kiosko__subscription-card {
  display: grid;
  grid-template-rows: auto minmax(3.9rem, 1fr) auto auto;
  gap: 1.25rem;
  min-width: 0;
  padding: 2.5rem 2.1rem 1.4rem;
  text-align: center;
  background-color: #ffffff;
}
.mkt-kiosko__subscription-card-title, .mkt-kiosko__subscription-card-text, .mkt-kiosko__subscription-card-price {
  margin: 0;
}
.mkt-kiosko__subscription-card-title {
  font-size: 2rem;
}
.mkt-kiosko__subscription-card-text {
  align-self: start;
  font-size: 0.875rem;
  line-height: 1.6;
}
.mkt-kiosko__subscription-card-price {
  align-self: end;
  font-size: 1.25rem;
  font-weight: 700;
}
.mkt-kiosko__subscription-card-link {
  width: 100%;
  min-height: 3.75rem;
}
.mkt-kiosko__guides {
  background-color: #ffffff;
}
@media (max-width: 767.98px) {
  .mkt-kiosko__subscription-title {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .mkt-kiosko__subscription-title {
    font-size: 1.65rem;
  }
  .mkt-kiosko__subscription-text {
    font-size: 1rem;
  }
  .mkt-kiosko__subscription-cards {
    grid-template-columns: minmax(0, 24.5rem);
  }
  .mkt-kiosko__subscription-card {
    padding: 2rem 1.5rem 1.25rem;
  }
  .mkt-kiosko__subscription-card-title {
    font-size: 1.75rem;
  }
}