.header {
  width: 100%;
  z-index: 100;
  position: relative;
  padding: 0 2rem;
  transform: translate3d(0, 0, 0);
  transition: transform var(--transition-timing-function) var(--transition-duration);
}
[data-header-overlap] .header:not(.stuck) {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: none !important;
  color: var(--color-white);
}
[data-header-overlap] .header:not(.stuck) .header-logo--light {
  display: block;
}
[data-header-overlap] .header:not(.stuck) .header-logo--dark {
  display: none;
}
[data-header-dark] .header {
  background: var(--color-accent);
  color: var(--color-white);
}
[data-header-light] .header {
  background: var(--color-white);
  color: inherit;
}
[data-header-dark] .header-logo--light,
[data-header-light] .header-logo--dark {
  display: block;
}
[data-header-dark] .header-logo--dark,
[data-header-light] .header-logo--light {
  display: none;
}
.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-rich-text {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}
.header-rich-text * {
  margin: 0;
}
/**
 * We don't want a fixed header on mobile.
 */
@media (min-width: 768px) {
  [data-header-always-sticky] .header,
  .header.stuck {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    box-shadow: 0px 11px 20px 0px rgba(0, 0, 0, 0.05);
    transform: translate3d(0, 0, 0);
  }
  [data-header-light][data-header-always-sticky] .header,
  [data-header-light].header.stuck {
    background: var(--color-white);
  }
  [data-header-dark][data-header-always-sticky] .header,
  [data-header-dark].header.stuck {
    background: var(--color-accent);
  }
  .header.sticking,
  .header.unsticking {
    transform: translate3d(0, -100%, 0);
  }
  .header.sticking,
  .header:not(.stuck, .sticking, .unsticking) {
    transition-duration: 0s;
  }
}
.header .header-navigation {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  flex: 1;
  margin: 0 2rem;
}
.header .header-navigation li:before {
  display: none;
}
@media (max-width: 1139px) {
  .header .header-navigation nav {
    display: none;
  }
}
.header .header-navigation .menu-item {
  position: relative;
}
.header .header-navigation .menu-item:first-of-type {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.header .header-navigation .menu-item:last-of-type {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.header .header-navigation .menu-item:not(:last-of-type) {
  border-bottom: 1px solid rgb(0 0 0 / .1);
}
.header .header-navigation .menu-item > a {
  display: block;
  padding: 0.5rem;
  font-size: 13px;
  color: currentColor;
  font-weight: bold;
  position: relative;
  line-height: 2;
  transition: none;
}
.header .header-navigation .menu-item:hover > ul,
.header .header-navigation .menu-item.focus > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  max-height: 1000px;
}
.header .header-navigation .menu-item:hover > a:after {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.header .header-navigation .submenu.level-1 {
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  gap: 1rem;
}
.header .header-navigation li {
  margin: 0;
  list-style: none;
}
.header .header-navigation .submenu.level-1 > .menu-item {
  margin: 1rem 0;
  border: none;
}
/**
 * Increase the padding on top level navigation items that have children in order
 * to make room for the arrow.
 */
.header .header-navigation .submenu.level-1 > .menu-item.has-submenu > .menu-link {
  padding: 0.5rem calc(1rem + 12px) 0.5rem 0.5rem;
}

.header .header-navigation .submenu.level-1 .menu-item a::before {
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  bottom: 5px;
  z-index: 0;
  background: var(--color-primary);
  border-radius: var(--border-radius);
  pointer-events: none;
  left: 80%;
  right: 80%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-timing-function) var(--transition-duration);
}
.header .header-navigation .submenu.level-1 .menu-item:hover a::before,
.header .header-navigation .submenu.level-1 .menu-item:focus a::before {
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
}
.header .header-navigation .submenu:not(.level-1) {
  position: absolute;
  width: 100%;
  opacity: 0;
  min-width: 180px;
  max-width: 240px;
  visibility: hidden;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: var(--color-white);
  border-radius: var(--border-radius);
  transform: translateY(-20px);
  max-height: 0;
  box-shadow: 0px 8px 16px rgb(0 0 0 / 5%);
  border: 1px solid rgb(0 0 0 / 10%);
  transition: var(--transition-timing-function) var(--transition-duration);
}
.header .header-navigation .submenu:not(.level-1) .submenu:not(.level-1) {
  left: 100%;
  top: 0;
}
.header .header-navigation .submenu>.has-submenu>.menu-link::after {
  content: '';
  color: inherit;
  box-shadow: inset -2px 2px 0 0;
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform-origin: 50% 50%;
  transform: translate(0,-6px) rotate(135deg);
  transition: transform .15s ease-in-out;
}
.header .header-navigation .submenu:not(.level-1)>.has-submenu>.menu-link::after {
  position: relative;
  transform: rotate(45deg);
  right: unset;
  top: unset;
}
.header .header-navigation .submenu:not(.level-1) .menu-item:first-child.active::before,
.header .header-navigation .submenu:not(.level-1) .menu-item:first-child:hover::before,
.header .header-navigation .submenu:not(.level-1) .menu-item:first-child:focus::before {
  background: var(--color-primary);
}
.header .header-navigation .submenu:not(.level-1) .menu-item:first-child::before {
  display: none;
  /* content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: 20px;
  background: var(--color-white);
  transform: rotate(45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  transition: 0.2s ease-in-out; */
}
.header .header-navigation .submenu:not(.level-1) .menu-item a {
  max-width: 240px;
  padding: 0.5rem 1rem;
  color: #000; /* @todo change this */
  display: block;
  position: relative;
  margin: 0;
  font-weight: 400;
  text-transform: none;
  outline-offset: -1px;
  width: 100%;
  border-radius: 0;
  align-items: center;
  justify-content: space-between;
  display: flex;
  transition: var(--transition-timing-function) var(--transition-duration);
}
.header .header-navigation .submenu:not(.level-1) .menu-item a::before {
  display: none;
}
.header .header-navigation .submenu:not(.level-1) > .menu-item:hover > a {
  background: var(--color-section-secondary);
  color: var(--color-black);
}
.header .header-navigation .submenu:not(.level-1) .menu-link:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
  border-radius: var(--border-radius);
}
.header .header-links-mobile,
.header .header-links-search,
.header-links-language {
  transition: none;
  color: inherit;
  padding: 8px;
  flex: 1 0 auto;
  align-items: center;
  aspect-ratio: 1;
  border-radius: var(--border-radius);
}
.header .header-links-search,
.header-links-language {
  border-radius: var(--border-radius);
}
.header-skip {
  --button-border-radius: 0;
  position: absolute;
  transform: translateY(-150%);
  width: 100% !important;
  left: 0;
  height: 100%;
  align-items: center;
  z-index: 99;
}
.header-skip:focus {
  transform: translateY(0%);
}
.header > .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0;
}
.header-logo {
  margin: 0.5rem 0;
}
.header-logo a {
  align-items: center;
  display: inline-flex;
  padding: 0.5rem;
  border-radius: var(--border-radius);
}
.header-logo img {
  max-height: 42px;
  max-width: 100px;
  border-radius: 0;
  object-fit: contain;
}
.header-logo > span {
  display: flex;
  align-items: center;
}
.header-logo--light {
  display: none;
}
.header-navigation {
  margin-left: auto;
}
.header .header-links-cta {
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .header-links-cta + .header-links-cta {
    display: none;
  }
}
@media (max-width: 500px) {
  .header-links-cta {
    display: none !important;
  }
}

button.header-links-mobile {
  display: none;
}

