@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* PADDING */
:root {
  --padding-horizontal: 30px;
  --padding-vertical-large-3: 160px;
  --padding-vertical-large-2: 120px;
  --padding-vertical-large: 80px;
  --padding-vertical-medium-2: 60px;
  --padding-vertical-medium-1: 50px;
  --padding-vertical-small: 40px;
}

@media (max-width: 768px) {
  :root {
    --padding-vertical-large: 60px;
  }
}
/* TYPOGRAPHY */
/* CONTAINERS */
/* BREAKPOINTS */
/* COLORS */
body {
  font-family: "Open Sans", sans-serif;
}

p,
ul,
ul li {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
  color: #323071;
  font-weight: 400;
}

p.smallest-p {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}

p.medium-p {
  font-size: 22px;
}

p.large-p {
  font-size: 26px;
}

p.checklist-item {
  padding-left: 50px;
  margin: 18px 0;
  position: relative;
  font-weight: 700;
}
p.checklist-item::before {
  content: "";
  width: 36px;
  height: 32px;
  position: absolute;
  left: 0;
  top: -5px;
  background: url("/wp-content/themes/mhb/img/icon-sm-checkmark.png") no-repeat center center;
}

span.pretitle {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: #fff;
  background: #4B43BF;
  padding: 5px 15px 5px 21px;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}
span.pretitle:before {
  content: "";
  width: 6px;
  height: 100%;
  background: #FFC53D;
  position: absolute;
  top: 0;
  left: 0;
}
span.pretitle.v2 {
  background: #323071;
}
span.pretitle.v2:before {
  background: #3896D2;
}
span.pretitle.v3 {
  background: none;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 2px solid #FFC53D;
}
span.pretitle.v3:before {
  display: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  color: #323071;
  font-weight: 800;
  line-height: 1.1;
}

.dark p,
.dark ul,
.dark ul li,
.dark h1,
.dark h2,
.dark h3,
.dark h4 {
  color: #FFFFFF;
}

h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

h2 {
  font-size: 38px;
  margin-top: 10px;
  margin-bottom: 16px;
}

h3 {
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  h3 {
    font-weight: 800;
    font-size: 20px;
  }
}
a.button--primary {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: unset;
  background: #FFC53D;
  color: #212121;
  padding: 13px 43px 13px 18px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  width: fit-content;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
a.button--primary::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/wp-content/themes/mhb/img/arrow-square-up-right.svg") no-repeat center center;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
a.button--primary:hover {
  background-color: #f9b107;
}

/* HEADER */
.site-header {
  background: #FFFFFF;
  padding: 16px 0;
}
.site-header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
}
.site-header__nav {
  align-items: center;
}
.site-header__nav.desktop {
  display: flex;
}
@media (max-width: 1000px) {
  .site-header__nav.desktop {
    display: none;
  }
}
.site-header__nav.mobile {
  display: none;
}
@media (max-width: 1000px) {
  .site-header__nav.mobile {
    display: flex;
  }
}
@media (max-width: 480px) {
  .site-header__buttons {
    display: none;
  }
}
.site-header__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.site-header .custom-logo-link img {
  max-height: 65px;
  padding: 8px 0;
}

.above-header {
  background: #1F1D41;
  padding: 8px 0;
}
.above-header__inner {
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
  display: flex;
  justify-content: flex-end;
}
.above-header__inner p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 768px) {
  .above-header {
    display: none;
  }
}

