:root {
  --primary: #1464CC;
  --primary-btn: #1464CC;
  --primary-btn-text: #fff;
  --primary-hover: #1c79f4;
  --link: #438ae5;
  --link-hover: #1c79f4;
  --text-white: #fff;
  --text-header: #FCFCFC;
  --text-body: #949499;
  --text-detail: #87878C;
  --error: #EA8181;
  --error-surface: #4C3136;
  --success: #88BF71;
  --success-surface: #2B3E23;
  --surface-base: #1E1F1F;
  --surface-semi-dark: #1c1c1c;
  --surface-semi-light: #292929;
  --border: rgba(255, 255, 255, 0.05);
  --body-weight: 400;
  --body-semi-bold: 500;
  --body-bold: 700;
  --header-weight: 700;
}

@font-face {
  font-family: "Cal Sans UI";
  src: url("/wp-content/themes/mhpx/assets/fonts/CalSansUI.ttf") format("truetype");
  font-weight: 100 900; /* Define the weight range */
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 16px;
  background-color: var(--surface-base);
  scroll-behavior: smooth;
}

body, .mhpx-content {
  background-color: var(--surface-base);
}

* {
  font-family: "Cal Sans UI", sans-serif;
  color: var(--text-body);
  font-weight: var(--body-weight);
  font-variation-settings: "GEOM" 50;
  box-sizing: border-box;
  scrollbar-color: var(--text-detail) var(--surface-base);
}

::-webkit-scrollbar-track {
  background: var(--surface-base);
}

::-webkit-scrollbar-thumb {
  background-color: var(--text-detail);
}

h1, h2, h3, h4, h5 {
  font-family: "Cal Sans UI", sans-serif;
  color: var(--text-header);
  text-transform: uppercase;
  font-weight: var(--header-weight);
  letter-spacing: -0.03em;
  word-spacing: 0.05em;
}

p, li {
  font-size: 1rem;
  line-height: 1.5;
}

h6 {
  font-weight: var(--body-semi-bold);
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}

h5 {
  font-size: 1.2rem;
  line-height: 1.5;
}

h4 {
  font-size: 1.44rem;
  line-height: 1.4;
}

h3 {
  font-size: 1.728rem;
  line-height: 1.3;
}

h2 {
  font-size: 2.0736rem;
  line-height: 1.1;
}
@media screen and (max-width: 500px) {
  h2 {
    font-size: 1.728rem;
    line-height: 1.3;
  }
}

h1 {
  font-size: 2.985984rem;
  line-height: 1.05;
}
@media screen and (max-width: 500px) {
  h1 {
    font-size: 2.48832rem;
    line-height: 1.1;
  }
}

strong {
  font-weight: var(--body-bold);
}

a, .inline-link {
  text-decoration: underline;
  color: var(--link);
  font-weight: var(--body-bold);
  transition: all 0.3s ease;
}
a:hover, .inline-link:hover {
  color: var(--link-hover);
}

.icon-link-wrapper .icon-link-container {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 2px;
  flex-wrap: wrap;
}
.icon-link-wrapper .icon-link-text {
  transition: all 0.3s ease;
  text-decoration: underline;
  color: var(--link);
  font-weight: var(--body-bold);
  transition: all 0.3s ease;
}
.icon-link-wrapper .icon-link-text:hover {
  color: var(--link-hover);
}
.icon-link-wrapper .icon-link-text {
  text-decoration: none;
  color: var(--text-detail);
  font-weight: var(--body-weight);
}
.icon-link-wrapper:has(a):hover .icon-link-text {
  color: var(--link-hover);
}
.icon-link-wrapper:has(a):hover path {
  fill: var(--link-hover);
}
.icon-link-wrapper svg {
  width: 28px;
  min-width: 28px;
  height: 28px;
}
.icon-link-wrapper svg path {
  fill: var(--text-detail);
  transition: all 0.3s ease;
}

.base-btn {
  border-radius: 4px;
  padding: 12px 20px;
  font-weight: var(--body-semi-bold);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  text-align: center;
  display: block;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
}
.base-btn:active {
  filter: brightness(0.85);
  transition: none;
}
@media screen and (max-width: 500px) {
  .base-btn {
    width: 100%;
  }
}

.primary-btn {
  color: var(--primary-btn-text);
  background-color: var(--primary-btn);
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  font-weight: var(--body-semi-bold);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  text-align: center;
  display: block;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
}
.primary-btn:active {
  filter: brightness(0.85);
  transition: none;
}
@media screen and (max-width: 500px) {
  .primary-btn {
    width: 100%;
  }
}
.primary-btn:hover {
  color: var(--primary-btn-text);
  background-color: var(--primary-hover);
}