.header-navigation:not(.header-navigation--no-nav) ~ .header-links .header-links-mobile {
  display: flex;
}
@media (min-width: 1140px) {
  .header-navigation:not(.header-navigation--no-nav) ~ .header-links .header-links-mobile {
    display: none;
  }
}

@keyframes slide-in-nav {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  --search-modal-background: var(--color-accent);
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--search-modal-background);
  opacity: 0;
  visibility: hidden;
  transition: 250ms ease;
  z-index: 1000;
  padding: 0 2rem;
}
.search-modal--contained {
  height: var(--header-height);
  transform: translate3d(0, -100%, 0);
  transition: var(--transition-timing-function) var(--transition-duration);
}
.search-modal-close {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: none;
  border: 0 none;
  z-index: 1;
  cursor: default;
  height: 30px;
  top: 2rem;
  right: 0;
  position: absolute;
  left: unset;
}
.search-modal--contained .search-modal-close {
  position: relative;
  margin-left: 1rem;
  height: auto;
  width: auto;
  top: unset;
  right: unset;
  border-radius: var(--border-radius);
}
.search-modal--contained .search-modal-close:hover {
  transform: scale(1.05);
}
.search-modal--contained .search-modal-close svg {
  height: 20px;
  width: 20px;
  color: var(--color-white);
}
.search-modal-header {
  color: var(--color-white);
  display: inline-block;
  pointer-events: all;
}
.search-modal--contained .search-modal-header {
  display: none;
}
.search-modal-close:hover,
.search-modal-close:focus {
  background: 0 none;
  outline: none;
}
.search-modal-active .search-modal {
  visibility: visible;
  opacity: 0.98;
  z-index: 9999;
}
.search-modal-active .search-modal--contained {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.search-modal .hs-search-field {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 100%;
  backface-visibility: hidden;
}
.search-modal--contained .hs-search-field {
  width: auto;
  height: auto;
  top: 0;
  max-width: var(--wrapper-width);
  margin: 0 auto;
  width: 100%;
  height: inherit;
}
.search-modal .hs-search-field__bar {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: none;
}
.search-modal--contained .hs-search-field__bar {
  max-width: none;
  padding: 0;
}
.search-modal-active .search-modal {
  opacity: 1;
  transform: translateY(0);
}
.search-modal .hs-search-field__bar form {
  display: flex;
  pointer-events: all;
  max-width: none !important;
  position: relative;
  border-radius: var(--border-radius);
}
.search-modal .hs-search-field__bar form input {
  margin: 0;
  border-radius: var(--border-radius);
  padding: 1rem;
  border: none;
  box-shadow: 0 20px 60px -10px rgba(0 0 0 / 0.3);
  outline-offset: 0;
  max-height: calc(var(--header-height) * .7);
  background: var(--color-section-primary);
}
.search-modal .hs-search-field__bar form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
  position: absolute;
  right: 0;
  outline-offset: 0;
  height: 100%;
}
.search-modal .hs-search-field__bar form button svg {
  display: flex;
}
.search-modal .hs-search-field__bar form button:hover,
.search-modal .hs-search-field__bar form button:focus-visible {
  transform: none;
}
.search-modal .hs-search-field__bar form button svg {
  height: 20px;
  fill: currentColor;
}


@media (min-width: 960px) {
  .navigation-primary .submenu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navigation-primary .submenu a,
  .navigation-primary .submenu p {
    text-decoration: none;
  }

  .submenu-toggle {
    display: none;
  }

  .submenu.level-1 {
    display: inline-block;
  }

  .submenu.level-1 > li {
    display: inline-block;
  }

  .submenu.level-1 > li.has-submenu {
    position: relative;
  }

  .submenu:not(.level-1) > li:first-child > a {
    position: relative;
    z-index: 2;
  }

  .submenu:not(.level-1) > li {
    padding: 0;
  }

  .submenu:not(.level-1) .menu-item .menu-link {
    display: block;
  }

  /* Hide navigation dropdown in the inline editor */
  .hs-inline-edit .submenu.level-1 > li.has-submenu:hover .submenu:not(.level-1),
  .hs-inline-edit > li.has-submenu.focus .submenu:not(.level-1) {
    visibility: hidden;
  }
}

.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
}
.hs-search-field__bar button svg {
  height: 10px;
}
.hs-search-field__suggestions {
  max-width: calc(1000px - 4rem);
  background: #fff;
  border-radius: var(--border-radius);
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: left;
  color: #000;
  max-height: 0;
  list-style: none;
  padding: 0;
  box-shadow: 0 0 0 #000;
  border-width: 0;
  transition: var(--transition-timing-function) var(--transition-duration);
}
.hs-search-field__suggestions:empty {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  box-shadow: 0 0 0 #000;
  border-width: 0;
}
.search-modal--contained .hs-search-field__suggestions {
  position: absolute;
  max-width: none;
}
.hs-search-field--open .hs-search-field__suggestions {
  opacity: 1;
  max-height: 450px;
  pointer-events: all;
  box-shadow: 0px 8px 16px rgb(0 0 0 / 5%);
  border: 1px solid rgb(0 0 0 / 10%);
  overflow: hidden;
  padding: 0;
  margin-top: 8px;
}
.hs-search-field__suggestions li {
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgb(0 0 0 / .1);
}
.hs-search-field__suggestions #results-for {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: none;
}
.hs-search-field__suggestions a {
  display: flex;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
  outline-offset: 0;
  width: 100%;
  align-items: center;
  background: var(--color-section-primary);
}
.hs-search-field__suggestions a:hover:not(:focus-visible) {
  background: var(--color-section-secondary);
}
.hs-search-field__suggestions a:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
  z-index: 1;
}
.hs-search-field__suggestions a .hs-search-field__result-img,
.hs-search-field__result-img--placeholder {
  object-fit: cover;
  margin-right: 1rem;
  width: 100px;
  aspect-ratio: 16 / 9;
  background: var(--color-accent);
  border-radius: var(--image-border-radius);
}
.hs-search-field__result-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--color-white);
}
.hs-search-field__result-img--placeholder svg {
  max-height: 100%;
  max-width: 100%;
}
.hs-search-field__result-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hs-search-field__result-author {
  opacity: 0.7;
  font-size: var(--typography-fluid-scale-0);
}

@media (max-width: 768px) {
  .header.stuck {
    position: static;
  }
  [data-header-overlap] .header.stuck {
    position: absolute;
  }
  .header .header-navigation {
    margin: 0;
  }
}