/* DESKTOP */
.mega-navigation {
  overflow: visible;
  z-index: 500;
}
.mega-navigation.above-header-navigation {
  z-index: 600;
}
.mega-navigation .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.mega-navigation .menu > li {
  padding: 0 16px;
}
.mega-navigation .menu > li > a {
  display: block;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.mega-navigation .menu > li:hover > a, .mega-navigation .menu > li.open > a {
  color: #4B43BF;
}
.mega-navigation .menu > li.menu-item-has-children > a {
  padding-right: 35px;
}
.mega-navigation .menu > li.menu-item-has-children > a:after {
  content: "";
  width: 20px;
  height: 17px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url("/wp-content/themes/mhb-financial/img/chevron-down.svg") no-repeat center center;
}
.mega-navigation .menu > li.menu-item-has-children:hover > a:after, .mega-navigation .menu > li.menu-item-has-children.open > a:after {
  transform: translateY(-60%) rotate(180deg);
}
.mega-navigation .menu > li.menu-item-has-children:hover > .mega-menu, .mega-navigation .menu > li.menu-item-has-children.open > .mega-menu {
  display: block;
}
.mega-navigation.main-navigation .menu > li {
  padding-top: 5px;
  padding-top: 5px;
}
@media (min-width: 1000px) {
  .mega-navigation.main-navigation .menu > li:first-child {
    display: none;
  }
}
.mega-navigation.main-navigation .menu > li > a {
  font-weight: 600;
  padding-top: 5px;
  padding-bottom: 5px;
}
.mega-navigation.main-navigation .menu > li.current-menu-item a {
  color: #4B43BF;
  border-bottom: 2px solid #4B43BF;
}
.mega-navigation.above-header-navigation .menu > li > a {
  font-weight: 500;
  font-size: 0.8rem;
}
.mega-navigation.above-header-navigation .mega-menu {
  background: #e1e1e1;
}
.mega-navigation.above-header-navigation .mega-menu__columns > li > a {
  border-color: #333;
}

.mega-menu {
  display: none;
  position: absolute;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100%;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 var(--padding-horizontal);
}
.mega-menu__columns ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.mega-menu__columns > li > a {
  border-bottom: 1px solid #e1e1e1;
  font-weight: bold;
}
.mega-menu__item {
  display: flex;
  flex-direction: column;
}
.mega-menu__item > a {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-decoration: none;
  font-weight: normal;
  font-size: 1rem;
  color: #000;
}

/* MOBILE*/
.menu-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: none;
  background: none;
  border: none;
  padding: 1rem;
  cursor: pointer;
}
.menu-toggle::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "☰";
  color: #333;
}
.menu-toggle:hover::before {
  color: #0073aa;
}

.menu-toggle.open::before {
  content: "×";
  color: #333;
}

.mobile-nav {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 2000;
  overflow: hidden;
}
.mobile-nav.active {
  transform: translateX(0);
}
.mobile-nav .mobile-panels {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.3s ease;
}
.mobile-nav .mobile-panel {
  width: calc(100vw - 10px);
  padding: 2rem 1rem;
  overflow-y: auto;
}
.mobile-nav .mobile-panel .back-btn {
  display: block;
  background: none;
  border: none;
  color: #0073aa;
  font-size: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  text-align: left;
}
.mobile-nav .mobile-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}
.mobile-nav .mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .mobile-panel ul ul {
  margin-top: 0.5rem;
  padding-left: 1rem;
}
.mobile-nav .mobile-panel ul ul ul {
  padding-left: 1.5rem;
}
.mobile-nav .mobile-panel li {
  margin-bottom: 1rem;
}
.mobile-nav .mobile-panel a {
  display: block;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
}
.mobile-nav .mobile-panel li.has-children > a::after {
  content: "▶";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
}

.admin-bar .mobile-nav {
  top: 136px;
}