.primary-outline-btn {
  border: 1px solid var(--link);
  color: var(--link);
  background-color: var(--surface-base);
  background-image: unset !important;
  border-radius: 4px;
  padding: 12px 20px;
  font-weight: var(--body-semi-bold);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  text-align: center;
  display: block;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
}
.primary-outline-btn:active {
  filter: brightness(0.85);
  transition: none;
}
@media screen and (max-width: 500px) {
  .primary-outline-btn {
    width: 100%;
  }
}
.primary-outline-btn:hover {
  background-color: var(--surface-semi-light);
}

.btn-l {
  padding: 20px;
}

.btn-s {
  padding: 8px 12px !important;
  font-size: 14px;
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

input:not([type=submit]):not([type=checkbox]):not([type=radio]), textarea, select, option {
  background: var(--surface-semi-light) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-body) !important;
  height: 50px;
  border-radius: 0px !important;
  padding: 12px !important;
  font-size: 1rem;
  line-height: 1.5;
}
input:not([type=submit]):not([type=checkbox]):not([type=radio])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder, option::-moz-placeholder {
  color: var(--text-body);
}
input:not([type=submit]):not([type=checkbox]):not([type=radio])::placeholder, textarea::placeholder, select::placeholder, option::placeholder {
  color: var(--text-body);
}

label, select {
  cursor: pointer;
}