.header-links-language > span {
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-header-light] .header-links-language .globe_class {
  background-color: var(--color-white);
}
.lang_list_class:after, .lang_list_class:before {
  display: none !important;
}
.lang_list_class li {
  padding: 1rem !important;
}
.lang_list_class li a:hover {
  color: var(--color-primary) !important;
}
.lang_list_class:after, .lang_list_class li {
  list-style-type: none;
  transition: var(--transition-timing-function) var(--transition-duration);
}
.lang_list_class li {
  margin: 0 !important;
  border: none !important;
  border-bottom: 1px solid rgb(0 0 0 / .1) !important;
}
.lang_list_class li:not(:last-child) {
  border-bottom: 1px solid rgb(0 0 0 / .1) !important;
}
.lang_list_class li:first-child {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.lang_list_class li:last-child {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.mm-spn a {
  border: none;
  color: var(--color-white) !important;
  outline-offset: -2px !important;
  outline-color: rgb(255 255 255 / 0.4)!important;
}
.mm-spn.mm-spn--navbar.mm-spn--main::after,
.mm-spn a:not(:last-child):after,
.mm-spn.mm-spn--navbar ul:before,
.mm-spn li:after {
  display: none !important;
}

.mm-spn.mm-spn--light {
  background: var(--color-gradient-primary) !important;
}
.mm-spn.mm-spn--navbar ul {
  background: var(--color-gradient-primary);
}
.mm-spn.mm-spn--navbar:before,
.mm-spn.mm-spn--navbar:after {
  color: var(--color-white) !important;
  opacity: .8 !important;
}
.mm-spn li::before {
  color: var(--color-white) !important;
  opacity: 1 !important;
}
.mm-spn li {
  background: none !important;
  border-bottom: 1px solid rgb(255 255 255 / .2);
}
.mm-spn li.no-submenu::before {
  display: none !important;
}
.footer {
  color: var(--color-white);
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.footer h3,
.footer h4,
.footer h5,
.footer h6  {
  color: var(--color-white);
  font-size: var(--typography-h5-font-size);
}
.footer ul {
  padding: 0;
}
.footer li {
  list-style: none;
}
.footer .row-fluid {
  gap: 2rem;
}
.footer .widget-type-logo a {
  padding: 0.5rem;
  border-radius: var(--border-radius);
  display: inline-flex;
  align-items: center;
}
.footer .widget-type-logo img {
  border-radius: 0;
  max-width: 150px;
}
.footer .hs-submit {
  margin: 0;
}
.footer-copyright .row-fluid {
  gap: 0;
}
.footer-copyright small {
  opacity: .5;
}
.footer input[type=text],
.footer input[type=password],
.footer input[type=datetime],
.footer input[type=datetime-local],
.footer input[type=date],
.footer input[type=month],
.footer input[type=time],
.footer input[type=week],
.footer input[type=number],
.footer input[type=email],
.footer input[type=url],
.footer input[type=search],
.footer input[type=tel] {
  background: var(--color-section-primary);
}

@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer .hs-submit,
  .footer .social-links {
    justify-content: center;
  }
  .footer .hs-submit input[type='submit'] {
    margin: 0;
    width: 100%;
  }
  .footer-copyright p {
    margin-bottom: 0 !important;
  }
  .footer-copyright .dnd-module > .hs_cos_wrapper {
    width: 100%;
  }
}

@media (max-height: 999px), (max-width: 767px) {
  /**
   * Failsafe to manually override the main-content margin back to 0.
   */
  #main-content {
    margin: 0 !important;
  }
}

/**
 * Only apply fixed footer styles if the window is large enough.
 */
@media (min-height: 1000px) and (min-width: 768px) {
  [data-footer-fixed] .footer {
    position: fixed;
  }
  [data-footer-fixed] [data-global-resource-path*='footer'] {
    z-index: 0;
  }
}

/**
 * Responsive Grid
 * -----------------------------
 */
.content-wrapper,
.wrapper,
.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wrapper-width);
}
.dnd-section:not([class*='force-full-width']) {
  padding-left: 2rem;
  padding-right: 2rem;
}
.dnd-section {
  background-color: var(--color-section-primary);
}
.dnd-section:nth-of-type(2n) {
  background-color: var(--color-section-secondary);
}
.row-fluid {
  display: flex;
  width: 100%;
  gap: 1.5rem;
}
.row-fluid [class*='span'] {
  display: block;
  float: left;
  width: 100%;
  flex: 1;
  margin: 0;
}
.row-fluid [class*='span']:first-child {
  margin-left: 0;
}
.row-fluid .span12 {
  flex-basis: 100%;
}
.row-fluid .span11 {
  flex-basis: 91.66%;
}
.row-fluid .span10 {
  flex-basis: 83.33%;
}
.row-fluid .span9 {
  flex-basis: 75%;
}
.row-fluid .span8 {
  flex-basis: 66.66%;
}
.row-fluid .span7 {
  flex-basis: 58.33%;
}
.row-fluid .span6 {
  flex-basis: 50%;
}
.row-fluid .span5 {
  flex-basis: 41.66%;
}
.row-fluid .span4 {
  flex-basis: 33.33%;
}
.row-fluid .span3 {
  flex-basis: 25%;
}
.row-fluid .span2 {
  flex-basis: 16.66%;
}
.row-fluid .span1 {
  flex-basis: 8.33%;
}
@media (max-width: 767px) {
	.row-fluid {
    flex-direction: column;
	}
}
/**
 * For styling HubSpot's default modules.
 */
/* @use '../util'; */
/**
 * Contains overrides/fixes for HubSpot page editor specific styles.
 */

 /**
  * Undo fixed footer because clicking on page editor stuff seems to
  * mess up the layering for some reason.
  */