@media (max-width: 1000px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation .menu {
    display: none;
    flex-direction: column;
  }
  .main-navigation.toggled .menu {
    display: flex;
  }
  .mega-menu {
    position: static;
    box-shadow: none;
    padding: 1rem;
    width: 100%;
    transform: none;
  }
  .mega-menu__columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .mega-menu__item > a {
    padding: 0.75rem 0;
  }
  .mega-menu__item .sub-menu > li > a {
    padding-left: 1.5rem;
  }
  .mega-menu__item .sub-menu .sub-menu > li > a {
    padding-left: 2.5rem;
  }
}
/* FOOTER */
.footer-area-widget-area {
  background: #1F1D41;
  padding: 60px 0;
  position: relative;
}
.footer-area-widget-area > div {
  display: flex;
  gap: 4%;
  position: relative;
  z-index: 25;
}
@media (max-width: 768px) {
  .footer-area-widget-area > div {
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .footer-area-widget-area > div > .widget:nth-of-type(1) {
    width: 35%;
  }
  .footer-area-widget-area > div > .widget:nth-of-type(2) {
    width: 25%;
  }
  .footer-area-widget-area > div > .widget:nth-of-type(3) {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .footer-area-widget-area > div > .widget {
    width: 100%;
    text-align: center;
  }
  .footer-area-widget-area > div > .widget:nth-of-type(3) {
    padding-top: 20px;
    margin-top: 20px;
  }
}
.footer-area-widget-area img.logo {
  margin-bottom: 21px;
}
@media (max-width: 768px) {
  .footer-area-widget-area img.logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
.footer-area-widget-area p {
  line-height: 1.6;
}
.footer-area-widget-area a:not(.button--primary) {
  text-decoration: none;
}
.footer-area-widget-area ul.menu {
  padding-left: 0;
}
.footer-area-widget-area ul.menu li {
  list-style: none;
  margin-bottom: 15px;
}
.footer-area-widget-area ul.menu li:first-child {
  display: none;
}
.footer-area-widget-area ul.menu li a {
  color: #fff;
  font-weight: 600;
}
.footer-area-widget-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: url("/wp-content/themes/mhb/img/mhb-pattern-left.svg") no-repeat center left;
  background-size: auto 100%;
  z-index: 5;
}
@media (max-width: 768px) {
  .footer-area-widget-area:before {
    opacity: 0.3;
  }
}
.footer-area-widget-area:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: url("/wp-content/themes/mhb/img/mhb-pattern-right.svg") no-repeat center right;
  background-size: auto 100%;
  z-index: 5;
}
@media (max-width: 768px) {
  .footer-area-widget-area:after {
    display: none;
  }
}

.copyright-bar-widget-area {
  background: #161534;
  padding: 21px 0;
}
.copyright-bar-widget-area > div {
  display: flex;
  gap: 4%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .copyright-bar-widget-area > div {
    flex-direction: column;
    gap: 20px;
  }
}
.copyright-bar-widget-area img.logo {
  margin-bottom: 21px;
}
.copyright-bar-widget-area p {
  line-height: 1.6;
}
.copyright-bar-widget-area a {
  text-decoration: none;
  line-height: 1;
  text-align: center;
}
.copyright-bar-widget-area ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 0;
  gap: 14px;
}
@media (max-width: 500px) {
  .copyright-bar-widget-area ul {
    flex-direction: column;
    text-align: center;
  }
}
.copyright-bar-widget-area ul li {
  line-height: 1;
}
.copyright-bar-widget-area ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.social-media-links {
  display: flex;
  gap: 17px;
}

/* GLOBAL */
.main-container {
  width: 100%;
  max-width: 1256px;
  padding: 0 var(--padding-horizontal);
  margin: 0 auto;
  position: relative;
}
.main-container--medium-2 {
  width: 100%;
  max-width: 1036px;
  padding: 0 var(--padding-horizontal);
  margin: 0 auto;
  position: relative;
}
.main-container--medium {
  width: 100%;
  max-width: 992px;
  padding: 0 var(--padding-horizontal);
  margin: 0 auto;
  position: relative;
}
.main-container--narrow {
  width: 100%;
  max-width: 804px;
  padding: 0 var(--padding-horizontal);
  margin: 0 auto;
  position: relative;
}

/* BANNERS */
.section-banner_background {
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/mhb/img/banner-color-bg.png") no-repeat bottom left;
  background-size: cover;
  position: relative;
  z-index: 10;
  width: 100%;
}
.section-banner--v2 .section-banner_background {
  background-color: #1F1D41;
  background-image: url("/wp-content/themes/mhb/img/purple-corner.png");
  background-size: 110px;
  background-position: left bottom;
  box-shadow: inset 0 -1px 0 #fff;
}
@media (max-width: 1100px) {
  .section-banner--v2 .section-banner_background {
    background-image: none;
  }
}
.section-banner_background:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url("/wp-content/themes/mhb/img/banner-bg-1.svg") no-repeat right center;
  height: calc(100% - 20px);
  opacity: 0.5;
  width: 100%;
}
@media (max-width: 768px) {
  .section-banner_background:after {
    background-position: right top;
    opacity: 0.1;
  }
}
.section-banner_text {
  flex: 1 1 auto;
  padding-top: var(--padding-vertical-large);
  padding-bottom: 140px;
  min-height: 431px;
  max-width: 590px;
}
@media (max-width: 1100px) {
  .section-banner_text {
    padding-bottom: 190px;
  }
}
.section-banner--v2 .section-banner_text {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .section-banner--v2 .section-banner_text {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .section-banner_text {
    padding-bottom: 0;
    min-height: unset;
  }
}
.section-banner_text p {
  max-width: 580px;
}
.section-banner_image {
  flex: 0 1 490px;
  margin-bottom: -70px;
  margin-top: 20px;
  position: relative;
}
@media (max-width: 1024px) {
  .section-banner_image {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 900px) {
  .section-banner_image {
    margin-top: -10%;
  }
}
.section-banner--v2 .section-banner_image {
  margin-top: 5%;
}
@media (max-width: 768px) {
  .section-banner_image {
    margin-top: 0;
    margin-bottom: 20px;
    flex: 1 1 100%;
  }
}
.section-banner_image img {
  display: block;
}
@media (max-width: 768px) {
  .section-banner_image img {
    margin: auto;
  }
}
.section-banner .main-container {
  display: flex;
  z-index: 22;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .section-banner .main-container {
    flex-direction: column;
  }
}
.section-banner--text-only {
  padding-top: var(--padding-vertical-large);
  padding-bottom: var(--padding-vertical-large);
  position: relative;
}
.section-banner--text-only > div > div {
  z-index: 15;
  position: relative;
}
.section-banner--text-only:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url("/wp-content/themes/mhb/img/banner-bg-2.svg") no-repeat left center;
  height: calc(100% - 20px);
  opacity: 0.5;
  width: 100%;
  z-index: 5;
}
@media (max-width: 768px) {
  .section-banner--text-only:before {
    background-position: left top;
  }
}
.section-banner--text-only:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url("/wp-content/themes/mhb/img/banner-bg-1-alt.svg") no-repeat right center;
  height: calc(100% - 20px);
  opacity: 0.5;
  width: 100%;
  z-index: 5;
}
@media (max-width: 768px) {
  .section-banner--text-only:after {
    background-position: right top;
  }
}