input {
  cursor: text;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
.group {
  zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}
.group:before, .group:after {
  content: "";
  display: table;
  width: 0;
}
.group:after {
  clear: both;
}
@media screen and (min-width: 500px) {
  .group.group-flex {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
  }
  .group.group-flex .c {
    padding-left: 0;
    padding-right: 0;
  }
}

.c {
  display: block;
  float: left;
}
.c.c-1-5 {
  width: 20%;
}
@media screen and (max-width: 500px) {
  .c.c-1-5 {
    width: 100%;
  }
}
.c.c-12 {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .c.c-12 {
    width: 100%;
  }
}
.c.c-11 {
  width: 91.66%;
}
@media screen and (max-width: 500px) {
  .c.c-11 {
    width: 100%;
  }
}
.c.c-10 {
  width: 83.33%;
}
@media screen and (max-width: 500px) {
  .c.c-10 {
    width: 100%;
  }
}
.c.c-9 {
  width: 75%;
}
@media screen and (max-width: 500px) {
  .c.c-9 {
    width: 100%;
  }
}
.c.c-8 {
  width: 66.66%;
}
@media screen and (max-width: 500px) {
  .c.c-8 {
    width: 100%;
  }
}
.c.c-7 {
  width: 58.33%;
}
@media screen and (max-width: 500px) {
  .c.c-7 {
    width: 100%;
  }
}
.c.c-7-2 {
  width: 60%;
}
@media screen and (max-width: 500px) {
  .c.c-7-2 {
    width: 100%;
  }
}
.c.c-6 {
  width: 50%;
}
@media screen and (max-width: 500px) {
  .c.c-6 {
    width: 100%;
  }
}
.c.c-5 {
  width: 41.66%;
}
@media screen and (max-width: 500px) {
  .c.c-5 {
    width: 100%;
  }
}
.c.c-4 {
  width: 33.33%;
}
@media screen and (max-width: 500px) {
  .c.c-4 {
    width: 100%;
  }
}
.c.c-3 {
  width: 25%;
}
@media screen and (max-width: 500px) {
  .c.c-3 {
    width: 100%;
  }
}
.c.c-2 {
  width: 16.66%;
}
@media screen and (max-width: 500px) {
  .c.c-2 {
    width: 100%;
  }
}
.c.c-1 {
  width: 8.33%;
}
@media screen and (max-width: 500px) {
  .c.c-1 {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .c.c-xs-1 {
    width: 8.33%;
  }
  .c.c-xs-2 {
    width: 16.66%;
  }
  .c.c-xs-3 {
    width: 25%;
  }
  .c.c-xs-4 {
    width: 33.33%;
  }
  .c.c-xs-5 {
    width: 41.66%;
  }
  .c.c-xs-6 {
    width: 50%;
  }
  .c.c-xs-7 {
    width: 58.33%;
  }
  .c.c-xs-8 {
    width: 66.66%;
  }
  .c.c-xs-9 {
    width: 100%;
  }
  .c.c-xs-10 {
    width: 75%;
  }
  .c.c-xs-11 {
    width: 83.33%;
  }
  .c.c-xs-12 {
    width: 100%;
  }
}
@media screen and (min-width: 500px) and (max-width: 992px) {
  .c.c-md-1 {
    width: 8.33%;
  }
  .c.c-md-2 {
    width: 16.66%;
  }
  .c.c-md-3 {
    width: 25%;
  }
  .c.c-md-4 {
    width: 33.33%;
  }
  .c.c-md-5 {
    width: 41.66%;
  }
  .c.c-md-6 {
    width: 50%;
  }
  .c.c-md-7 {
    width: 58.33%;
  }
  .c.c-md-8 {
    width: 66.66%;
  }
  .c.c-md-9 {
    width: 100%;
  }
  .c.c-md-10 {
    width: 75%;
  }
  .c.c-md-11 {
    width: 83.33%;
  }
  .c.c-md-12 {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .c.c-lg-1 {
    width: 8.33%;
  }
  .c.c-lg-2 {
    width: 16.66%;
  }
  .c.c-lg-3 {
    width: 25%;
  }
  .c.c-lg-4 {
    width: 33.33%;
  }
  .c.c-lg-5 {
    width: 41.66%;
  }
  .c.c-lg-6 {
    width: 50%;
  }
  .c.c-lg-7 {
    width: 58.33%;
  }
  .c.c-lg-8 {
    width: 66.66%;
  }
  .c.c-lg-9 {
    width: 100%;
  }
  .c.c-lg-10 {
    width: 75%;
  }
  .c.c-lg-11 {
    width: 83.33%;
  }
  .c.c-lg-12 {
    width: 100%;
  }
}

@media screen and (min-width: 500px) {
  .group-flex .c {
    -webkit-box-flex: 0;
  }
  .group-flex .c.c-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .group-flex .c.c-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .group-flex .c.c-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .group-flex .c.c-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .group-flex .c.c-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .group-flex .c.c-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .group-flex .c.c-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .group-flex .c.c-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .group-flex .c.c-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .group-flex .c.c-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .group-flex .c.c-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .group-flex .c.c-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.container, .ab-container-inside, .nf-form-content, .nf-after-form-content, .nf-response-msg {
  max-width: 1500px;
  padding-left: 12px;
  padding-right: 12px;
  margin-right: auto;
  margin-left: auto;
}
.container.fluid, .ab-container-inside.fluid, .nf-form-content.fluid, .nf-after-form-content.fluid, .nf-response-msg.fluid {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container, .ab-container-inside, .nf-form-content, .nf-after-form-content, .nf-response-msg {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.nf-form-content {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
@media screen and (min-width: 768px) {
  .nf-form-content {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

.offset-12 {
  margin-left: 100%;
}
@media screen and (max-width: 500px) {
  .offset-12 {
    margin-left: 0;
  }
}

.offset-11 {
  margin-left: 91.66%;
}
@media screen and (max-width: 500px) {
  .offset-11 {
    margin-left: 0;
  }
}

.offset-10 {
  margin-left: 83.33%;
}
@media screen and (max-width: 500px) {
  .offset-10 {
    margin-left: 0;
  }
}

.offset-9 {
  margin-left: 75%;
}
@media screen and (max-width: 500px) {
  .offset-9 {
    margin-left: 0;
  }
}

.offset-8 {
  margin-left: 66.66%;
}
@media screen and (max-width: 500px) {
  .offset-8 {
    margin-left: 0;
  }
}

.offset-7 {
  margin-left: 58.33%;
}
@media screen and (max-width: 500px) {
  .offset-7 {
    margin-left: 0;
  }
}

.offset-6 {
  margin-left: 50%;
}
@media screen and (max-width: 500px) {
  .offset-6 {
    margin-left: 0;
  }
}

.offset-5 {
  margin-left: 41.66%;
}
@media screen and (max-width: 500px) {
  .offset-5 {
    margin-left: 0;
  }
}

.offset-4 {
  margin-left: 33.33%;
}
@media screen and (max-width: 500px) {
  .offset-4 {
    margin-left: 0;
  }
}

.offset-3 {
  margin-left: 25%;
}
@media screen and (max-width: 500px) {
  .offset-3 {
    margin-left: 0;
  }
}

.offset-2 {
  margin-left: 16.66%;
}
@media screen and (max-width: 500px) {
  .offset-2 {
    margin-left: 0;
  }
}

.offset-1 {
  margin-left: 8.33%;
}
@media screen and (max-width: 500px) {
  .offset-1 {
    margin-left: 0;
  }
}

.mhpx-footer {
  background-color: var(--surface-semi-dark);
}
.mhpx-footer p, .mhpx-footer a, .mhpx-footer span {
  color: var(--text-detail);
  text-decoration: none;
  font-weight: var(--body-weight);
}
.mhpx-footer a:hover {
  color: var(--link-hover);
}
.mhpx-footer li {
  list-style: none;
}
.mhpx-footer .icon-link-wrapper svg {
  height: 24px;
  width: 24px;
}

.footer-nav-section .container {
  display: flex;
  -moz-column-gap: 64px;
       column-gap: 64px;
  row-gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.mhpx-footer__logo {
  width: 144px;
  height: 36px;
  transition: all 0.3s ease;
}
.mhpx-footer__logo:hover {
  transform: translateY(2px);
}

.mhpx-footer__right {
  display: flex;
  -moz-column-gap: 64px;
       column-gap: 64px;
  row-gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.footer-icon-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-copyright-section .container {
  display: flex;
  -moz-column-gap: 64px;
       column-gap: 64px;
  row-gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 16px;
  padding-bottom: 16px;
}

.park-web-container {
  display: flex;
  gap: 7px;
}

.park-web-container svg {
  height: 16px;
  width: 64px;
  transform: translateY(4px);
  transition: all 0.3s ease;
}
.park-web-container svg:hover {
  transform: translateX(2px) translateY(4px);
}

.footer-disclaimer-section .container {
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-disclaimer-section * {
  font-size: 12px;
  line-height: 1.5;
}

.footer-disclaimer-section .title-span {
  font-weight: var(--body-bold);
  color: var(--text-body);
}

.mhpx-navigation {
  background-color: transparent;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.3s ease;
  transition-duration: 0.5s;
}
.mhpx-navigation:has(.mhpx-navigation__menu.mhpx-active), .mhpx-navigation.scrolling {
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  background-color: rgba(0, 0, 0, 0.4);
}
.mhpx-navigation .header-notification-bar {
  background: var(--primary-btn);
}
.mhpx-navigation .header-notification-bar .container {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.mhpx-navigation .header-notification-bar p {
  color: var(--primary-btn-text);
  font-weight: var(--body-semi-bold);
  font-size: 14px;
  line-height: 1.5;
}
.mhpx-navigation .header-notification-bar a {
  background: var(--primary-btn-text);
  padding: 4px 10px 5px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}
.mhpx-navigation > .container {
  padding-top: 12px;
  padding-bottom: 12px;
}
.mhpx-navigation .group-flex {
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
}
.mhpx-navigation .c {
  padding-left: 0;
  padding-right: 0;
}
.mhpx-navigation .mhpx-navigation__logo a {
  display: flex;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}
.mhpx-navigation .mhpx-navigation__logo .mhpx-logo {
  height: 36px;
  width: 144px;
  transition: all 0.3s ease;
}
.mhpx-navigation .mhpx-navigation__logo .mhpx-logo:hover {
  transform: translateY(2px);
}
.mhpx-navigation .mobile-menu {
  display: none;
  text-align: right;
}
.mhpx-navigation .mobile-menu i {
  color: var(--text-body);
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .mhpx-navigation .mobile-menu {
    display: flex;
    justify-content: flex-end;
  }
}
.mhpx-navigation .mhpx-navigation__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .mhpx-navigation .mhpx-navigation__menu {
    flex-direction: column;
    overflow: hidden;
    flex-wrap: nowrap;
    transition-duration: 0.5s;
    max-height: 0;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .mhpx-navigation .mhpx-navigation__menu.mhpx-active {
    max-height: 300px;
    padding: 1rem 0;
    text-align: center;
  }
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item {
  display: inline-block;
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item.mhpx-break {
  margin: 0 0 0 1rem;
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation-menu__link, .mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation__sub-menu .mhpx-navigation-submenu__link {
  display: inline-block;
  margin: 0 0.5em;
  text-decoration: none;
  color: var(--text-header);
  font-weight: var(--body-weight);
}
@media screen and (max-width: 768px) {
  .mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation-menu__link, .mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation__sub-menu .mhpx-navigation-submenu__link {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation-menu__link:hover, .mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation__sub-menu .mhpx-navigation-submenu__link:hover {
  color: var(--link-hover);
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation-menu__link {
  padding: 0.5rem 0.33rem;
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation__sub-menu .mhpx-navigation-submenu__link {
  padding: 0.5rem;
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation-menu__cta {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation-menu__cta {
    font-size: 1.2rem !important;
    line-height: 28px !important;
  }
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-sub-icon {
  display: none;
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item.mhpx-navigation-menu__item--submenu {
  position: relative;
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item.mhpx-navigation-menu__item--submenu .mhpx-sub-icon {
  display: inline-block;
  margin-left: 4px;
  width: 12px;
  height: 12px;
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item.mhpx-navigation-menu__item--submenu .mhpx-sub-icon path {
  fill: var(--text-body);
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item.mhpx-navigation-menu__item--submenu:hover .mhpx-navigation__sub-menu {
  display: block;
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation__sub-menu {
  background-color: var(--surface-base);
  border-radius: 4px;
  display: none;
  left: 0;
  list-style: none;
  position: absolute;
  text-align: left;
  top: 100%;
  width: -moz-max-content;
  width: max-content;
  z-index: 10;
}
.mhpx-navigation .mhpx-navigation__menu .mhpx-navigation-menu__item .mhpx-navigation__sub-menu.mhpx-active {
  max-height: 1000px;
  display: block;
}
.mhpx-navigation .hamburger-container {
  width: -moz-fit-content;
  width: fit-content;
}
.mhpx-navigation .hamburger-tap-target {
  width: 48px;
  height: 40px;
  position: relative;
  z-index: 999;
  right: -12px;
  cursor: pointer;
}
.mhpx-navigation .hamburger-icon {
  transition: 0.3s ease transform;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  position: absolute;
  right: 12px;
  bottom: 11px;
}
.mhpx-navigation .hamburger-bar1, .mhpx-navigation .hamburger-bar2, .mhpx-navigation .hamburger-bar3 {
  height: 2px;
  margin-bottom: 6px;
  background-color: var(--text-header);
  width: 24px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mhpx-navigation .hamburger-bar1 {
  transform-origin: 0;
}
.mhpx-navigation .hamburger-bar2 {
  right: 0;
  transition: 0.15s ease opacity;
}
.mhpx-navigation .hamburger-bar3 {
  margin-bottom: 0;
  transform-origin: 54px;
}

header:has(.mhpx-active) .hamburger-icon {
  transform: translateY(-2px);
}
header:has(.mhpx-active) .hamburger-icon .hamburger-bar1 {
  transform: rotateZ(-45deg) translateX(-9px) translateY(19px);
  width: 30px;
}
header:has(.mhpx-active) .hamburger-icon .hamburger-bar2 {
  opacity: 0;
}
header:has(.mhpx-active) .hamburger-icon .hamburger-bar3 {
  transform: rotateZ(45deg) translateX(8.5px) translateY(21px);
  width: 30px;
}

@media screen and (max-width: 768px) {
  #nav-container {
    max-width: none;
    flex: 0 0 100%;
  }
  .mhpx-navigation:not(:has(.mhpx-active)) {
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  #nav-container {
    max-width: none;
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 500px) {
  .mhpx-navigation .header-notification-bar .container {
    row-gap: 4px;
    flex-wrap: wrap;
  }
  .mhpx-navigation .header-notification-bar p {
    font-size: 12px;
    line-height: 1.5;
  }
  .mhpx-navigation .header-notification-bar a {
    font-size: 12px;
    line-height: 1.5;
  }
  .mhpx-navigation .container.group-flex {
    display: flex;
    padding-top: 4px;
    padding-bottom: 4px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .mhpx-navigation .container.group-flex:before {
    display: none;
  }
  .mhpx-navigation .mhpx-navigation__logo .mhpx-logo {
    height: 20px;
    width: 80px;
  }
  .mhpx-navigation .mobile-menu {
    width: -moz-fit-content;
    width: fit-content;
  }
  .mhpx-navigation .sm-btn-container {
    display: flex;
    align-items: center;
    height: 47px;
  }
}
body.login h1 a {
  height: 36px;
  width: 104px;
  background-size: contain;
  background-repeat: no-repeat;
}
body.login .notice, body.login form {
  background-color: var(--surface-semi-light);
}
body.login .notice {
  border-color: var(--primary);
}
body.login form {
  border: unset;
}
body.login form input:not([type=submit]):not([type=checkbox]):not([type=radio]), body.login form textarea, body.login form select, body.login form option {
  background-color: var(--surface-base) !important;
}
body.login #wp-submit, body.login button {
  color: var(--primary-btn-text);
  background-color: var(--primary-btn);
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  font-weight: var(--body-semi-bold);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  text-align: center;
  display: block;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
}
body.login #wp-submit:active, body.login button:active {
  filter: brightness(0.85);
  transition: none;
}
@media screen and (max-width: 500px) {
  body.login #wp-submit, body.login button {
    width: 100%;
  }
}
body.login #wp-submit:hover, body.login button:hover {
  color: var(--primary-btn-text);
  background-color: var(--primary-hover);
}
body.login #wp-submit, body.login button {
  padding: 8px 12px !important;
  font-size: 14px;
}
body.login #nav a, body.login #backtoblog a {
  text-decoration: underline;
  color: var(--link);
  font-weight: var(--body-bold);
  transition: all 0.3s ease;
}
body.login #nav a:hover, body.login #backtoblog a:hover {
  color: var(--link-hover);
}
body.login #nav a, body.login #backtoblog a {
  text-decoration: none;
  color: var(--text-detail);
}

.mhpx-hero {
  height: 100svh;
  min-height: -moz-fit-content;
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-end;
  overflow: hidden;
}
.mhpx-hero.condensed {
  height: 70svh;
}
.mhpx-hero .hero-overlay-color, .mhpx-hero .hero-overlay-img {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
}
.mhpx-hero .hero-overlay-color {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.54);
}
.mhpx-hero .hero-overlay-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 1;
}
.mhpx-hero .hero-overlay-blur {
  width: 1000px;
  height: 4000px;
  position: absolute;
  z-index: 3;
  background-color: rgba(2, 2, 2, 0.13);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transform: translate(-65%, 50%) rotate(-46deg);
  bottom: 0;
  left: 0;
}
.mhpx-hero .hero-svg {
  width: auto;
  height: 103svh;
  position: absolute;
  bottom: -1px;
  left: 88px;
  z-index: 4;
  fill: #8FBFFF;
  mix-blend-mode: color;
}
.mhpx-hero .container {
  width: 100%;
}
.mhpx-hero .hero-content {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 5;
  gap: 12px;
  padding-bottom: 56px;
}
.mhpx-hero .hero-subheader {
  font-size: 1.44rem;
  line-height: 1.4;
  color: var(--text-header);
}
.mhpx-hero .hero-button-container {
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mhpx-hero .hero-button-container:not(:has(.btn-base)) {
  display: none;
}
.mhpx-hero .hero-button-container .btn-base {
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 500px) {
  .mhpx-hero .hero-svg {
    left: 188px;
  }
}
@media screen and (min-width: 768px) {
  .mhpx-hero .hero-overlay-blur {
    transform: translate(-30%, 50%) rotate(-46deg);
  }
  .mhpx-hero .hero-svg {
    left: 370px;
  }
}
@media screen and (min-width: 992px) {
  .mhpx-hero h1 {
    max-width: 680px;
  }
  .mhpx-hero .hero-subheader {
    max-width: 850px;
  }
  .mhpx-hero .hero-svg {
    right: -1px;
    left: unset;
  }
}
.form-pre-section {
  padding-top: 72px;
}
.form-pre-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
}
@media screen and (max-width: 992px) {
  .form-pre-section .container {
    align-items: flex-start;
  }
}
.form-pre-section h2, .form-pre-section p {
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .form-pre-section h2, .form-pre-section p {
    text-align: left;
  }
}
.form-pre-section p {
  max-width: 600px;
}

.nf-form-fields-required, .nf-form-title, .nf-fu-progress {
  display: none;
}

.nf-form-content {
  padding-top: 0 !important;
  padding-bottom: 72px !important;
}
.nf-form-content .form-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.nf-form-content .form-divider h5 {
  max-width: -moz-max-content;
  max-width: max-content;
}
.nf-form-content .form-divider span {
  height: 1px;
  min-width: 20px;
  flex-grow: 1;
  background-color: var(--border);
  display: block;
}
.nf-form-content .nf-cell {
  padding: 0 !important;
}
.nf-form-content .nf-field-container:not(.submit-container) {
  margin-bottom: 32px;
}
.nf-form-content .submit-container {
  margin-bottom: 0;
}
.nf-form-content .nf-field-label {
  display: none;
}
.nf-form-content .nf-field-label label {
  color: var(--text-body) !important;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: var(--body-weight);
}
.nf-form-content .nf-row .nf-cell[style="width: 33%;"] {
  width: calc(33.33% - 16.0008px) !important;
  margin-right: 24px;
}
.nf-form-content .nf-row .nf-cell[style="width: 33%;"]:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .nf-form-content .nf-row .nf-cell[style="width: 33%;"] {
    width: 100% !important;
    margin-right: 0;
  }
}
.nf-form-content .nf-row .nf-cell[style="width: 50%;"] {
  width: calc(50% - 12px) !important;
  margin-right: 24px;
}
.nf-form-content .nf-row .nf-cell[style="width: 50%;"]:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .nf-form-content .nf-row .nf-cell[style="width: 50%;"] {
    width: 100% !important;
    margin-right: 0;
  }
}
.nf-form-content input:not([type=submit]):not([type=checkbox]), .nf-form-content textarea, .nf-form-content select, .nf-form-content option, .nf-form-content .nf-form-content input:not([type=submit]) {
  background: var(--surface-semi-light) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-body) !important;
  height: 50px;
  border-radius: 0px !important;
  padding: 12px !important;
  font-size: 1rem;
  line-height: 1.5;
}
.nf-form-content input:not([type=submit]):not([type=checkbox])::-moz-placeholder, .nf-form-content textarea::-moz-placeholder, .nf-form-content select::-moz-placeholder, .nf-form-content option::-moz-placeholder, .nf-form-content .nf-form-content input:not([type=submit])::-moz-placeholder {
  color: var(--text-body);
}
.nf-form-content input:not([type=submit]):not([type=checkbox])::placeholder, .nf-form-content textarea::placeholder, .nf-form-content select::placeholder, .nf-form-content option::placeholder, .nf-form-content .nf-form-content input:not([type=submit])::placeholder {
  color: var(--text-body);
}
.nf-form-content .nf-field-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 12px !important;
}
.nf-form-content .nf-field-container.submit-container .nf-field-element .ninja-forms-field.nf-element {
  color: var(--primary-btn-text);
  background-color: var(--primary-btn);
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  font-weight: var(--body-semi-bold);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  text-align: center;
  display: block;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
}
.nf-form-content .nf-field-container.submit-container .nf-field-element .ninja-forms-field.nf-element:active {
  filter: brightness(0.85);
  transition: none;
}
@media screen and (max-width: 500px) {
  .nf-form-content .nf-field-container.submit-container .nf-field-element .ninja-forms-field.nf-element {
    width: 100%;
  }
}
.nf-form-content .nf-field-container.submit-container .nf-field-element .ninja-forms-field.nf-element:hover {
  color: var(--primary-btn-text);
  background-color: var(--primary-hover);
}
.nf-form-content .nf-field-container.file_upload-container .nf-field-element .ninja-forms-field.nf-element {
  border: 1px solid var(--link);
  color: var(--link);
  background-color: var(--surface-base);
  background-image: unset !important;
  border-radius: 4px;
  padding: 12px 20px;
  font-weight: var(--body-semi-bold);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  text-align: center;
  display: block;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
}
.nf-form-content .nf-field-container.file_upload-container .nf-field-element .ninja-forms-field.nf-element:active {
  filter: brightness(0.85);
  transition: none;
}
@media screen and (max-width: 500px) {
  .nf-form-content .nf-field-container.file_upload-container .nf-field-element .ninja-forms-field.nf-element {
    width: 100%;
  }
}
.nf-form-content .nf-field-container.file_upload-container .nf-field-element .ninja-forms-field.nf-element:hover {
  background-color: var(--surface-semi-light);
}
.nf-form-content .nf-field-container.submit-container .nf-field-element .ninja-forms-field.nf-element, .nf-form-content .nf-field-container.file_upload-container .nf-field-element .ninja-forms-field.nf-element, .nf-form-content .nf-field-element button {
  box-shadow: none;
  letter-spacing: normal;
  height: -moz-fit-content;
  height: fit-content;
  height: -webkit-fit-content;
}
.nf-form-content .nf-field-container.submit-container .nf-field-element .ninja-forms-field.nf-element span, .nf-form-content .nf-field-container.file_upload-container .nf-field-element .ninja-forms-field.nf-element span, .nf-form-content .nf-field-element button span {
  color: inherit;
  font-weight: var(--body-semi-bold);
}
.nf-form-content .btn.nf-fu-button-cancel {
  display: none !important;
}
.nf-form-content .nf-field-element label:after, .nf-form-content .listcheckbox-wrap .nf-field-element label:after, .nf-form-content .checkbox-wrap .nf-field-label label:after {
  background-color: var(--surface-base) !important;
  border-color: var(--text-detail) !important;
}
.nf-form-content .nf-error.field-wrap .nf-field-element:after {
  background: var(--error) !important;
  color: var(--surface-base) !important;
}
.nf-form-content .nf-error .ninja-forms-field {
  border-color: var(--error) !important;
}
.nf-form-content .listcheckbox-wrap .nf-field-element label.nf-checked-label:before, .nf-form-content .listcheckbox-wrap .nf-field-label label.nf-checked-label:before, .nf-form-content .checkbox-wrap .nf-field-label label:before {
  color: var(--text-header) !important;
}
.nf-form-content .listradio-wrap .nf-field-element label.nf-checked-label:before {
  background-color: var(--text-header) !important;
}
.nf-form-content .nf-pass.field-wrap .nf-field-element:after {
  color: var(--success);
}
.nf-form-content .files_uploaded {
  margin-top: 12px;
}
.nf-form-content .checkbox-wrap .nf-field-label label:after {
  margin-top: 3px;
}
.nf-form-content .listcheckbox-wrap .nf-field-element label:after, .nf-form-content .listcheckbox-container .nf-field-element label:before {
  top: 0;
}

.nf-error-msg, .ninja-forms-req-symbol {
  color: var(--error) !important;
}

.nf-after-form-content .nf-error-msg {
  padding-bottom: 72px;
  margin-top: -32px;
  font-size: 1rem;
  line-height: 1.5;
}

.nf-response-msg p, .nf-response-msg span {
  color: var(--success);
  font-weight: var(--body-semi-bold);
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: "Cal Sans UI", sans-serif !important;
  padding: 16px 0;
}

.nf-field-element ul {
  padding-left: 1rem;
}

.nf-field-element:has(.nf-fu-fileinput-button) {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nf-field-element:has(.nf-fu-fileinput-button) input[type=hidden], .nf-field-element:has(.nf-fu-fileinput-button) input[type=file] {
  display: none !important;
}

.nf-saves-cont, .nf-row:has(.save-container) {
  display: none;
}

#nf-autosave-modal {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nf-autosave-bg {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
}

.nf-autosave-content {
  max-width: 600px;
  margin: 0 24px 0;
  max-height: calc(90vh - 48px);
  border-radius: 4px;
  top: 24px;
  overflow-y: auto;
  background: var(--surface-base);
  padding: 32px;
  position: relative;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.3s ease;
}
.nf-autosave-content .nf-form-content {
  padding: 0 !important;
}
@media screen and (min-width: 500px) {
  .nf-autosave-content a, .nf-autosave-content .nf-autosave-login {
    text-align: center;
  }
}

.nf-autosave-text-container p {
  padding-top: 4px;
}
@media screen and (min-width: 500px) {
  .nf-autosave-text-container h4, .nf-autosave-text-container p {
    text-align: center;
  }
}

#nf-autosave-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: var(--surface-base);
  color: var(--text-detail);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
#nf-autosave-close:hover {
  opacity: 0.6;
}

#nf-form-17-cont {
  max-width: 600px;
}

.form-light-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-detail);
}

.disclaimer {
  position: fixed;
  z-index: 998;
  height: 100svh;
  width: 100%;
  background: var(--surface-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.disclaimer .container {
  padding-top: 56px;
  padding-bottom: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer--waiting-for-setup {
  transition: unset;
  opacity: 0;
}

.disclaimer--visible {
  transition: unset;
}

.disclaimer--hidden {
  opacity: 0;
  transform: translateY(20px);
}

body:has(.disclaimer--waiting-for-setup) .mhpx-content > *:not(.disclaimer), body:has(.disclaimer--visible) .mhpx-content > *:not(.disclaimer) {
  opacity: 0;
}

body:has(.disclaimer--visible) {
  overflow: hidden;
}
body:has(.disclaimer--visible) #nf-autosave-modal {
  z-index: 997;
}

.disclaimer__content-wrapper {
  padding: 48px;
  background: var(--surface-semi-light);
  max-width: 700px;
  overflow: auto;
}

.disclaimer__text-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 32px;
}

.disclaimer__text {
  font-size: 1.2rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .disclaimer__content-wrapper {
    padding: 24px;
    max-height: 100%;
  }
  .disclaimer__text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.login-section {
  padding: 72px 12px;
  background-color: var(--surface-base);
}
.login-section a[href*="/my-account/lost-password/"] {
  display: none;
}
.login-section .container {
  padding: 0;
}
.login-section .login-register-container {
  padding: 24px;
  margin: 0 auto;
  background-color: var(--surface-semi-light);
  width: -moz-fit-content;
  width: fit-content;
  max-width: 900px;
}
.login-section .login-register-container .nf-form-content input:not([type=submit]):not([type=checkbox]), .login-section .login-register-container .nf-form-content textarea, .login-section .login-register-container .nf-form-content select, .login-section .login-register-container .nf-form-content option, .login-section .login-register-container .nf-form-content .nf-form-content input:not([type=submit]) {
  background-color: var(--surface-base) !important;
}

.login-section .mhpb-form-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px auto 24px;
  padding: 12px 0;
  border: 1px solid var(--primary-border);
  border-radius: 4px;
}
.login-section .login-option {
  width: 100%;
}
.login-section .login-option a {
  width: 100% !important;
  border: 1px solid var(--link);
  color: var(--link);
  background-color: var(--surface-base);
  background-image: unset !important;
  border-radius: 4px;
  padding: 12px 20px;
  font-weight: var(--body-semi-bold);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  text-align: center;
  display: block;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
}
.login-section .login-option a:active {
  filter: brightness(0.85);
  transition: none;
}
@media screen and (max-width: 500px) {
  .login-section .login-option a {
    width: 100%;
  }
}
.login-section .login-option a:hover {
  background-color: var(--surface-semi-light);
}
.login-section .login-option a {
  background-color: transparent;
  font-weight: var(--body-bold);
}
.login-section .login-option[data-mhpb-active=true] a {
  background-color: var(--primary-btn);
  color: var(--primary-btn-text);
  border: none;
}
.login-section .login-option[data-mhpb-active=true] a:hover {
  background-color: var(--primary-hover);
  color: var(--primary-btn-text);
}
.login-section .nf-form-content, .login-section .nf-after-form-content {
  padding: 0 !important;
}
.login-section .nf-after-form-content .nf-error-msg {
  padding: 0;
  margin-top: 32px;
}
.login-section .nf-response-msg {
  padding: 48px 0 0 0 !important;
  margin-bottom: -12px;
}
.login-section .forgetmenot {
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .login-section {
    padding: 96px 32px;
  }
  .login-section .log-in-h2 {
    text-align: center;
  }
  .login-section .mhpb-form-toggle {
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  .login-section .login-option {
    width: -moz-fit-content;
    width: fit-content;
  }
  .login-section .login-option a {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1500px) {
  .login-section .container {
    padding: 0 32px 0;
  }
}
.clip-entrance {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: clipReveal 1.2s 0.1s cubic-bezier(0.2, 0, 0, 1) forwards;
}

/* Keyframes to slide the clip mask to the right */
@keyframes clipReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}/*# sourceMappingURL=web.css.map */