.hs-inline-edit [data-footer-fixed] .footer {
  position: relative;
}
.hs-inline-edit #main-content {
  margin: 0 !important;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes translate-down {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 100%, 0); }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: var(--typography-fluid-scale-0);
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent;
  /* 1 */
  border: 1px solid WindowFrame;
  /* 1 */
  font: inherit;
  /* 2 */
  letter-spacing: inherit;
  /* 2 */
  padding: 0.25em 0.375em;
  /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right 10px center/26px;
  border-radius: 0;
  padding-right: 40px;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type="color" i], [type="range" i]) {
  border-width: 0;
  padding: 0;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

*, *:before, *:after {
  box-sizing: border-box;
  outline-offset: 0.2rem;
}
/**
 * Text formatting helpers
 */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/**
 * Show and hide things
 */
.hidden {
  display: none;
}
.visible {
  display: block;
}
.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/**
 * Useful for adding a "hidden" link to make an entire area clickable.
 */
.clickable {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

.text--gradient-primary {
  background: var(--color-gradient-primary);
}
.text--gradient-secondary {
  background: var(--color-gradient-secondary);
}
.text--gradient-primary,
.text--gradient-secondary {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
}

/**
 * For content that needs to be visually hidden but stay visible for screenreaders.
 */
.screen-reader-text {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
@media (max-width: 767px) {
  .screen-reader-text {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}




:root {
	--color-primary: #000A4F;
  --color-primary-darken-10: #000045;
  --color-primary-darken-20: #00003b;
  --color-primary-darken-30: #000031;
  --color-primary-darken-40: #000027;
  --color-primary-darken-50: #00001d;
  --color-primary-darken-60: #000013;
  --color-primary-darken-70: #000009;
  --color-primary-darken-80: #000000;
  --color-primary-darken-90: #000000;
  --color-primary-lighten-10: #0a1459;
  --color-primary-lighten-20: #141e63;
  --color-primary-lighten-30: #1e286d;
  --color-primary-lighten-40: #283277;
  --color-primary-lighten-50: #323c81;
  --color-primary-lighten-60: #3c468b;
  --color-primary-lighten-70: #465095;
  --color-primary-lighten-80: #505a9f;
  --color-primary-lighten-90: #5a64a9;

	--color-secondary: #FF0061;
  --color-secondary-darken-10: #f50057;
  --color-secondary-darken-20: #eb004d;
  --color-secondary-darken-30: #e10043;
  --color-secondary-darken-40: #d70039;
  --color-secondary-darken-50: #cd002f;
  --color-secondary-darken-60: #c30025;
  --color-secondary-darken-70: #b9001b;
  --color-secondary-darken-80: #af0011;
  --color-secondary-darken-90: #a50007;
  --color-secondary-lighten-10: #ff0a6b;
  --color-secondary-lighten-20: #ff1475;
  --color-secondary-lighten-30: #ff1e7f;
  --color-secondary-lighten-40: #ff2889;
  --color-secondary-lighten-50: #ff3293;
  --color-secondary-lighten-60: #ff3c9d;
  --color-secondary-lighten-70: #ff46a7;
  --color-secondary-lighten-80: #ff50b1;
  --color-secondary-lighten-90: #ff5abb;

  --color-gradient-primary: linear-gradient(-45deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  --color-gradient-secondary: linear-gradient(-45deg, var(--color-primary) 0%, var(--color-secondary) 100%);

  --color-accent: #ffffff;
  --color-accent-darken-10: #f5f5f5;
  --color-accent-darken-20: #ebebeb;
  --color-accent-darken-30: #e1e1e1;
  --color-accent-darken-40: #d7d7d7;
  --color-accent-darken-50: #cdcdcd;
  --color-accent-darken-60: #c3c3c3;
  --color-accent-darken-70: #b9b9b9;
  --color-accent-darken-80: #afafaf;
  --color-accent-darken-90: #a5a5a5;
  --color-accent-lighten-10: #ffffff;
  --color-accent-lighten-20: #ffffff;
  --color-accent-lighten-30: #ffffff;
  --color-accent-lighten-40: #ffffff;
  --color-accent-lighten-50: #ffffff;
  --color-accent-lighten-60: #ffffff;
  --color-accent-lighten-70: #ffffff;
  --color-accent-lighten-80: #ffffff;
  --color-accent-lighten-90: #ffffff;

  --color-section-primary: #FFF;
  --color-section-secondary: #F9F5F4;

  --color-white: #fff;
  --color-black: #000;

  --transition-duration: 0.2s;
  --transition-timing-function: ease;
  --border-color: #dcdcdc;
  --border-radius: 5px;
  --wrapper-width: 1450px;
}
html {
  /**
   * For smooth scrolling anchor links
   * @todo Make this a global theme setting under Performance.
   */
  scroll-behavior: smooth;
}

/**
 * The following styles solve the issue of the footer
 * not being at the bottom of the page when there is not enough
 * content to fill the full viewport.
 */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  hyphens: auto;
  tab-size: 2;
  overflow-x: hidden;
}
body > .hs-page,
body > .page {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#main-content {
  flex: 1;
  z-index: 1;
}

/**
 * Don't add this as a comma separated selector with ::selection
 * below or it will break in Chrome.
 */
::-moz-selection {
  background: var(--color-primary);
  color: var(--color-white);
  text-shadow: none;
}
::selection {
  background: var(--color-primary);
  color: var(--color-white);
  text-shadow: none;
}

/**
 * Remove outline for non-keyboard :focus
 */
*:focus:not(:focus-visible) {
  outline: none  !important;
}
/**
 * Default outline style for keyboard :focus
 */
*:focus-visible {
  outline: 2px solid var(--color-primary) !important;
}

:root {
  --scrollbar-track-background: var(--color-accent);
  --scrollbar-thumb-background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  --scrollbar-width: 10px;
  --scrollbar-track-border-radius: 0;
  --scrollbar-thumb-border-radius: var(--border-radius);
}
::-webkit-scrollbar-track {
	background: var(--scrollbar-track-background);
  border-radius: var(--scrollbar-track-border-radius);
}
::-webkit-scrollbar {
	width: var(--scrollbar-width);
}
::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb-background);
  border-radius: var(--scrollbar-thumb-border-radius);
}

/**
 * Remove focus outlines from Flickity sliders.
 */
.flickity-viewport:focus-visible,
.flickity-enabled:focus-visible,
.flickity-slider:focus-visible {
  outline: none !important;
}

#hs-eu-cookie-confirmation {
  background: var(--color-accent) !important;
  border: 2px solid var(--color-primary) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
}
#hs-eu-cookie-confirmation-inner {
  background: none !important;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
  color: var(--color-white) !important;
  opacity: 0.7;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button#hs-eu-confirmation-button,
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button#hs-eu-decline-button {
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight) !important;
  line-height: var(--button-line-height);
  text-decoration: var(--button-text-decoration) !important;
  text-transform: var(--button-text-transform);
  text-align: var(--button-text-align);
  color: var(--button-text-color);
  background: var(--button-background)  !important;
  border-radius: var(--button-border-radius);
  border-width: var(--button-border-width) !important;
  border-style: var(--button-border-style) !important;
  border-color: var(--button-border-color) !important;
  margin: var(--button-margin);
  padding: var(--button-padding) !important;
  min-width: var(--button-min-width);
  letter-spacing: var(--button-letter-spacing);
  box-shadow: var(--button-box-shadow);
  transition: var(--button-transition);
  outline-color: var(--button-outline-color) !important;
  white-space: nowrap;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-size: 200% auto;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button#hs-eu-decline-button {
  --button-background: transparent !important;
  --button-border-color: var(--color-secondary);
  --button-text-color: var(--color-secondary);
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button#hs-eu-decline-button:hover,
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button#hs-eu-decline-button:focus {
  --button-background: var(--color-secondary) !important;
  --button-border-color: var(--color-secondary);
  --button-text-color: var(--color-white);
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button#hs-eu-confirmation-button {
  --button-background: linear-gradient(-45deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%) repeat center left / 200% auto;
  --button-border-color: transparent;
  --button-box-shadow: var(--button-primary-box-shadow);
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button#hs-eu-confirmation-button:hover,
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button#hs-eu-confirmation-button:focus {
  background-position: right center !important;
}

@media (min-width: 960px) {
  #hs-eu-cookie-confirmation {
    top: unset !important;
    left: unset !important;
    bottom: 0;
    right: 0;
    margin: 2rem;
    max-width: 600px;
    border-radius: var(--border-radius);
  }
}
.hs-recaptcha {
  height: 0;
}
.grecaptcha-badge {
  visibility: hidden;
}
.kelp-recaptcha-disclaimer {
  font-size: var(--typography-fluid-scale-0);
  text-align: center;
  padding: 1rem;
}
:root {
  --typography-body-font: Plus Jakarta Sans, sans-serif;
  --typography-heading-font: Plus Jakarta Sans, sans-serif;
  --typography-body-color: #000A4F;
  --typography-heading-color: #000A4F;
  --typography-link-text-decoration: none;
  --typography-link-font-weight: 400;
  --typography-link-color: #000A4F;
  --typography-link-hover-color: #FF0061;
  --typography-link-active-color: #FF0061;
  --typography-link-font: Plus Jakarta Sans;
  --typography-link-hover-font: Plus Jakarta Sans;
  --typography-link-active-font: Plus Jakarta Sans;
  --typography-link-letter-spacing: 0;
  --typography-link-transition: var(--transition-duration) var(--transition-timing-function);
  --typography-body-line-height: 1.5;

  --typography-fluid-scale-0: clamp(0.6rem, calc(0.6rem + 1vw), 0.8rem);
  --typography-fluid-scale-1: clamp(0.8rem, calc(0.8rem + 1vw), 1.25rem);
  --typography-fluid-scale-2: clamp(1rem, calc(1rem + 1.5vw), 2rem);
  --typography-fluid-scale-3: clamp(1.3rem, calc(1.3rem + 2vw), 2.5rem);
  --typography-fluid-scale-4: clamp(1.6rem, calc(1.6rem + 2.5vw), 3rem);
  --typography-fluid-scale-5: clamp(1.8rem, calc(1.8rem + 3vw), 3.5rem);
  --typography-fluid-scale-6: clamp(2rem, calc(2rem + 4.5vw), 5rem);

  --typography-p-font-size: var(--typography-fluid-scale-1);
  --typography-h6-font-size: var(--typography-fluid-scale-1);
  --typography-h5-font-size: var(--typography-fluid-scale-2);
  --typography-h4-font-size: var(--typography-fluid-scale-3);
  --typography-h3-font-size: var(--typography-fluid-scale-4);
  --typography-h2-font-size: var(--typography-fluid-scale-5);
  --typography-h1-font-size: var(--typography-fluid-scale-6);

  --typography-h6-font: Plus Jakarta Sans;
  --typography-h5-font: Plus Jakarta Sans;
  --typography-h4-font: Plus Jakarta Sans;
  --typography-h3-font: Plus Jakarta Sans;
  --typography-h2-font: Plus Jakarta Sans;
  --typography-h1-font: Plus Jakarta Sans;

  --typography-h6-color: #000A4F;
  --typography-h5-color: #000A4F;
  --typography-h4-color: #000A4F;
  --typography-h3-color: #000A4F;
  --typography-h2-color: #000A4F;
  --typography-h1-color: #000A4F;

  --typography-heading-line-height: 1.1;
  --typography-heading-font-weight: 700;
}