.section-banner_floaters {
  position: absolute;
  bottom: 30px;
  left: -100px;
}
@media (max-width: 1250px) {
  .section-banner_floaters {
    left: -30px;
    bottom: 20%;
  }
}
@media (max-width: 1024px) {
  .section-banner_floaters {
    left: -5px;
    bottom: 10px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .section-banner_floaters {
    left: -10px;
    bottom: 10%;
    right: unset;
    align-items: flex-start;
  }
}
@media (max-width: 460px) {
  .section-banner_floaters {
    bottom: -10%;
  }
}
.section-banner_floaters > div {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  border: 1px solid #d2d2d2;
}
@media (max-width: 768px) {
  .section-banner_floaters > div {
    padding: 5px;
    margin-bottom: 5px;
  }
}
.section-banner_floaters > div p {
  font-size: 12px;
  color: #323071;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section-banner_floaters > div p {
    font-size: 11px;
  }
}

.banner-marquee {
  width: 100%;
  max-width: 1256px;
  padding: 0 var(--padding-horizontal);
  margin: 0 auto;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee p {
  font-size: 22px;
  font-weight: 600;
  color: #1F1D41;
  padding: 16px 20px;
  position: relative;
}
.marquee p:after {
  content: "";
  width: 3px;
  height: 18px;
  background: #FFC53D;
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
}

/* TEXT ONLY ROW */
.section-standard {
  padding: var(--padding-vertical-large) 0;
}

/* THREE BLOCK ROW */
.section-three-blocks {
  padding: var(--padding-vertical-large) 0;
  position: relative;
  z-index: 22;
  clip-path: polygon(0 0, calc(100% - 120px) 0, 100% 120px, 100% 100%, 0 100%);
}
.section-three-blocks.no-clip {
  clip-path: none;
}
.section-three-blocks > div:nth-child(1) {
  position: relative;
  z-index: 22;
}
.section-three-blocks .watermark-bg {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url("/wp-content/themes/mhb/img/row-bg-watermark-1.png") no-repeat bottom center;
  background-size: 100% auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  max-width: 1196px;
  z-index: 5;
}
.section-three-blocks_block-cont {
  margin: 70px auto 50px;
  position: relative;
  display: flex;
  gap: 3%;
  z-index: 22;
}
@media (max-width: 768px) {
  .section-three-blocks_block-cont {
    flex-direction: column;
  }
}
.section-three-blocks_block {
  width: 33%;
  text-align: left;
  position: relative;
  border-bottom: 18px solid #FFC53D;
}
@media (max-width: 768px) {
  .section-three-blocks_block {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px auto;
  }
  .section-three-blocks_block:last-child {
    margin-bottom: 0;
  }
}
.section-three-blocks_block .clip-path {
  padding: 93px 28px 36px 28px;
  background: #1F1D41;
  height: 100%;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
}
.section-three-blocks_block img {
  position: absolute;
  top: -20px;
  z-index: 32;
  left: 28px;
}
.section-three-blocks_block a {
  text-decoration: none;
  color: inherit;
}
.section-three-blocks_block a:hover {
  text-decoration: underline;
}

/* TEXT L ACCORDION R BLOCK */
.section-text-l-accordion-r {
  padding: var(--padding-vertical-large) 0;
}
.section-text-l-accordion-r .main-container {
  display: flex;
  gap: 4%;
}
@media (max-width: 768px) {
  .section-text-l-accordion-r .main-container {
    flex-direction: column;
  }
}
.section-text-l-accordion-r_text {
  width: 48%;
}
@media (max-width: 768px) {
  .section-text-l-accordion-r_text {
    width: 100%;
  }
}
.section-text-l-accordion-r_accordion {
  margin-top: 40px;
  width: 48%;
}
@media (max-width: 768px) {
  .section-text-l-accordion-r_accordion {
    width: 100%;
  }
}

/* MODULE: ACCORDION */
.accordion--2-col {
  padding-top: 40px;
  display: flex;
  gap: 26px;
}
@media (max-width: 768px) {
  .accordion--2-col {
    flex-direction: column;
    gap: 0;
  }
}
.accordion--2-col > div {
  width: 49%;
}
@media (max-width: 768px) {
  .accordion--2-col > div {
    width: 100%;
  }
}
.accordion-item {
  padding: 20px;
  border: 1px solid #d2d2d2;
  margin-bottom: 16px;
  background: #FFFFFF;
  text-align: left;
}
.accordion-item button {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  color: #323071;
  background: #FFFFFF;
  border: unset;
  text-align: left;
}
.accordion-item button::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/wp-content/themes/mhb/img/chevron-down-1.svg") no-repeat center center;
  background-size: contain;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.accordion-item.is-active button::after {
  transform: rotate(-90deg);
}
.accordion-item.is-active {
  border-color: #6E71E6;
}
.accordion-panel {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #D2D2D2;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

/* SECTION IMAGE L TEXT R */
.section-image-l-text-r {
  padding: var(--padding-vertical-large) 0;
}
.section-image-l-text-r .main-container {
  display: flex;
  gap: 4%;
}
@media (max-width: 768px) {
  .section-image-l-text-r .main-container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .section-image-l-text-r_text {
    margin-top: 50px;
  }
}

/* SECTION THREE COLUMN ROW */
.section-three-columns {
  padding: var(--padding-vertical-large) 0;
  position: relative;
}
.section-three-columns_column-cont {
  margin-top: 32px;
  position: relative;
  display: flex;
  gap: 2%;
}
@media (max-width: 768px) {
  .section-three-columns_column-cont {
    flex-direction: column;
  }
}
.section-three-columns_column {
  width: 33%;
  padding: 20px 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section-three-columns_column {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px auto;
  }
}
.section-three-columns_column-text {
  flex-grow: 1;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #d2d2d2;
}
.section-three-columns_column-text h3 {
  margin-bottom: 10px;
}
.section-three-columns_column img {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
}
.section-three-columns_column a {
  align-self: flex-start;
  margin-top: auto;
}

/* SLIDER */
.slider {
  margin: 40px auto;
}
.slider_item {
  position: relative;
}
.slider_item p {
  position: absolute;
  bottom: 26px;
  left: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  text-align: left;
  text-transform: uppercase;
}
.slider_item img {
  max-height: 324px;
}

/* SECTION TEXT L FORM R */
.section-text-l-form-r {
  padding: var(--padding-vertical-large) 0;
  position: relative;
}
.section-text-l-form-r .main-container {
  display: flex;
  gap: 4%;
}
@media (max-width: 768px) {
  .section-text-l-form-r .main-container {
    flex-direction: column;
  }
}
.section-text-l-form-r_text {
  width: 40%;
}
@media (max-width: 768px) {
  .section-text-l-form-r_text {
    width: 100%;
  }
}
.section-text-l-form-r_form {
  width: 56%;
}
@media (max-width: 768px) {
  .section-text-l-form-r_form {
    width: 100%;
  }
}

/* SECTION L 40% R 60% */
.section-l-40-r-60 {
  padding: var(--padding-vertical-large) 0;
  position: relative;
}
.section-l-40-r-60 > div {
  display: flex;
  align-items: center;
  justify-contents: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .section-l-40-r-60 > div {
    flex-direction: column;
  }
}
.section-l-40-r-60 img {
  margin: 0 auto;
}
.section-l-40-r-60_left {
  width: 40%;
}
@media (max-width: 768px) {
  .section-l-40-r-60_left {
    width: 100%;
  }
}
.section-l-40-r-60_right {
  width: 60%;
}
@media (max-width: 768px) {
  .section-l-40-r-60_right {
    width: 100%;
  }
}

/* SECTION L 40% R 60% */
.section-l-60-r-40 {
  padding: var(--padding-vertical-large) 0;
  position: relative;
}
.section-l-60-r-40 > div {
  display: flex;
  align-items: center;
  justify-contents: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .section-l-60-r-40 > div {
    flex-direction: column-reverse;
  }
}
.section-l-60-r-40 img {
  margin: 0 auto;
}
.section-l-60-r-40_left {
  width: 61%;
}
@media (max-width: 768px) {
  .section-l-60-r-40_left {
    width: 100%;
  }
}
.section-l-60-r-40_right {
  width: 40%;
}
@media (max-width: 768px) {
  .section-l-60-r-40_right {
    width: 100%;
  }
}

/* SECTION LARGE FORM */
.section-large-form {
  padding-top: var(--padding-vertical-large);
}

/* CTA SECTION */
.section-cta-1 > div {
  padding-top: var(--padding-vertical-large-2);
  padding-bottom: var(--padding-vertical-large-2);
}

.section-cta-2 {
  border-bottom: 2px solid #fff;
  position: relative;
}
.section-cta-2 > div {
  padding-top: var(--padding-vertical-large);
  padding-bottom: var(--padding-vertical-large);
}
@media (max-width: 768px) {
  .section-cta-2.shape-top-2 {
    margin-top: 60px;
  }
}

/* STAT BLOCK */
.stat-block_top {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #d2d2d2;
  padding: 60px 0 20px 0;
}
.stat-block_top h3 {
  margin-bottom: 0;
}
.stat-block_stats {
  display: flex;
  gap: 3%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .stat-block_stats {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.stat-block_stats > div {
  text-align: center;
}
@media (max-width: 768px) {
  .stat-block_stats > div {
    flex-wrap: wrap;
    width: 45%;
  }
}
@media (max-width: 530px) {
  .stat-block_stats > div {
    flex-wrap: wrap;
    width: 100%;
  }
}
.stat-block p.num {
  font-size: 78px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.stat-block p.num span {
  font-size: 38px;
}

.comparison-table {
  margin-top: 50px;
  margin-bottom: 60px;
}
.comparison-table_th {
  display: flex;
  gap: 3%;
  justify-contents: space-between;
  height: 64px;
  align-items: stretch;
}
.comparison-table_th > div {
  height: 100%;
  width: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
@media (max-width: 820px) {
  .comparison-table_th > div {
    width: 49%;
  }
}
@media (max-width: 768px) {
  .comparison-table_th > div p.medium-p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .comparison-table_th > div p.medium-p {
    font-size: 16px;
  }
}
.comparison-table_th > div:nth-child(1) {
  background: #323071;
  position: relative;
}
.comparison-table_th > div:nth-child(1) :before {
  content: "";
  width: 6px;
  height: 100%;
  background: #3896D2;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 820px) {
  .comparison-table_th > div:nth-child(1) {
    display: none;
  }
}
.comparison-table_th > div:nth-child(2) {
  background: #323071;
  position: relative;
}
.comparison-table_th > div:nth-child(2) p {
  color: #fff;
}
.comparison-table_th > div:nth-child(2):before {
  content: "";
  background: #323071;
  width: 30px;
  height: 100%;
  position: absolute;
  left: -30px;
}
@media (max-width: 820px) {
  .comparison-table_th > div:nth-child(2):before {
    display: none;
  }
}
.comparison-table_th > div:nth-child(3) {
  border-left: 1px solid #1F1D41;
  border-right: 1px solid #1F1D41;
  border-top: 1px solid #1F1D41;
}
.comparison-table_body {
  border: 1px solid #1F1D41;
}
.comparison-table_tr {
  display: flex;
  align-items: center;
  gap: 3%;
  padding: 10px 0;
}
@media (max-width: 820px) {
  .comparison-table_tr {
    flex-wrap: wrap;
    gap: 4%;
  }
}
.comparison-table_tr:nth-child(odd) {
  background: #F9F9F9;
}
.comparison-table_tr > div {
  width: 33%;
  padding: 12px 5px;
}
@media (max-width: 820px) {
  .comparison-table_tr > div {
    width: 48%;
    padding: 20px 18px;
    text-align: left;
  }
}
.comparison-table_tr > div:nth-child(1) {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
}
.comparison-table_tr > div:nth-child(1) p {
  font-weight: 700;
}
.comparison-table_tr > div:nth-child(1) img {
  width: 17px;
  height: 17px;
}
@media (max-width: 820px) {
  .comparison-table_tr > div:nth-child(1) {
    width: 100%;
    justify-content: flex-start;
  }
}
.comparison-table_tr > div:nth-child(2) p {
  font-weight: 600;
}

/* Tooltip */
.tooltip-wrapper {
  position: relative;
  display: none;
}

.tooltip-box {
  position: absolute;
  bottom: 105%;
  left: 10%;
  transform: translateX(-10%);
  background: #fff;
  border: 1px solid #323071;
  padding: 8px 12px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 10;
  width: max-content;
  white-space: normal;
  word-break: break-word;
}
@media (max-width: 820px) {
  .tooltip-box {
    left: 50%;
    transform: translateX(-65%);
    max-width: 350px;
  }
}
.tooltip-box p {
  font-size: 12px;
}

.tooltip-wrapper:hover .tooltip-box {
  opacity: 1;
  visibility: visible;
}

/* SHAPE PSEUDOSELECTOR IMAGERY */
.shape-bottom-1,
.shape-bottom-2,
.shape-bottom-3,
.shape-bottom-4,
.shape-bottom-5,
.shape-top-2 {
  position: relative;
  width: 100%;
}

.shape-bottom-1::after {
  width: 100%;
  height: 200px;
  bottom: 0;
  position: absolute;
  content: "";
  background: url("/wp-content/themes/mhb/img/purple-bottom-1.png") no-repeat top right;
  background-size: cover;
}

.shape-bottom-2::after {
  width: 100%;
  height: 60px;
  bottom: -5px;
  position: absolute;
  content: "";
  background: url("/wp-content/themes/mhb/img/purple-bottom-2.png") no-repeat top left;
  background-size: cover;
}

.shape-bottom-3::after {
  width: 100%;
  height: 60px;
  left: 0;
  bottom: -41px;
  position: absolute;
  content: "";
  background: url("/wp-content/themes/mhb/img/purple-bottom-3.png") no-repeat top left;
  background-size: cover;
}

.shape-bottom-4::after {
  width: 100%;
  height: 225px;
  bottom: 0;
  position: absolute;
  content: "";
  background: url("/wp-content/themes/mhb/img/purple-bottom-4.png") no-repeat top right;
  background-size: cover;
}

.shape-bottom-5::after {
  width: 100%;
  height: 485px;
  bottom: 0;
  position: absolute;
  content: "";
  background: url("/wp-content/themes/mhb/img/purple-bottom-5.png") no-repeat top center;
  background-size: cover;
}

.shape-top-2::before {
  width: 100%;
  height: 60px;
  left: 0;
  top: -58px;
  position: absolute;
  content: "";
  background: url("/wp-content/themes/mhb/img/purple-top-2.png") no-repeat top left;
  background-size: cover;
}

/* IMAGE BACKGROUND  */
.section-text-img-bg {
  padding: var(--padding-vertical-large-3) 0;
}

/* BACKGROUND IMAGE OVERRIDES */
.bg--flag-cape-lake {
  background-image: url("/wp-content/uploads/2025/06/flag-cape-img-scaled.jpg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
}
@media (max-width: 868px) {
  .bg--flag-cape-lake {
    background-position: 20%;
  }
}
@media (max-width: 668px) {
  .bg--flag-cape-lake {
    background-position: center;
  }
}

.bg--large-m-watermark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/mhb/img/row-bg-watermark-1.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  opacity: 0.3;
  z-index: 1;
}

/* TERMS AND POLICIES PAGES */
.page-terms-and-policies h1 {
  margin-bottom: 20px;
}
.page-terms-and-policies h3 {
  margin-top: 30px;
}

/* FORMS */
.form-container {
  padding: 50px 45px;
  background: #fff;
  border: 5px solid #1F1D41;
  z-index: 99;
  position: relative;
  max-width: 880px;
  min-height: 600px;
  margin: 0 auto;
}
.form-container h1, .form-container h2 {
  font-size: 38px;
  text-align: Center;
}
@media (max-width: 768px) {
  .form-container h1, .form-container h2 {
    font-size: 28px;
  }
}
.form-container p.required-legend {
  width: 100%;
  text-align: right;
  border-top: 1px solid #d2d2d2;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 600;
}
.form-container p.required-legend span {
  color: #3896D2;
}
.form-container form .gfield_required_text {
  display: none;
}
.form-container form .gfield_required:after,
.form-container form .ginput_container_checkbox label:before {
  content: "*";
  color: #3896D2;
  margin-left: -3px;
}
.form-container form label {
  font-size: 17px !important;
  color: #323071 !important;
  font-weight: 600 !important;
}
.form-container form fieldset {
  margin-top: 15px;
}
.form-container form fieldset label {
  color: #000 !important;
}
.form-container form input,
.form-container form select {
  border: 1px solid #D2D2D2 !important;
  border-radius: 8px !important;
}
.form-container form fieldset input {
  border-radius: 4px !important;
  padding: 8px;
}
.form-container form button.custom-submit-button.gform-button {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: unset;
  background: #FFC53D !important;
  color: #212121 !important;
  padding: 13px 18px 13px 18px !important;
  display: inline-block;
  text-decoration: none;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.form-container form button.custom-submit-button.gform-button:hover {
  background-color: #f9b107 !important;
}
.form-container form .gform-footer {
  justify-content: center;
  width: 100%;
}
.form-container .gform-theme--foundation .gform_fields {
  row-gap: 20px !important;
}
.form-container .gform_confirmation_message {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
.form-container .gform-theme--framework .gfield--type-choice .gchoice {
  align-items: center;
  margin-top: 10px;
}

.offset-solid-shadow {
  position: relative;
  display: inline-block;
}

.offset-solid-shadow::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: #323071;
  z-index: 1;
}

.offset-solid-shadow img {
  position: relative;
  z-index: 2;
  display: block;
}

.error-404 {
  min-height: 80vh;
  padding-top: 20vh;
}

.screen-reader-text,
.sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus,
.sr-only:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Text alignment */
.text--center {
  text-align: center;
}

.text--left {
  text-align: left;
}

.text--right {
  text-align: right;
}

.text--justify {
  text-align: justify;
}

/* Margins */
.m-t-120 {
  margin-top: 120px;
}

.m-t-60 {
  margin-top: 60px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-t-32 {
  margin-top: 32px;
}

.m-t-24 {
  margin-top: 24px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-16 {
  margin-top: 16px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-0 {
  margin-top: 0;
}

.m-b-120 {
  margin-bottom: 120px;
}

.m-b-60 {
  margin-bottom: 60px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-b-32 {
  margin-bottom: 32px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-16 {
  margin-bottom: 16px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-0 {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  div.m-t-40 {
    margin-top: 20px;
  }
}
/* Padding */
.p-t-120 {
  padding-top: 120px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-t-32 {
  padding-top: 32px;
}

.p-t-24 {
  padding-top: 24px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-t-16 {
  padding-top: 16px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-t-0 {
  padding-top: 0;
}

.p-b-120 {
  padding-bottom: 120px;
}

.p-b-80 {
  padding-bottom: 80px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-b-32 {
  padding-bottom: 32px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-b-16 {
  padding-bottom: 16px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-0 {
  padding-bottom: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.align--centered-block {
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tablet-centered {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}
/* Background colors */
.bg--purple-dark {
  background-color: #1F1D41;
}

.bg--purple-light {
  background-color: #3E399A;
}

.bg--grey {
  background-color: #F9F9F9;
}

/* Border colors */
.border--light-purple {
  border-color: #3E399A;
}

/* Text colors */
.color--yellow {
  color: #FFC53D;
}

.color--purple {
  color: #323071;
}

/* Font Weights */
.weight--extra-bold {
  font-weight: 800;
}

.weight--bold {
  font-weight: 700;
}

.weight--semi-bold {
  font-weight: 600;
}

.weight--normal {
  font-weight: 400;
}

/* Font family */
.font--body {
  font-family: "Open Sans", sans-serif;
}

.font--heading {
  font-family: "Manrope", sans-serif;
}

/* Various modifiers */
@media (min-width: 1120px) {
  .desktop--m-t-extra {
    margin-top: 40px;
  }
}

/*# sourceMappingURL=style.css.map */