body {
  font-family: var(--typography-body-font);
  color: var(--typography-body-color);
  line-height: var(--typography-body-line-height);
}

/**
 * Links
 */
a {
  color: var(--typography-link-color);
  text-decoration: var(--typography-link-text-decoration);
  border-bottom: 1px solid transparent;
  transition: var(--typography-link-transition);
  font-weight: var(--typography-link-font-weight);
  border-bottom-width: var(--typography-link-border-width);
  border-bottom-style: var(--typography-link-border-style);
  letter-spacing: var(--typography-link-letter-spacing);
  border-color: transparent;
  border-radius: var(--border-radius);
  position: relative;
  font-family: var(--typography-link-font);
}
a:hover,
a:focus {
  --typography-link-color: var(--typography-link-hover-color);
  --typography-link-text-decoration: underline;
  --typography-link-font: var(--typography-link-hover-font);
}
a:active {
  --typography-link-color: var(--typography-link-active-color);
  --typography-link-font: var(--typography-link-active-font);
}

/**
 * Paragraphs
 */
p {
  font-size: var(--typography-p-font-size);
  margin: 0.5em 0;
}

/**
 * Headings
 */
h1:empty, .h1:empty,
h2:empty, .h2:empty,
h3:empty, .h3:empty,
h4:empty, .h4:empty,
h5:empty, .h5:empty,
h6:empty, .h6:empty {
  display: none;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--typography-heading-font);
  color: var(--typography-heading-color);
  margin: 0;
  margin-bottom: 0.5em;
  font-weight: var(--typography-heading-font-weight);
  line-height: var(--typography-heading-line-height);
}

h6, .h6 {
  font-size: var(--typography-h6-font-size);
  font-family: var(--typography-h6-font, var(--typography-heading-font));
  color: var(--typography-h6-color, var(--typography-heading-color));
}

h5, .h5 {
  font-size: var(--typography-h5-font-size);
  font-family: var(--typography-h5-font, var(--typography-heading-font));
  color: var(--typography-h5-color, var(--typography-heading-color));
}

h4, .h4 {
  font-size: var(--typography-h4-font-size);
  font-family: var(--typography-h4-font, var(--typography-heading-font));
  color: var(--typography-h4-color, var(--typography-heading-color));
}

h3, .h3 {
  font-size: var(--typography-h3-font-size);
  font-family: var(--typography-h3-font, var(--typography-heading-font));
  color: var(--typography-h3-color, var(--typography-heading-color));
}

h2, .h2 {
  font-size: var(--typography-h2-font-size);
  font-family: var(--typography-h2-font, var(--typography-heading-font));
  color: var(--typography-h2-color, var(--typography-heading-color));
}

h1, .h1 {
  font-size: var(--typography-h1-font-size);
  font-family: var(--typography-h1-font, var(--typography-heading-font));
  color: var(--typography-h1-color, var(--typography-heading-color));
}
pre {
  font-family: monospace,monospace;
  font-size: 1em;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--border-radius);
  white-space: pre-wrap;
  padding: 1rem;
}
:not(pre) > code {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  color: var(--color-white);
  padding: 3px 6px;
  white-space: pre;
}
:root {
  --blockquote-author-color: var(--color-secondary);
  --blockquote-author-font-size: 14px;
  --blockquote-author-font-weight: 700;
}

blockquote {
  max-width: 80%;
  font-size: 18px;
  margin: 0.25em 0;
  padding: 0.35em 40px;
  line-height: 1.45;
  position: relative;
  /**
   * Assume the author could be any of these elements.
   */
}
blockquote::before {
  content: '“';
  display: block;
  padding-left: 10px;
  font-size: 80px;
  position: absolute;
  left: -20px;
  top: -20px;
  opacity: 0.7;
}
blockquote cite,
blockquote footer,
blockquote p {
  color: var(--blockquote-author-color);
  font-size: var(--blockquote-author-font-size);
  font-weight: var(--blockquote-author-font-weight);
  display: block;
  margin-top: 10px;
}
blockquote cite::before,
blockquote footer::before,
blockquote p::before {
  content: '—';
}
:root {
  --button-font-family: inherit;
  --button-font-weight: 600;
  --button-font-size: 100%;
  --button-line-height: 2;
  --button-text-decoration: none;
  --button-text-transform: uppercase;
  --button-text-align: center;
  --button-text-color: var(--color-white);
  --button-letter-spacing: 0;
  --button-border-radius: var(--border-radius);
  --button-padding: 3px 8%;
  --button-margin: 0;
  --button-border-width: 2px;
  --button-border-color: transparent;
  --button-border-style: solid;
  --button-min-width: 120px;
  --button-outline-color: var(--color-primary);
  --button-transition: var(--transition-timing-function) var(--transition-duration);
  --button-background: var(--button-primary-background);
  --button-primary-background: var(--color-primary);
  --button-primary-hover-background: var(--color-primary-lighten-30);
  --button-secondary-background: var(--color-secondary);
  --button-secondary-hover-background: var(--color-secondary-lighten-30);
  --button-accent-background: var(--color-accent);
  --button-accent-hover-background: var(--color-accent-lighten-30);
  --button-box-shadow: var(--button-primary-box-shadow);

  --button-primary-box-shadow: 0 0 10px rgb(0, 10, 79, .4);
  --button-secondary-box-shadow: 0 0 10px rgb(255, 0, 97, .4);
}

.button,
.hs-button,
input[type=submit] {
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  line-height: var(--button-line-height);
  text-decoration: var(--button-text-decoration);
  text-transform: var(--button-text-transform);
  text-align: var(--button-text-align);
  color: var(--button-text-color);
  background: var(--button-background);
  border-radius: var(--button-border-radius);
  border-width: var(--button-border-width);
  border-style: var(--button-border-style);
  border-color: var(--button-border-color);
  margin: var(--button-margin);
  padding: var(--button-padding);
  min-width: var(--button-min-width);
  letter-spacing: var(--button-letter-spacing);
  box-shadow: var(--button-box-shadow);
  transition: var(--button-transition);
  outline-color: var(--button-outline-color) !important;
  white-space: nowrap;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-size: 200% auto;
}
.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus,
input[type=submit]:hover,
input[type=submit]:focus {
  --buton-text-decoration: none;
  --button-background: var(--button-primary-hover-background);
}
.button + .button {
  --button-margin: 0 0 0 1rem;
}
.hs-button.primary,
.button--gradient-primary {
  --button-background: linear-gradient(-45deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%) repeat center left / 200% auto;
  --button-border-color: transparent;
  --button-box-shadow: var(--button-primary-box-shadow);
}
.hs-button.primary:hover,
.hs-button.primary:focus,
.button--gradient-primary:hover,
.button--gradient-primary:focus,
.button--gradient-secondary:hover,
.button--gradient-secondary:focus {
  background-position: right center;
}
/**
 * We need these to override the base button hover and focus styles from above.
 */
.hs-button.primary:hover,
.hs-button.primary:focus,
.button--gradient-primary:hover,
.button--gradient-primary:focus {
  --button-background: linear-gradient(-45deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%) repeat center left / 200% auto;
}
.button--gradient-secondary {
  --button-background: linear-gradient(-45deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-secondary) 100%) repeat center left / 200% auto;
  --button-border-color: transparent;
  --button-box-shadow: var(--button-secondary-box-shadow);
}
/**
 * We need these to override the base button hover and focus styles from above.
 */
.button--gradient-secondary:hover,
.button--gradient-secondary:focus {
  --button-background: linear-gradient(-45deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-secondary) 100%) repeat center left / 200% auto;
}
/**
 * We do the repeated class here for specificity.
 */
.button--link.button--link {
  --button-font-weight: var(--typography-link-font-weight);
  --button-font-family: var(--typography-link-font-family);
  --button-background: transparent;
  --button-text-color: var(--typography-link-color);
  --button-padding: 0;
  --button-letter-spacing: var(--typography-link-letter-spacing);
  --button-text-transform: var(--typography-link-text-transform);
  border: none;
  box-shadow: none;
}
/**
 * We do the repeated class here for specificity.
 */
.button--link.button--link:hover,
.button--link.button--link:focus{
  --button-background: transparent;
  --button-text-color: var(--typography-link-hover-color) !important;
  --button-border-radius: 0;
  --button-padding: 0;
  --button-text-color: currentColor;
  border: none;
  transform: none;
}
/**
 * We do the repeated class here for specificity.
 */
.button--empty.button--empty {
  --button-background: transparent;
}
.button.button--primary:hover,
.button.button--primary:focus,
.button.button--secondary:hover,
.button.button--secondary:focus {
  --button-text-color: var(--color-white) !important;
}
.button--primary {
  --button-background: var(--button-primary-background);
}
.button--primary.button--empty {
  --button-border-color: var(--color-primary);
  --button-text-color: var(--color-primary);
}
.button--primary.button--empty:hover,
.button--primary.button--empty:focus {
  --button-border-color: var(--button-primary-hover-background);
}
.button--primary:hover,
.button--primary:focus {
  --button-background: var(--button-primary-hover-background);
}
.button--secondary {
  --button-background: var(--button-secondary-background);
  --button-box-shadow: var(--button-secondary-box-shadow);
}
.button--accent {
  --button-background: var(--button-accent-background);
  --button-box-shadow: var(--button-accent-box-shadow);
}
.button--secondary.button--empty {
  --button-border-color: var(--color-secondary);
  --button-text-color: var(--color-secondary);
}
.button--accent.button--empty {
  --button-border-color: var(--color-accent);
  --button-text-color: var(--color-accent);
}
.button--secondary.button--empty:hover,
.button--secondary.button--empty:focus {
  --button-border-color: var(--button-secondary-hover-background);
}
.button--accent.button--empty:hover,
.button--accent.button--empty:focus {
  --button-border-color: var(--button-accent-hover-background);
}
.button--secondary:hover,
.button--secondary:focus {
  --button-background: var(--button-secondary-hover-background);
}
.button--accent:hover,
.button--accent:focus {
  --button-background: var(--button-accent-hover-background);
}
.button--white{
  --button-border-color: var(--color-white);
  --button-text-color: var(--color-white);
}
.button--white:hover,
.button--white:focus {
  --button-background: var(--color-white);
  --button-text-color: var(--color-black) !important;
}
.button--icon {
  --button-font-size: 12px;
  --button-padding: 1rem;
  min-width: 0;
  aspect-ratio: 1;
}
.button--small {
  --button-font-size: 14px;
}
.hs-button,
.button--medium {
  --button-font-size: 16px;
}
.button--large {
  --button-font-size: 20px;
  --button-padding: 10px 8%;
}
.button--light {
  --button-text-color: var(--color-black);
}
.button--dark {
  --button-text-color: var(--color-white);
}
.button--center {
  margin-left: auto;
  margin-right: auto;
}
.button--left {
  float: left;
}
.button--right {
  float: right;
}

/**
 * Disabled buttons
 */
.button--disabled,
.button.disabled,
button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

/**
 * Used in conjunction with [data-interactive], particularly
 * on card elements, where we want to make a collective area clickable,
 */
.button--breakout {
  position: static;
}
.button--breakout,
.button--breakout::before {
  cursor: pointer;
}
.button--breakout::before {
  content: '';
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
[data-interactive] .button--breakout::before {
  display: block;
}





.hs-button.primary:hover,
.hs-button.primary:focus {
  --button-background: linear-gradient(-45deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%) repeat center left / 200% auto;
}
:root {
  --form-max-width: 800px;
  --form-background: transparent;
  --form-border-color: #D1D6DC;
  --form-border-style: none;
  --form-border-width: 2px;
  --form-border-radius: {radius=}px;

  --form-title-color: #000A4F;
  --form-title-background: ;
  --form-label-color: #000A4F;

  /**
   * Text-like input fields
   */
  --form-input-placeholder-color: #000A4F;;
  --form-input-text-color: #000A4F;
  --form-input-background-color: transparent;
  --form-input-border-radius: 5px;
  --form-input-border-width: 2px;
  --form-input-border-color: #D1D6DC;
  --form-input-border-style: none;
  --form-input-font-family: var(--typography-body-font);

  --form-input-focus-border-width: 3px;
  --form-input-focus-border-color: var(--color-primary);
  /**
   * Radio buttons and checkboxes
   */
  --form-input-control-label-text-size: 16px;
  --form-input-control-background: transparent;
  --form-input-control-active-background: var(--color-primary);
  --form-input-control-border-width: 2px;
  --form-input-control-border-style: solid;
  --form-input-control-border-color: var(--body-secondary-background);
  /**
   *
   */
  --form-textarea-border-radius: var(--border-radius);

  --form-input-submit-button-background: #000A4F;
  --form-input-submit-button-text-color: #fff;
  --form-input-submit-button-hover-background: #000A4F;
  --form-input-submit-button-hover-text-color: #fff;
}

form {
  max-width: var(--form-max-width);
  background: var(--form-background);
  border-color: var(--form-border-color);
  border-style: var(--form-border-style);
  border-width: var(--form-border-width);
  border-radius: var(--form-border-radius);
  margin: 0 auto;
}
.form-title {
  color: var(--form-title-color);
  background: var(--form-title-background);
}
form label {
  line-height: 50px;
  color: var(--form-label-color);
}

fieldset {
  max-width: 100% !important;
}


/**
 * HubSpot submit button wrapper.
 */
.hs-submit {
  margin-top: 2rem;
}
/**
 * HubSpot submit button.
 */
.hs-form .hs-button {
  background: var(--form-input-submit-button-background);
  color: var(--form-input-submit-button-text-color);
}
.hs-form .hs-button:hover,
.hs-form .hs-button:focus {
  background: var(--form-input-submit-button-hover-background);
  color: var(--form-input-submit-button-hover-text-color);
}

textarea,
select,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel] {
  font-size: inherit;
  width: 100% !important;
  border: none;
  background-color: var(--form-input-background-color);
  padding: 1rem;
  margin-bottom: 1rem;
  color: var(--form-input-text-color);
  border-radius: var(--form-input-border-radius);
  font-family: var(--form-input-font-family);
  box-shadow: 0 0 0 var(--form-input-border-width) var(--form-input-border-color);
  transition: var(--transition-timing-function) var(--transition-duration);
}

textarea {
  border-radius: var(--form-textarea-border-radius);
}

select {
  padding: 1rem 3rem 1rem 1rem;
}

textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  font-family: var(--typography-body-font);
  font-size: inherit;
}

textarea::-moz-placeholder, input::-moz-placeholder {
  font-family: var(--typography-body-font);
  font-size: inherit;
}

textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  font-family: var(--typography-body-font);
  font-size: inherit;
}

textarea::placeholder,
input::placeholder {
  font-family: var(--typography-body-font);
  font-size: inherit;
}

/**
 * File input form items need some extra spacing.
 */
.hs-fieldtype-file {
  margin-bottom: 2rem;
}

.hs-error-msgs,
.hs-error-msgs li {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
.hs-error-msgs .hs-error-msg {
  font-size: var(--typography-fluid-scale-0);
  opacity: 0.7;
  position: relative;
  line-height: 1.3;
}
.hs-form-required {
  font-size: var(--typography-fluid-scale-1);
  font-weight: 700;
  background: var(--color-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hs-input[type=checkbox] {
  margin-right: 12px;
}

/**
 * Hide list circles on checkbox groups.
 */
[role=checkbox] {
  padding: 0;
}
[role=checkbox] li {
  list-style: none;
  padding-left: 1rem;
}

/**
 * Styles shared between radio buttons and checkboxes.
 */
input[type=radio],
input[type=checkbox] {
  position: absolute;
  display: none;
}
input[type=radio]:checked + span:before,
input[type=checkbox]:checked + span:before {
  animation-name: none;
}
input[type=radio]:checked + span:after,
input[type=checkbox]:checked + span:after {
  transform: scale(1);
}
input[type=radio][disabled],
input[type=checkbox][disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
input[type=radio][disabled] + span,
input[type=checkbox][disabled] + span {
  cursor: not-allowed;
  opacity: 0.5;
}
input[type=radio][disabled] + span:hover, input[type=radio][disabled] + span:before, input[type=radio][disabled] + span:after,
input[type=checkbox][disabled] + span:hover,
input[type=checkbox][disabled] + span:before,
input[type=checkbox][disabled] + span:after {
  cursor: not-allowed;
}
input[type=radio] + span,
input[type=checkbox] + span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  display: inline-block;
  padding-left: calc(1.875 * var(--form-input-control-label-text-size));
  cursor: pointer;
  vertical-align: middle;
  font-size: var(--form-input-control-label-text-size);
  line-height: 1.3em;
  margin-bottom: calc(0.5 * var(--form-input-control-label-text-size));
}
input[type=radio] + span:hover:before,
input[type=checkbox] + span:hover:before {
  border-color: var(--form-input-control-active-background);
}
input[type=radio] + span:before,
input[type=checkbox] + span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: calc(1.25 * var(--form-input-control-label-text-size));
  height: calc(1.25 * var(--form-input-control-label-text-size));
  transition: border var(--transition-duration) var(--transition-timing-function);
  border-width: var(--form-input-control-border-width);
  border-style: var(--form-input-control-border-style);
  border-color: var(--form-input-control-border-color);
  background: var(--form-input-control-background);
}
input[type=radio] + span:after,
input[type=checkbox] + span:after {
  position: absolute;
  content: "";
  transition: all 0.2s ease;
}

/**
 * Radio specific sytyling.
 */
input[type=radio] + span:before {
  border-radius: 50%;
}
input[type=radio] + span:after {
  top: calc(0.375 * var(--form-input-control-label-text-size));
  left: calc(0.375 * var(--form-input-control-label-text-size));
  width: calc(0.5 * var(--form-input-control-label-text-size));
  height: calc(0.5 * var(--form-input-control-label-text-size));
  border-radius: 50%;
  background: var(--form-input-control-active-background);
  transform: scale(0);
}
input[type=radio] + span:checked + span:before {
  border: 1px solid var(--form-input-control-active-background);
}

/**
 * Checkbox specific sytyling.
 */
input[type=checkbox] + span:before {
  border-radius: var(--border-radius);
}
input[type=checkbox] + span:after {
  top: calc(0.125 * var(--form-input-control-label-text-size));
  left: calc(0.4375 * var(--form-input-control-label-text-size));
  width: calc(0.375 * var(--form-input-control-label-text-size));
  height: calc(0.75 * var(--form-input-control-label-text-size));
  transform: scale(0) rotate(45deg);
  border-width: calc(0.125 * var(--form-input-control-label-text-size));
  border-style: solid;
  border-color: var(--color-white);
  border-top: 0;
  border-left: 0;
}
input[type=checkbox]:checked + span:before {
  border: var(--form-input-control-active-background);
  background: var(--form-input-control-active-background);
}
input[type=checkbox]:checked + span:after {
  transform: scale(1) rotate(45deg);
}
:root {
  --hr-color: #DCDCDC;
  --hr-height: 2px;
}

hr {
  background: var(--hr-color);
  height: var(--hr-height);
  border: none;
  margin: 2rem 0;
}
:root {
  --image-border-radius: var(--border-radius);
  --video-border-radius: var(--border-radius);
}

/**
 * For responsive images
 */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--image-border-radius);
}

/**
 * Inline images in rich text areas.
 */
.hs_cos_wrapper img[style*=float] {
  margin: 1rem 2rem;
}

iframe,
video {
  border-radius: var(--video-border-radius);
  max-width: 100%;
  object-fit: cover;
}
.image-wrapper {
  position: relative;
  display: flex;
  z-index: 1;
  border-radius: var(--image-border-radius);
}
.image-wrapper--left {
  float: left;
}
.image-wrapper--center {
  float: none;
}
.image-wrapper--right {
  float: right;
}
.image-wrapper .image-decorator {
  height: 80%;
  width: 80%;
  background: var(--color-gradient-primary);
  position: absolute;
  bottom: -5%;
  right: -5%;
  border-radius: var(--image-border-radius);
  z-index: -1;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  color: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
  transform-origin: bottom right;
  font-size: var(--typography-fluid-scale-0);
  transition:
    var(--transition-timing-function) var(--transition-duration),
    color var(--transition-timing-function) var(--transition-duration) 0s;
}
.image-wrapper--decorator--bottom .image-decorator {
  align-items: flex-start;
}
.image-wrapper:hover .image-decorator {
  transform: scale(1.38);
}
.image-wrapper--decorator--left {
  margin-left: 2.5% !important;
}
.image-wrapper--decorator--right {
  margin-right: 2.5% !important;
}
.image-wrapper--decorator--top {
  margin-top: 5% !important;
}
.image-wrapper--decorator--bottom {
  margin-bottom: 5% !important;
}
.image-wrapper--decorator--left .image-decorator {
  left: -5%;
}
.image-wrapper--decorator--right .image-decorator {
  right: -5%;
}
.image-wrapper--decorator--top .image-decorator {
  top: -5%;
}
.image-wrapper--decorator--bottom .image-decorator {
  bottom: -5%;
}
.image-wrapper--decorator--bottom.image-wrapper--decorator--left .image-decorator {
  transform-origin: bottom left;
}
.image-wrapper--decorator--bottom.image-wrapper--decorator--right .image-decorator {
  transform-origin: bottom right;
}
.image-wrapper--decorator--top.image-wrapper--decorator--left .image-decorator {
  transform-origin: top left;
}
.image-wrapper--decorator--top.image-wrapper--decorator--right .image-decorator {
  transform-origin: top right;
}

.image-wrapper .image-caption {
  position: relative;
  background: var(--color-accent);
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.image-wrapper--caption .image-decorator::after {
  content: '';
  background: rgb(0 0 0 / 0.2);
  width: 100%;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translate3d(0, -100%, 0);
}
.image-wrapper--caption.image-wrapper--decorator--top .image-decorator::after {
  bottom: 0;
  top: unset;
}
.image-wrapper--caption:hover .image-decorator {
  color: var(--color-white);
  transform: scale(1.38, 1.45);
  transition: var(--transition-timing-function) var(--transition-duration);
}
.image-wrapper--caption:hover .image-decorator::after {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 767px) {
  .image-wrapper {
    margin: 0 !important;
    left: 0;
    overflow: hidden;
    border-radius: var(--image-border-radius);
  }
  .image-wrapper .image-decorator {
    display: none;
  }
}
ol,
ul {
  list-style-position: inside;
}
ul {
  padding: 0 1.5rem;
}
ol {
  counter-reset: ol-number-counter;
  list-style: none;
  padding-left: 40px;
}
ol li {
  margin: 0 0 0.5rem 0;
  counter-increment: ol-number-counter;
  position: relative;
}
ol li::before {
  --ol-bullet-size: 26px;
  --ol-bullet-background-color: var(--color-gradient-primary);
  content: "";
  content: counter(ol-number-counter);
  color: var(--color-white);
  font-size: calc(var(--ol-bullet-size) * 0.6);
  font-weight: bold;
  position: absolute;
  left: calc(-1 * var(--ol-bullet-size) - 10px);
  line-height: var(--ol-bullet-size);
  width: var(--ol-bullet-size);
  height: var(--ol-bullet-size);
  top: 0;
  background: var(--ol-bullet-background-color);
  border-radius: 50%;
  text-align: center;
}
ul li {
  margin: 1rem 0;
  list-style: disc;
}
ul li::marker {
  margin: 0 0.5rem 0 0;
  color: var(--color-primary);
}
:root {
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: var(--border-color);
  --table-border-radius: var(--border-radius);
  --table-header-background: var(--typography-body-color);
  --table-header-text-color: var(--color-white);
  --table-row-even-background: transparent;
  --table-row-odd-background: transparent;
  --table-row-even-text-color: var(--typography-body-color);
  --table-row-odd-text-color: var(--typography-body-color);
  --table-footer-background: var(--color-primary);
  --table-footer-text-color: var(--color-white);
  --table-header-cell-border-width: 0;
  --table-header-cell-border-style: solid;
  --table-header-cell-border-color: transparent;
  --table-cell-border-width: 1px;
  --table-cell-border-style: solid;
  --table-cell-border-color: var(--border-color);
}

table {
  border-width: var(--table-border-width) !important;
  border-style: var(--table-border-style) !important;
  border-color: var(--table-border-color) !important;
  border-radius: var(--table-border-radius);
  overflow: hidden;
  border-collapse: separate !important;
  border-left: 0;
  border-spacing: 0px;
  max-width: 100% !important;
  width: -webkit-fill-available !important;
}
table th {
  font-weight: 700;
  padding: 1rem;
  background: var(--table-header-background);
  color: var(--table-header-text-color);
  border-left-width: var(--table-header-cell-border-width) !important;
  border-left-style: var(--table-header-cell-border-style) !important;
  border-left-color: var(--table-header-cell-border-color) !important;
}
table th,
table td {
  padding: 1rem;
}
table thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
  border-collapse: separate;
}
table thead:first-child tr:first-child th:first-child {
  border-radius: var(--table-border-radius) 0 0 0;
}
table thead:last-child tr:last-child th:first-child {
  border-radius: 0 0 0 var(--table-border-radius);
}
table tbody tr:nth-of-type(n) {
  background: var(--table-row-odd-background);
  color: var(--table-row-odd-text-color);
}
table tbody tr:nth-of-type(2n) {
  background: var(--table-row-even-background);
  color: var(--table-row-even-text-color);
}
table tbody:first-child tr:first-child td:first-child {
  border-radius: var(--table-border-radius) 0 0 0;
}
table tbody:last-child tr:last-child td:first-child {
  border-radius: 0 0 0 var(--table-border-radius);
}
table tfoot {
  color: var(--table-footer-text-color);
  background: var(--table-footer-background);
}
table tr {
  padding: 1rem;
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
table td {
  border-left-width: var(--table-cell-border-width) !important;
  border-left-style: var(--table-cell-border-style) !important;
  border-left-color: var(--table-cell-border-color) !important;
  border-top-width: var(--table-cell-border-width) !important;
  border-top-style: var(--table-cell-border-style) !important;
  border-top-color: var(--table-cell-border-color) !important;
}
:root {
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: var(--border-color);
  --table-border-radius: var(--border-radius);
  --table-header-background: var(--typography-body-color);
  --table-header-text-color: var(--color-white);
  --table-row-even-background: transparent;
  --table-row-odd-background: transparent;
  --table-row-even-text-color: var(--typography-body-color);
  --table-row-odd-text-color: var(--typography-body-color);
  --table-footer-background: var(--color-primary);
  --table-footer-text-color: var(--color-white);
  --table-header-cell-border-width: 0;
  --table-header-cell-border-style: solid;
  --table-header-cell-border-color: transparent;
  --table-cell-border-width: 1px;
  --table-cell-border-style: solid;
  --table-cell-border-color: var(--border-color);
}

table {
  border-width: var(--table-border-width) !important;
  border-style: var(--table-border-style) !important;
  border-color: var(--table-border-color) !important;
  border-radius: var(--table-border-radius);
  overflow: hidden;
  border-collapse: separate !important;
  border-left: 0;
  border-spacing: 0px;
  max-width: 100% !important;
  width: -webkit-fill-available !important;
}
table th {
  font-weight: 700;
  padding: 1rem;
  background: var(--table-header-background);
  color: var(--table-header-text-color);
  border-left-width: var(--table-header-cell-border-width) !important;
  border-left-style: var(--table-header-cell-border-style) !important;
  border-left-color: var(--table-header-cell-border-color) !important;
}
table th,
table td {
  padding: 1rem;
}
table thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
  border-collapse: separate;
}
table thead:first-child tr:first-child th:first-child {
  border-radius: var(--table-border-radius) 0 0 0;
}
table thead:last-child tr:last-child th:first-child {
  border-radius: 0 0 0 var(--table-border-radius);
}
table tbody tr:nth-of-type(n) {
  background: var(--table-row-odd-background);
  color: var(--table-row-odd-text-color);
}
table tbody tr:nth-of-type(2n) {
  background: var(--table-row-even-background);
  color: var(--table-row-even-text-color);
}
table tbody:first-child tr:first-child td:first-child {
  border-radius: var(--table-border-radius) 0 0 0;
}
table tbody:last-child tr:last-child td:first-child {
  border-radius: 0 0 0 var(--table-border-radius);
}
table tfoot {
  color: var(--table-footer-text-color);
  background: var(--table-footer-background);
}
table tr {
  padding: 1rem;
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
table td {
  border-left-width: var(--table-cell-border-width) !important;
  border-left-style: var(--table-cell-border-style) !important;
  border-left-color: var(--table-cell-border-color) !important;
  border-top-width: var(--table-cell-border-width) !important;
  border-top-style: var(--table-cell-border-style) !important;
  border-top-color: var(--table-cell-border-color) !important;
}