:root {
  --black: black;
  --page-max-width: 1000px;
  --menu-change-difference: 100px;
  --white: white;
  --color1: #182a54;
  --color2: #00a89e;
  --color3: #02a79d;
  --color4: #63749e;
  --color5: #c3e4f8;
  --color6: #182b54;
  --faint1: #f8f8f8;
  --faint2: #ebebeb;
  --faint3: #e4e4e4;
  --menu-difference-change-anchor: -100px;
  --nav01_drop-down-hide: -100vh;
  --main-padding: 3rem;
  --content-spacing: 1.5rem;
  --rounded-corners-med: 2rem;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--black);
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  flex: 1;
  margin-bottom: 0;
}

a {
  border-color: var(--black);
  color: var(--black);
  text-decoration: none;
}

ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.container {
  width: 100%;
  max-width: var(--page-max-width);
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.container.special1 {
  padding-bottom: 50px;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper.fill-menu {
  padding-top: var(--menu-change-difference);
}

.padding-xxsmall {
  padding: .5rem;
}

.button {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  text-align: center;
  background-color: #fff0;
  border: 2px solid #0000;
  border-radius: 3rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .75rem 2rem;
  font-size: 1.25rem;
  line-height: 1.1;
  transition: background-color .3s;
  display: flex;
}

.button.is-alternate {
  color: #000;
  background-color: #fff;
}

.button.is-icon {
  padding: 1rem;
}

.button.color-3.txt-color-white.vertical-margin1 {
  margin-bottom: 0;
  display: none;
}

.button.color-3.txt-color-white.vertical-margin1.special {
  margin-bottom: 0;
}

.button.border-color-white.txt-color-white.vertical-margin1.footer01_cta-button {
  background-color: #24242470;
}

.sg-label {
  color: #fff;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  border-radius: 20px;
  min-width: 13.75rem;
  margin-right: 2rem;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.sg-label.is-html-tag {
  background-color: #be4aa5;
  display: block;
}

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

.form-input {
  height: auto;
  min-height: 2.75rem;
  color: var(--black);
  background-color: #fff;
  border: 1px solid #6e6e6e3b;
  margin-bottom: .5rem;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: #0009;
}

.txt-color-white {
  color: var(--white);
}

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

.icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.icon.xs {
  width: 1rem;
  height: 1rem;
}

.icon.s {
  width: 1.25rem;
  height: 1.25rem;
}

.icon.l {
  width: 2rem;
  height: 2rem;
}

.icon.xl {
  width: 2.5rem;
  height: 2.5rem;
}

.txt-align-center {
  text-align: center;
}

.txt-align-center.txt-color-6.size-change {
  font-size: 1.5rem;
}

.sg-category {
  align-self: stretch;
  padding-top: 1.5rem;
}

.rich-text h1 {
  margin-top: 2rem;
}

.rich-text blockquote {
  margin-top: 1.5rem;
}

.rich-text h2 {
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
}

.rich-text h3, .rich-text h4 {
  margin-top: 1.5rem;
}

.rich-text h5, .rich-text h6 {
  margin-top: 1.25rem;
}

.rich-text p {
  margin-top: 1rem;
}

.rich-text a {
  text-decoration: underline;
}

.rich-text figcaption {
  border-left: 2px solid var(--black);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

._404-container {
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 24rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

._404-heading {
  color: #fff;
  text-align: center;
  max-width: 990px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
}

._404-heading2 {
  color: #838383;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1;
}

.sg-logo {
  width: 100%;
  max-width: 15rem;
}

.sg-menu {
  justify-content: space-between;
  display: flex;
}

.sg-menu.normal-padding {
  background-color: #ececec;
}

.normal-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.sg-info-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.sg-category-title {
  color: #fff;
  text-align: center;
  background-color: #222;
  border-radius: 20px;
  width: 108%;
  margin-left: -4%;
  padding: .75rem 1.5rem;
}

.sg-individual-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  display: flex;
}

.sg-individual-item.special {
  background-color: #fdfdfd;
  border-radius: 20px;
  align-items: flex-start;
  padding: 1.5rem;
  box-shadow: 0 0 8px #0003;
}

.color-palette-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1rem;
  display: grid;
}

.color-black {
  background-color: var(--black);
}

.individual-color-palette {
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.color-white {
  background-color: var(--white);
}

.color-1 {
  background-color: var(--color1);
}

.color-2 {
  background-color: var(--color2);
}

.color-3 {
  background-color: var(--color3);
}

.color-4 {
  background-color: var(--color4);
}

.color-5 {
  background-color: var(--color5);
}

.color-6 {
  background-color: var(--color6);
}

.sg-label-container {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  display: grid;
}

.icon-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  padding-top: .75rem;
  padding-bottom: .75rem;
  display: grid;
}

.loader_img-wrap {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.paragraph-11 {
  color: #474747;
  text-align: center;
  flex: 1;
  align-items: flex-start;
  padding-top: 1rem;
  display: flex;
}

.aa-nav-background-slide-up {
  z-index: 0;
  background-color: #e6e6e680;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.iphone-image-nm {
  width: 300px;
  margin-bottom: -81px;
}

.nav01_menu-open-state {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.nav01_menu-open-state.stop-scroll {
  color: var(--black);
  transition: color .35s;
  display: flex;
}

.nav01_menu-open-state.stop-scroll:hover {
  color: #556c7e;
}

.hero-container-cs {
  z-index: 6;
  background-color: #fffffff0;
  border-radius: 15px 80px 80px;
  justify-content: center;
  align-items: center;
  width: 84%;
  max-width: 860px;
  min-height: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
  position: relative;
  top: .6vw;
  left: 64px;
  box-shadow: 0 0 20px -14px #000;
}

.nav-logo {
  opacity: 1;
  width: 349px;
  max-width: none;
}

.about-adviser-quote-nm {
  color: var(--color6);
  font-style: italic;
  display: block;
}

.image-24 {
  width: 100px;
  margin-left: 16px;
  margin-right: 16px;
}

.grid {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.image-loader-wrapper {
  z-index: 14;
  width: 100%;
  height: 100vh;
  font-size: 1em;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.test-video-container-nm {
  position: relative;
}

.aa-full-nav-left-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-right: 10%;
  display: flex;
}

.aa-left-arrow-svg {
  z-index: 1;
  color: #202020;
  width: 14px;
  position: relative;
}

.div-block-40 {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
  display: flex;
}

.copyright-year {
  padding-right: 5px;
}

.heading-30 {
  width: 100%;
  color: var(--color6);
  text-align: right;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #ececec;
  margin-top: 0;
  padding-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.aa-close-nav-button {
  z-index: 50;
  cursor: pointer;
  background-color: #292929;
  border-bottom-left-radius: 150px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.aa-close-nav-button.start-scroll {
  background-color: #051f33;
}

.aa-nav-logo-link {
  align-items: center;
  display: flex;
}

.iphone-video-holder-nm {
  border-radius: 30px;
  position: absolute;
  inset: 13px auto auto 30px;
  overflow: hidden;
}

.quick-links-container {
  background-color: var(--color2);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.loader_column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 7vh;
  padding-right: 7vh;
  display: flex;
}

.loader_column.is-alt {
  justify-content: flex-end;
}

.load-bar-progress {
  background-color: #5988c9;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: relative;
  left: -100%;
}

.hero-image-cs {
  border: 25px solid #fff;
  border-radius: 300px;
  width: 428px;
  margin-top: -67px;
  margin-left: -128px;
  display: block;
  box-shadow: 0 0 20px 1px #1e1d5f12;
}

.tab-content-3 {
  text-align: justify;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: block;
}

.aa-navigation {
  z-index: 6;
  position: relative;
}

.aa-nav-cta-button {
  background-color: var(--color6);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-left: 4px;
  padding: 12px 18px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.aa-nav-cta-button:hover {
  background-color: var(--color5);
}

.aa-nav-cta-button.full-nav-cta {
  align-self: auto;
  font-size: 1.2rem;
}

.text-span-28 {
  font-weight: 200;
}

.aa-full-nav-link-wrapper {
  color: #1a1a1f;
  border-bottom-width: 1px;
  border-bottom-color: #fff;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-left: 18px;
  padding-right: 18px;
  text-decoration: none;
  transition: border-color .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.aa-full-nav-link-wrapper:hover {
  border-color: #818181;
}

.load-content-container {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link-12 {
  color: #01c0f4;
  text-align: right;
  letter-spacing: normal;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.div-block-26 {
  background-color: var(--color1);
  text-align: center;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 20px;
  display: block;
}

.nav01_link-container {
  align-items: stretch;
  display: flex;
}

.hero-paragraph-as {
  color: var(--color2);
  margin-top: 22px;
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 24px;
}

.text-span-12 {
  color: #d4d4d4;
  display: none;
}

.text-span-22 {
  color: var(--color2);
}

.div-block-62 {
  text-align: left;
  border-left: 2px solid #ececec;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: stretch;
  margin-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: flex;
}

.tabs-content {
  background-color: #fff;
  border-radius: 20px;
}

.aa-close-nav-img {
  color: #fff;
  width: 30px;
  height: 30px;
  position: relative;
  top: -18px;
  right: -18px;
}

.tab-content-nm-3 {
  text-align: justify;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 78px;
  display: flex;
}

.loader_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.about-adviser-image-nm {
  border-radius: 200px;
  width: 150px;
  margin-left: 18px;
  margin-right: 18px;
}

.decorative-line-nm {
  border-top: 1px solid #d3d3d3;
  flex: 1;
  width: 40%;
  height: 3px;
}

.heading-45 {
  color: var(--color6);
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
}

.heading-31 {
  width: 100%;
  color: var(--color6);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #ececec;
  margin-top: 0;
  padding-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.paragraph-27 {
  text-align: center;
  padding-top: 1rem;
  font-size: 16px;
  font-weight: 400;
}

.hero-heading-as {
  color: var(--color2);
  text-align: left;
  text-transform: none;
  border-bottom: 2px solid #ebebeb;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 18px;
  font-size: 50px;
  font-weight: 800;
  line-height: 52px;
}

.aa-nav-hamburger-svg {
  width: 24px;
  height: 24px;
}

.load-header {
  color: #0c3c7f;
  text-align: center;
  text-transform: uppercase;
  max-width: 640px;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 18px;
  font-size: 60px;
  font-weight: 900;
  line-height: 60px;
}

.loader_flex {
  height: 561vh;
  display: flex;
  transform: scale(.1);
}

.text-span-26 {
  color: #ffffff59;
  font-size: 12px;
}

.test-heading-span-nm {
  font-weight: 800;
}

.footer {
  z-index: 5;
  background-color: #fff;
  width: 100%;
  position: relative;
  box-shadow: 0 0 14px #0000001c;
}

.div-block-41 {
  background-color: #f2f2f2;
  flex: 1;
  height: 2px;
}

.main-hero-text-block-as {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 495px;
  margin-left: 18px;
  margin-right: 18px;
  display: flex;
}

.aa-menu-text {
  color: #1e4d72;
  margin-top: -16px;
  font-size: 5rem;
  font-weight: 100;
}

.aa-top-bar-nav {
  z-index: 3;
  background-color: var(--color1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 0 20px 13px #0003;
}

.load-bar-container {
  background-color: #e2e2e2;
  border-radius: 20px;
  width: 94%;
  max-width: 600px;
  height: 8px;
  overflow: hidden;
}

.load-company-name {
  color: #f5900c;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 18px;
}

.link-11 {
  color: var(--color3);
  letter-spacing: normal;
  align-self: flex-start;
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.about-adviser-image-section-nm {
  align-items: center;
  margin-top: 28px;
  display: flex;
}

.aa-full-nav-right-wrapper {
  flex: 1;
  max-width: 600px;
}

.text-span-30 {
  color: var(--color2);
  font-size: 16px;
  font-weight: 300;
}

.grid-2 {
  grid-column-gap: 10px;
  grid-row-gap: 7px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.html-embed-video-nm {
  cursor: pointer;
  margin-bottom: -7px;
  padding-bottom: 0;
}

.aa-full-nav-link {
  z-index: 2;
  width: 100%;
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: 1.625rem;
  line-height: 2rem;
  position: relative;
}

.hero-section {
  z-index: 1;
  background-image: linear-gradient(#101b3abf, #101b3abf), url('../images/portrait-of-a-happy-multigeneration-family-using-e-2022-01-18-23-38-46-utc_1portrait-of-a-happy-multigeneration-family-using-e-2022-01-18-23-38-46-utc.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 730px;
  padding-top: 70px;
  display: flex;
  position: relative;
}

.tab-text-nm {
  color: var(--color2);
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 800;
}

.about-adviser-author-nm {
  color: var(--color6);
  font-style: italic;
  font-weight: 800;
}

.loader {
  z-index: 800;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.about-adviser-paragraph-nm {
  text-align: justify;
  font-size: 15px;
  line-height: 25px;
}

.aa-nav-container {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 23px 26px;
  display: flex;
}

.test-container-nm {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  min-height: 400px;
  display: flex;
}

.text-span-29 {
  font-weight: 800;
}

.what-matters-block {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 19px -7px #0003;
}

.text-span-16 {
  color: var(--color1);
  font-style: italic;
  font-weight: 700;
}

.aa-cta-and-social-wrapper {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.button-3 {
  background-color: var(--color3);
  color: #fff;
  border-radius: 20px;
  margin: 5px 4px;
  padding: 7px 13px;
  font-size: 14px;
  transition: background-color .3s;
}

.button-3:hover {
  background-color: #10294b;
}

.indv-test-heading-nm {
  color: var(--color2);
  text-align: right;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid #eee;
  padding-bottom: 1rem;
  padding-left: 36px;
  font-size: 36px;
  font-weight: 300;
  line-height: 40px;
}

.tab-link-nm {
  opacity: .6;
  cursor: pointer;
  background-color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 50%;
  margin-left: 4px;
  margin-right: 4px;
  padding-top: 13px;
  transition: opacity .3s;
}

.tab-link-nm:hover {
  opacity: .82;
}

.tab-link-nm.w--current {
  opacity: 1;
  cursor: default;
  background-color: #fff;
  padding-top: 28px;
}

.loader_column-inner {
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.load-cover-background {
  z-index: 13;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.nav01_right-side-wrapper {
  z-index: 3;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
  position: relative;
}

.footer-container {
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1000px;
  min-height: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 42px;
  padding-bottom: 42px;
  display: flex;
  position: relative;
}

.text-block-7 {
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #00000073;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8px;
  padding-bottom: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.paragraph-24 {
  width: 80%;
  color: var(--color5);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  font-size: 11px;
  line-height: 1.2;
}

.tabs-menu-nm {
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 44px;
  padding-right: 44px;
  display: flex;
}

.image-29 {
  max-width: 250px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.div-block-39 {
  clear: none;
  cursor: default;
  background-color: #fff;
  border-radius: 40px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 0 20px -8px #0003;
}

.div-block-39:hover {
  transform: scale(1.02);
}

.aa-full-slide-in-nav {
  z-index: 4;
  opacity: 1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: #fffffff0;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto 100%;
  overflow: auto;
}

.div-block-29 {
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-end;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.aa-nav-main-button {
  color: var(--white);
  text-align: center;
  background-color: #3898ec00;
  align-items: center;
  padding: 5px 10px;
  font-size: .9rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.test-text-container-nm {
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 70px;
  padding-right: 50px;
  display: flex;
}

.aa-full-nav-wrapper {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1.7fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.test-paragraph-nm {
  max-width: 475px;
  color: var(--color6);
  text-align: right;
  letter-spacing: 1.5px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 18px;
}

.txt-color-black {
  color: var(--black);
}

.txt-color-1 {
  color: var(--color1);
}

.txt-color-2 {
  color: var(--color2);
}

.txt-color-3 {
  color: var(--color3);
}

.txt-color-4 {
  color: var(--color4);
}

.txt-color-5 {
  color: var(--color5);
}

.txt-color-6 {
  color: var(--color6);
}

.border-color-black {
  border-color: var(--black);
}

.border-color-white {
  border-color: var(--white);
}

.border-color-1 {
  border-color: var(--color1);
}

.border-color-2 {
  border-color: var(--color2);
}

.border-color-wrapper {
  border-style: solid;
  border-width: 3px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 2px;
  height: 2px;
  overflow: hidden;
}

.border-color-3 {
  border-color: var(--color3);
}

.border-color-4 {
  border-color: var(--color4);
}

.border-color-5 {
  border-color: var(--color5);
}

.border-color-6 {
  border-color: var(--color6);
}

.collection-list-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-item-5 {
  background-color: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
}

.collection-list-wrapper-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.image-44 {
  float: left;
  object-fit: cover;
  border-radius: 120px;
  align-self: center;
  width: 140px;
  height: 140px;
}

.div-block-66 {
  align-items: center;
  display: flex;
}

.div-block-67 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  padding-top: 32px;
}

.div-block-115 {
  border-left: 1px solid #c7c7c7;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin-left: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  display: flex;
}

.close-div {
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.close-div.start-scroll {
  inset: 0%;
}

.show-bio-container {
  z-index: 30;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #1a2335c9;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 32px;
  padding-bottom: 30px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.light-box_close-icon {
  z-index: 2;
  background-color: var(--color6);
  color: #fff;
  cursor: pointer;
  border: 5px solid #fff;
  border-radius: 80px;
  width: 75px;
  height: 75px;
  margin-left: -75px;
  padding: 20px;
  transition: transform .3s;
  position: fixed;
  inset: .75rem .75rem auto auto;
  box-shadow: 0 0 20px 9px #0000002e;
}

.light-box_close-icon:hover {
  transform: translate(-12px, 12px)scale(1.2);
}

.light-box_close-icon.start-scroll {
  cursor: pointer;
}

.div-block-46 {
  z-index: 2;
  background-color: #fff;
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  width: 96%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 64px 30px 40px;
  display: flex;
  position: relative;
}

.text-block-13 {
  color: var(--color2);
  text-align: left;
  text-transform: none;
  padding-top: 5px;
  font-size: .9rem;
  line-height: 1;
}

.image-25 {
  object-fit: cover;
  border-radius: 200px;
  align-self: flex-start;
  width: 250px;
  max-width: 250px;
  height: 250px;
  max-height: 250px;
  margin-top: 0;
}

.link-14 {
  color: var(--color3);
  font-size: .85rem;
  text-decoration: none;
}

.div-block-47 {
  text-align: left;
  border-left: 1px solid #ebebeb;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.heading-55 {
  color: var(--color1);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
}

.view-bio {
  background-color: var(--color6);
  color: #fff;
  border-radius: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 8px 22px;
}

.collection-list-6 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section {
  width: 100%;
  position: relative;
}

.pro-per_tabs {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.color-faint1 {
  background-color: var(--faint1);
}

.color-faint2 {
  background-color: var(--faint2);
}

.color-faint3 {
  background-color: var(--faint3);
}

.button-hover:hover {
  background-color: var(--color2);
}

.about-ps-text-nm {
  color: #535353;
  margin-top: 10px;
  margin-bottom: 0;
}

.individual-ps-link-nm {
  color: var(--color6);
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.individual-ps-company-nm {
  text-align: center;
  background-color: #eee;
  border-radius: 20px;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 16px;
  display: flex;
}

.ps-grid-container-nm-2 {
  grid-column-gap: 16px;
  grid-row-gap: 31px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  justify-items: stretch;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: grid;
}

.ps-image-nm {
  border-radius: 10px;
  width: 100%;
  max-width: 396px;
  margin-right: 22px;
}

.individual-ps-title-nm-2 {
  color: #19285a;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1;
}

.empty-state {
  display: none;
}

.anchor {
  margin-top: var(--menu-difference-change-anchor);
  position: absolute;
  inset: 0% 0% auto;
}

.nav-cd9_link {
  align-items: center;
  font-size: .9rem;
  display: flex;
}

.nav-cd9_link.w--current {
  color: #000;
}

.nav-cd9_link.start-scroll.show-on-hamburger-menu {
  display: none;
}

.button-4 {
  background-color: var(--color6);
  color: #fff;
  text-align: center;
  border: 2px solid #0000;
  border-radius: 40px;
  padding: .75rem 1.5rem;
}

.button-4.is-small {
  background-color: #123952;
  border-radius: 40px;
  align-self: center;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.button-4.is-small:hover {
  background-color: #2d4453;
}

.dropdown-icon {
  color: #5c5c5c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1rem;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.nav-cd9_bottom-bar {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: .75rem;
  padding-bottom: .75rem;
  display: none;
  position: relative;
}

.nav01_logo {
  aspect-ratio: 600 / 129;
  width: 100%;
}

.nav01_logo.hide {
  aspect-ratio: 300 / 74;
  display: block;
}

.nav01_drop-down-link {
  color: var(--color3);
  text-align: center;
  letter-spacing: -.01em;
  margin-top: 2px;
  margin-bottom: 2px;
  padding: 6px;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  transition: color .3s;
}

.nav01_drop-down-link:hover {
  color: var(--color1);
}

.nav01_link-category {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.nav01_wrapper {
  z-index: 10;
  background-color: #0000;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  overflow: auto;
  box-shadow: 0 0 10px 6px #0000000f;
}

.text-style-link {
  color: #00dff3;
  text-decoration: none;
}

.nav01_logo-link {
  z-index: 3;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 260px;
  display: flex;
}

.nav01_logo-link.w--current {
  width: 260px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-cd9_menu-dropdown {
  justify-content: flex-start;
  align-items: stretch;
  font-size: .9rem;
  display: flex;
  position: static;
}

.nav-cd9_menu-button {
  padding: 0;
}

.nav-cd9_bottom-bar-background-layer {
  background-color: #252525;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
}

.nav01_category-title {
  color: #061237;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 32px;
}

.nav-cd9_dropdown-list {
  flex: 1;
}

.nav-cd9_dropdown-list.w--open {
  background-color: #ddd0;
  width: 100vw;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 20px 12px -20px #0003;
}

.nav-cd9_dropdown-toggle {
  align-items: center;
  display: flex;
}

.nav-cd9_dropdown-container {
  background-image: linear-gradient(#f5f5f5, #fff 32%);
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.nav01_background {
  z-index: 2;
  background-color: #fffffffa;
  position: absolute;
  inset: 0%;
}

.nav01_drop-down-link-container {
  width: 100%;
  max-width: var(--page-max-width);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.nav01_content-wrapper {
  width: 100%;
  max-width: var(--page-max-width);
  justify-content: space-between;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding: 1.2rem 1rem;
  display: flex;
}

.nav-cd9_menu {
  z-index: 3;
  flex: 1;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
  position: static;
}

.nav-cd9_menu-left {
  align-items: stretch;
  display: flex;
}

.nav-cd9_menu-right {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  align-items: center;
  display: flex;
}

.nav-cd9_bottom-bar-content {
  z-index: 1;
  grid-column-gap: 4px;
  grid-row-gap: 1rem;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: max-content max-content;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.nav01_link {
  color: var(--black);
  text-align: center;
  background-color: #3898ec00;
  align-items: center;
  padding: 5px 10px;
  font-size: .9rem;
  font-weight: 400;
  text-decoration: none;
  transition: color .4s ease-in-out, letter-spacing .4s ease-in-out;
  display: flex;
}

.nav01_cta {
  background-color: var(--color6);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-left: 4px;
  padding: 12px 18px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .4s ease-in-out, letter-spacing .4s ease-in-out;
  display: flex;
}

.nav01_icon-wrapper {
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 15px;
  display: flex;
}

.nav01_menu-line-top, .nav01_menu-line-middle, .nav01_menu-line-bottom {
  background-color: #000;
  width: 100%;
  height: 2px;
}

.nav01_dropdown-container {
  z-index: 2;
  width: 100%;
  max-height: 100vh;
  padding-top: var(--menu-change-difference);
  background-image: linear-gradient(#f0f0f0, #fff 67%);
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: auto;
}

.nav01_dropdown-container.open {
  inset: 0% 0% auto;
}

.nav01_dropdown-container.open.close {
  inset: auto 0% 100%;
}

.nav01_dropdown-container.close {
  z-index: 2;
  inset: auto 0% 100%;
}

.filler-section {
  background-color: var(--color1);
  background-image: linear-gradient(#00000045, #0000 33%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150vh;
  display: flex;
  position: relative;
}

.nav01_top-bar-wrapper {
  z-index: 3;
  background-color: var(--faint2);
  width: 100%;
  padding-right: 1rem;
  position: relative;
}

.nav01_top-bar-container {
  width: 100%;
  max-width: var(--page-max-width);
  justify-content: flex-end;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
}

.nav01_social-m-link, .nav01_social-m-link.white {
  color: var(--color1);
}

.nav01_social-m-icon {
  width: 40px;
  margin-left: 7px;
}

.nav01_social-m-icon.small {
  width: 20px;
  margin-left: 0;
  margin-right: 4px;
  padding-top: 5px;
}

.nav01_top-bar-button {
  background-color: var(--color2);
  color: var(--white);
  border-radius: 0 0 20px 20px;
  margin-bottom: -10px;
  padding: 8px 16px 10px;
  font-size: .9rem;
  font-weight: 700;
}

.nav01_close-background {
  z-index: 1;
  background-color: var(--color1);
  opacity: .88;
  cursor: pointer;
  background-image: linear-gradient(#00000080, #0000);
  width: 100%;
  position: absolute;
  inset: 0%;
}

.nav01_close-background.stop-scroll {
  cursor: pointer;
}

.nav01_menu-close-state {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: relative;
}

.nav01_menu-close-state.stop-scroll {
  color: var(--black);
  transition: color .35s;
  display: flex;
}

.nav01_menu-close-state.stop-scroll:hover {
  color: #556c7e;
}

.nav01_container {
  z-index: 5;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 2px 20px -9px #0000002b;
}

.nav01_dropdown-wrapper {
  width: 100%;
  height: 100vh;
}

.nav01_dropdown-wrapper.show {
  top: 0;
}

.nav01_dropdown-wrapper.close {
  margin-top: var(--nav01_drop-down-hide);
}

.heading-56 {
  padding-top: 266px;
}

.filler-text {
  color: var(--white);
  margin-top: -50vh;
  font-size: 4.5rem;
  position: relative;
}

.filler-sub-text {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 100;
}

.f {
  background-image: linear-gradient(#00000091, #0000);
  position: absolute;
  inset: 0%;
}

.hero01_decorative-circle {
  background-color: #d8d8d8;
  border-radius: 17px;
  width: 8px;
  height: 8px;
  margin-left: 7px;
  margin-right: 7px;
}

.hero01_name-txt {
  text-align: center;
  flex: 1;
  max-width: 152px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  position: relative;
}

.hero01_name-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero01_content-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 526px;
  display: flex;
}

.hero01_name-line {
  background-color: #cfcfcf;
  flex: 1;
  height: 2px;
}

.hero01_special-txt-container {
  text-align: center;
  border-bottom: 2px solid #cfcfcf;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-top: 6px;
  padding-bottom: 19px;
  display: flex;
}

.hero01_heading {
  max-width: 664px;
  color: var(--black);
  text-align: center;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
  line-height: 1;
}

.hero01_heading.txt-size-med {
  color: var(--color1);
  font-size: 2rem;
  font-weight: 400;
}

.hero01_special-txt {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: 519px;
  padding-bottom: 0;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 17px;
  line-height: 17px;
}

.background-video {
  opacity: .15;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.hero01_img {
  aspect-ratio: 1;
  border: 16px solid #fff;
  border-radius: 500px;
  width: 37vw;
  max-width: 420px;
  margin-right: 1rem;
  box-shadow: 0 2px 20px 3px #0000001a;
}

.hero01_credibility-container {
  justify-content: flex-start;
  align-items: center;
  padding-top: .75rem;
  display: flex;
}

.hero01_wrapper {
  width: 100%;
  height: auto;
  min-height: 80vh;
  padding-top: var(--menu-change-difference);
  background-color: #fff;
  background-image: linear-gradient(#ffffff4d, #ffffff4d), url('../images/soft-white-background-v2_1soft-white-background-v2.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  align-items: center;
  display: flex;
  position: relative;
}

.hero01_container {
  z-index: 6;
  justify-content: space-around;
  width: 95%;
  max-width: 1052px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  display: flex;
  position: relative;
}

.under-construction01_wrapper {
  background-color: var(--color1);
  background-image: linear-gradient(#0000003d, #0000);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 20vh;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  position: relative;
}

.hero01_credibility-img {
  width: 100%;
}

.hero01_credibility-link {
  justify-content: flex-start;
  align-items: center;
  width: 138px;
  margin-left: 8px;
  margin-right: 8px;
  display: flex;
}

.hero01_credibility-link.bbb {
  width: 100px;
}

.txt-light {
  font-weight: 300;
}

.txt-size-med {
  font-size: 2.5rem;
}

.txt-size-small {
  font-size: 1.5rem;
}

.txt-size-large {
  font-size: 3.5rem;
}

.text-block-14 {
  font-size: 2.5rem;
  font-weight: 200;
}

.bold-text {
  font-weight: 800;
}

.hide {
  display: none;
}

.nav01_wrapper_no-top {
  z-index: 10;
  background-color: #0000;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  overflow: auto;
  box-shadow: 0 0 10px 6px #0000000f;
}

.html-embed {
  width: 100%;
  height: 100%;
  padding-top: var(--menu-change-difference);
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-fill_section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.privacy_container {
  width: 100%;
  max-width: var(--page-max-width);
  margin-right: auto;
  margin-bottom: var(--main-padding);
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  padding: 1rem 2rem;
  display: flex;
}

.text-block-15 {
  font-weight: 600;
}

.txt-thick {
  font-weight: 800;
}

.section-title01 {
  background-color: var(--color1);
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-title01_heading {
  color: var(--white);
}

.featured-in01_wrapper {
  z-index: 1;
  background-color: var(--color1);
  background-image: linear-gradient(#00000054, #0000);
  padding-bottom: 60px;
  position: relative;
  box-shadow: 0 0 20px 3px #0000001c;
}

.interview-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.inverview-heading {
  color: #0f212d;
  text-align: center;
  width: 100%;
  max-width: 941px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.div-block-116 {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.image-45 {
  width: 173px;
  margin-right: -10px;
}

.watch-interview-button {
  border-top: 4px solid #2b546d;
  border-bottom: 4px solid #2b546d;
  border-right: 4px solid #2b546d;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 12px 12px 12px 16px;
  font-size: 2rem;
}

.featured-in01_heading {
  color: var(--white);
  letter-spacing: .5rem;
  text-transform: uppercase;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.25rem;
  font-weight: 300;
}

.featured-in01_title-container {
  width: 100%;
  padding-top: var(--main-padding);
  justify-content: center;
  align-items: center;
  display: flex;
}

.featured-in01_heading-line {
  background-color: var(--color2);
  flex: 1;
  height: 2px;
}

.featured-in01_logo-container {
  padding-top: var(--content-spacing);
  grid-column-gap: var(--content-spacing);
  grid-row-gap: var(--content-spacing);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
}

.featured-in01_logo {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 120px;
  padding: 1.5rem;
}

.featured-in01_button {
  margin-top: var(--content-spacing);
  margin-bottom: var(--main-padding);
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  background-color: var(--color2);
  text-align: center;
  border: 2px solid #0000;
  border-radius: 3rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .75rem 2rem;
  font-size: 1.25rem;
  transition: background-color .3s;
  display: flex;
}

.featured-in01_button.is-alternate {
  color: #000;
  background-color: #fff;
}

.featured-in01_button.is-icon {
  padding: 1rem;
}

.three-word-focus {
  justify-content: center;
  display: flex;
}

.services01_wrapper {
  background-color: var(--color1);
  position: relative;
}

.featured-v1-text {
  border-top: 1px solid var(--color4);
  color: var(--faint1);
  margin-top: 4px;
  padding-top: 6px;
  font-size: .8rem;
}

.feature-container {
  flex-direction: column;
  align-items: center;
  width: 94%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.anchor-div {
  position: absolute;
  inset: -110px auto auto 0%;
}

.feature-title {
  color: #fff;
  text-align: left;
  align-items: center;
  min-height: 54px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.2;
  display: flex;
}

.heading-48 {
  color: var(--color5);
  padding-left: 7px;
  padding-right: 7px;
  font-size: 2rem;
  font-weight: 200;
}

.heading-48.weight2 {
  font-style: italic;
  font-weight: 400;
}

.heading-48.weight3 {
  font-weight: 700;
}

.heading-50 {
  color: #0f213c;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: .9;
}

.heading-50.light {
  color: #fff;
}

.features-grid {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 38px;
}

.accumulation-image {
  object-fit: fill;
  background-color: #f0efef;
  border-radius: 2rem;
  align-self: flex-start;
  width: 75%;
  height: auto;
  margin-top: 2rem;
  margin-bottom: 47px;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.feature-card {
  color: #fff;
  cursor: default;
  background-image: linear-gradient(#0000002e, #00000021);
  border-radius: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 212px;
  padding: 24px 20px;
  text-decoration: none;
  display: flex;
}

.distribution-image {
  object-fit: fill;
  background-color: #f0efef;
  border-radius: 2rem;
  align-self: flex-end;
  width: 75%;
  height: auto;
  margin-top: -4rem;
  padding: 1rem;
  box-shadow: 0 0 20px 12px #04203114;
}

._3-step-wrapper {
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  align-items: stretch;
  padding-top: 15px;
  display: flex;
  overflow: hidden;
}

._3-step-title {
  color: #3a3a3a;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid #ececec;
  margin-top: 14px;
  margin-left: 12px;
  margin-right: 12px;
  padding-bottom: 8px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 31px;
  font-weight: 400;
}

.tab-content-main {
  text-align: justify;
  border-radius: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 98%;
  max-width: 1100px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.content01_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.content01_wrapper.color-faint1 {
  z-index: 1;
}

.heading-6 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 27px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 22px;
  padding-right: 22px;
  line-height: 50px;
}

._3-step-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.anchor-2 {
  position: absolute;
  inset: -110px auto auto 0%;
}

.circle-number {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #c8850a;
  background-image: linear-gradient(135deg, #5c882e, #75aa3d);
  border-radius: 50px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

.main-cta-button {
  color: #fff;
  text-align: center;
  background-color: #333;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
  padding: 20px 32px;
  text-decoration: none;
  transition: letter-spacing .2s, color .2s, background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-cta-button:hover {
  color: #fff;
  letter-spacing: 1.1px;
  background-color: #436e15;
}

.walsh-label-button {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

._3-step-pragraph {
  color: #5f5f5f;
  text-align: center;
  flex: 1;
  align-items: center;
  margin-bottom: 25px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  line-height: 24px;
  display: flex;
}

.paragraph-19 {
  color: var(--color2);
  text-align: center;
  align-self: center;
  font-size: 17px;
  line-height: 24px;
}

.div-block-58 {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.section_heading {
  padding-top: var(--main-padding);
  font-weight: 700;
}

.section_heading.txt-color-1.special {
  padding-top: 1.5rem;
}

.bold-text-2 {
  color: var(--color1);
  font-style: italic;
}

.content01_content-wrapper {
  width: 100%;
  margin-top: var(--content-spacing);
  margin-bottom: var(--main-padding);
  padding-top: var(--content-spacing);
  padding-right: var(--content-spacing);
  padding-left: var(--content-spacing);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: var(--rounded-corners-med);
  background-color: var(--white);
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
  box-shadow: 0 0 20px -8px #0003;
}

.div-block-118 {
  width: 100%;
  padding: var(--content-spacing);
  border-radius: var(--rounded-corners-med);
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 0 20px -6px #00000017;
}

.content01_heading3 {
  width: 100%;
  color: var(--white);
  text-align: center;
  text-shadow: 0 0 14px #0003;
  background-image: linear-gradient(#0d364eb3, #12334b99), url('../images/businesswoman-get-stressed-while-having-a-problem-2023-11-27-05-00-34-utc.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 1rem;
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading-58 {
  font-size: 2.25rem;
}

.main-list {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.main-list-item {
  padding-top: 1rem;
}

.content01_sub-paragraph {
  padding-top: var(--content-spacing);
  color: var(--color4);
  text-align: center;
}

.content01_list-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cta-button01 {
  margin-top: var(--content-spacing);
  margin-bottom: var(--main-padding);
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  text-align: center;
  border: 2px solid #0000;
  border-radius: 3rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .75rem 2rem;
  font-size: 1.25rem;
  line-height: 1.2;
  transition: background-color .3s;
  display: flex;
}

.cta-button01.is-alternate {
  color: #000;
  background-color: #fff;
}

.cta-button01.is-icon {
  padding: 1rem;
}

.vertical-margin1 {
  margin-top: var(--content-spacing);
  margin-bottom: var(--main-padding);
}

.team01_special-content {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  width: 70%;
  padding-left: 1rem;
  display: flex;
  position: relative;
}

.team01_special-logo {
  opacity: 1;
  width: 75%;
  height: auto;
  display: block;
}

.team01_light-box-button2 {
  background-color: var(--color2);
  color: var(--white);
  text-align: center;
  border: 2px solid #0000;
  border-radius: 16px;
  padding: .75rem 1.5rem;
  transition: background-color .3s;
}

.team-lb_bio-quote {
  color: #4a73ad;
  border-left-width: 2px;
  border-left-color: #ccc;
  margin-top: 1rem;
  font-size: .9rem;
  font-style: italic;
}

.team01_light-box-title {
  color: var(--color4);
  text-align: left;
  padding-top: .5rem;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1;
}

.team01_light-box-button-container {
  padding-top: 1rem;
  display: flex;
}

.team01_special-logo-container {
  justify-content: center;
  width: 100%;
  display: flex;
}

.lightbox_close-icon-2 {
  z-index: 2;
  color: #fff;
  cursor: pointer;
  background-color: #101b2a;
  border: 5px solid #fff;
  border-radius: 80px;
  width: 75px;
  height: 75px;
  margin-left: -96px;
  padding: 20px;
  transition: transform .3s;
  position: fixed;
  inset: .75rem .75rem auto auto;
  box-shadow: 0 0 20px 9px #0000002e;
}

.lightbox_close-icon-2:hover {
  transform: translate(-12px, 12px)scale(1.2);
}

.lightbox_close-icon-2.start-scroll {
  cursor: pointer;
}

.team01_title {
  color: var(--color1);
  text-align: center;
  line-height: 1;
}

.team01_title.special {
  text-align: left;
  font-weight: 700;
}

.team01_special-container {
  position: relative;
}

.team01_img-container {
  border-radius: 100px;
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.team01_img-container.special {
  z-index: 2;
  border-radius: 450px;
  justify-content: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: relative;
}

.close-lightbox-background {
  z-index: 0;
  cursor: pointer;
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0%;
}

.team01_special-wrapper {
  padding-top: var(--content-spacing);
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team01_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.light-box_wrapper {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  position: relative;
}

.team01_individual-card {
  z-index: 1;
  border-radius: var(--rounded-corners-med);
  cursor: pointer;
  background-color: #fff;
  border-top: 6px solid #fff;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 2rem 25px;
  transition: all .35s ease-out;
  display: flex;
  position: relative;
  box-shadow: 0 0 72px 2px #00000014;
}

.team01_individual-card:hover {
  border-top-color: #f8f8f8;
  transform: scale(1.02);
  box-shadow: 11px 11px 55px #373b4747;
}

.team01_individual-card.special {
  flex-direction: row;
  justify-content: center;
  display: flex;
}

.team01_name {
  color: var(--color2);
  letter-spacing: -.03em;
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.team01_name.special {
  margin-top: 0;
}

.team01_light-box-img {
  border-radius: 400px;
  width: 280px;
  height: 280px;
  margin-right: 2rem;
  overflow: hidden;
  box-shadow: 0 0 20px 4px #0000002e;
}

.paragraph-2 {
  color: #417496;
  text-align: center;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
}

.light-box {
  z-index: 15;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: #dfdfdf8f;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.light-box.show {
  display: flex;
}

.team01_light-box-bio-button {
  z-index: 2;
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: relative;
}

.team01_wrapper {
  background-color: var(--white);
  position: relative;
}

.heading-19 {
  color: #273850;
  text-align: center;
  text-transform: uppercase;
  margin-top: .5rem;
  font-size: 1.5rem;
  line-height: 1;
}

.team01_light-box-button {
  border: 2px solid var(--color4);
  color: var(--color2);
  text-align: center;
  cursor: pointer;
  background-color: #16345000;
  border-radius: 16px;
  margin-right: .75rem;
  padding: .75rem 1.5rem;
  font-weight: 500;
  transition: background-color .3s;
}

.team01_light-box-container {
  z-index: 1;
  background-color: #fff;
  border-radius: 2rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 94%;
  max-width: 900px;
  padding-bottom: 4rem;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  position: relative;
  box-shadow: 0 12px 20px 8px #00000014;
}

.team01-light-box-name {
  color: var(--color2);
  font-size: 2.5rem;
  line-height: 1;
}

.heading-59 {
  color: #0f213c;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: .9;
}

.m-container-large {
  width: 94%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.team01_special-paragraph {
  color: var(--color2);
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.verse-container-nm {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  width: 95%;
  max-width: 500px;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.team-lb_bio-header {
  color: #263f63;
  border-bottom: 1px solid #ececec;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 200;
}

.team01_light-box-info-container {
  flex-direction: row;
  align-items: center;
  margin-top: -2rem;
  display: flex;
}

.team-lb_bio-paragraph {
  color: #384658;
  padding-top: 1rem;
}

.team-lb_bio-paragraph.disclaimer {
  border-top: 1px solid #e6e6e6;
  margin-top: .5rem;
  font-size: .75rem;
}

.html-embed-3 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.team01_container {
  position: relative;
}

.video-container-2 {
  width: 100%;
  min-height: 40px;
  padding-top: 56.1702%;
  transition: opacity .3s;
  position: relative;
  overflow: hidden;
}

.video-container-2:hover {
  opacity: .9;
}

.video-block {
  z-index: 3;
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
  transition: box-shadow .3s, background-color .3s;
  position: relative;
  box-shadow: 0 0 20px #0000001c;
}

.video-block:hover {
  background-color: #fffffff0;
  box-shadow: 0 0 14px 2px #00000012;
}

.collection-temp-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 2rem;
  display: grid;
}

.team01_button {
  width: 100%;
  max-width: 220px;
  color: var(--color3);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #f7f6f6;
  border-radius: 40px;
  margin-top: 1rem;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
}

.team01_col-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team01_col-wrapper {
  width: 100%;
  padding-top: var(--content-spacing);
  padding-bottom: var(--main-padding);
}

.vertical-margin2 {
  margin-top: var(--content-spacing);
  margin-bottom: var(--content-spacing);
}

.text-span-31 {
  font-weight: 200;
}

.shadow-lg {
  box-shadow: 0 0 20px 6px #00000014;
}

.footer01_legal-wrapper {
  width: 100%;
  padding-top: var(--main-padding);
  padding-bottom: var(--main-padding);
  text-align: center;
  background-color: #fff;
  display: block;
}

.footer01_contact-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: -3rem;
}

.footer01_contact-container {
  margin-bottom: 24px;
}

.form-button {
  background-color: #417496;
  border-radius: 10px;
  margin-bottom: 8px;
  margin-right: 13px;
  padding: .75rem 2rem;
  font-size: 16px;
  font-weight: 500;
}

.footer01_contact-title {
  margin-top: var(--content-spacing);
  color: var(--color2);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-text-link {
  color: #697585;
  letter-spacing: -.01em;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 32px;
  text-decoration: none;
  transition: color .3s;
}

.footer-text-link:hover {
  color: #2f73a0;
}

.div-block-114 {
  flex-direction: row;
  align-items: stretch;
  display: flex;
}

.text-field {
  color: #061237;
  border: 1px #000;
  border-radius: 10px;
  height: 100%;
  margin-right: .5rem;
  padding: 1rem .75rem;
  box-shadow: 0 6px 50px -7px #00000024;
}

.text-field::placeholder {
  color: #67718e;
}

.container-2 {
  z-index: 5;
  width: 92%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  position: relative;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.h5-heading {
  color: #1f354c;
  letter-spacing: -.04em;
  margin-top: 0;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 40px;
}

.error-message {
  color: #fff;
  background-color: #a04d4d;
  border-radius: 10px;
}

.link-3 {
  color: var(--color6);
  text-decoration: none;
}

.footer01_contact-icon {
  width: 32px;
  height: 32px;
  color: var(--color4);
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-top-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.button-secondary {
  color: #fff;
  text-transform: uppercase;
  background-color: #1c2c42;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  display: flex;
}

.footer01_contact-info {
  color: var(--color3);
  font-weight: 500;
  line-height: 1.3;
}

.footer-title {
  color: #061237;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.contact-wrapper {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.footer01_legal-txt {
  width: 80%;
  max-width: 1000px;
  color: var(--color2);
  text-align: center;
  white-space: break-spaces;
  margin-left: auto;
  margin-right: auto;
  font-size: .9rem;
  font-weight: 700;
}

.footer01_contact-card {
  background-color: var(--white);
  color: #304664;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 6px 20px -8px #0003;
}

.footer01_contact-card:hover {
  background-color: #f8f8f8;
  box-shadow: 0 20px 20px -8px #0003;
}

.text-weight-semibold-2 {
  font-weight: 600;
}

.newsletter-block {
  width: 100%;
  max-width: 460px;
  margin-bottom: 0;
}

.success-message-large {
  color: #fff;
  background-color: #123952;
  border-radius: 20px;
}

.footer01_wrapper {
  position: relative;
}

.footer-large-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  max-width: 75rem;
  padding-bottom: 2rem;
}

.footer01_contact-icon-container {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.copyright-year-2 {
  padding-right: 4px;
  font-weight: 700;
}

.text-span {
  font-size: .8rem;
}

.newsletter-form {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: 9px;
  padding-right: 0;
  display: flex;
}

.span-blue {
  color: #417496;
}

.footer01_cta-wrapper {
  z-index: 1;
  padding-top: var(--main-padding);
  background-image: linear-gradient(#24242485, #11111173), url('../images/oregon-coast-2023-11-27-05-26-56-utc_1oregon-coast-2023-11-27-05-26-56-utc.webp');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  align-items: center;
  padding-bottom: 6rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.background-video-2 {
  position: absolute;
  inset: 0%;
}

.footer01_cta-heading {
  max-width: 700px;
  margin-top: var(--main-padding);
  color: var(--white);
  text-align: center;
  text-shadow: 0 0 9px #2525258a;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.txt-size-tiny {
  font-size: .85rem;
  line-height: 1;
}

.empty-state-2 {
  display: none;
}

.z-index-8 {
  z-index: 8;
  position: relative;
}

.podcast01_quote {
  color: #fff;
  text-align: center;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  margin-bottom: 0;
  padding: 10px 1rem;
}

.section_heading-2 {
  font-weight: 700;
}

.podcasts01_platforms-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 660px;
  display: flex;
}

.section01_wrapper {
  background-color: #1e2726;
  position: relative;
}

.container-3 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 2rem;
  display: flex;
}

.anchor-3 {
  margin-top: -100px;
  position: absolute;
  inset: 0% 0% auto;
}

.image-46 {
  background-color: #fff;
  border-radius: 20px;
  padding: 16px;
}

.text-block-16 {
  color: var(--white);
  padding-bottom: 12px;
}

.footer01_contact-card-2 {
  color: #304664;
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 6px 20px -8px #0003;
}

.footer01_contact-card-2:hover {
  background-color: #f8f8f8;
  box-shadow: 0 20px 20px -8px #0003;
}

.footer01_contact-card-3 {
  color: #304664;
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 6px 20px -8px #0003;
}

.footer01_contact-card-3:hover {
  background-color: #f8f8f8;
  box-shadow: 0 20px 20px -8px #0003;
}

.hero01_special-txt-container2 {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-top: 6px;
  display: flex;
}

.hero01_special-txt2 {
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 519px;
  padding-bottom: 0;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
}

.image-47 {
  background-color: #fff;
  border-radius: 300px;
  width: 248px;
  margin-top: -63px;
  padding: 28px 31px 28px 28px;
  box-shadow: 0 0 20px 9px #00000012;
}

.hero01_credibility-img2 {
  width: 100%;
}

.paragraph-28 {
  color: var(--white);
  text-align: center;
  padding-top: 24px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.footer01_contact-icon-2 {
  width: 32px;
  height: 32px;
  color: var(--color2);
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-5 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  text-align: center;
  background-color: #fff0;
  border: 2px solid #0000;
  border-radius: 3rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .75rem 2rem;
  font-size: 1.25rem;
  line-height: 1.1;
  transition: background-color .3s;
  display: flex;
}

.button-5.border-color-white.txt-color-white.vertical-margin1.footer01_cta-button {
  background-color: var(--color2);
}

.button-5.txt-size-tiny.color-2.txt-color-white {
  text-transform: uppercase;
  font-weight: 600;
}

.footer01_cta-wrapper-2 {
  z-index: 1;
  background-image: linear-gradient(#24242485, #11111173), url('../images/mountains-annapurna-range-2023-11-27-05-17-38-utc_1mountains-annapurna-range-2023-11-27-05-17-38-utc.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 6rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.anchor-4 {
  margin-top: -92px;
  position: absolute;
  inset: 0% 0% auto;
}

.footer01_legal-txt-2 {
  text-align: center;
  width: 80%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-size: .9rem;
}

.footer01_legal-txt-2.txt-thick.txt-color-2 {
  color: var(--black);
  font-weight: 700;
}

.footer01_legal-txt-2.txt-size-tiny.txt-color-4 {
  font-size: .8rem;
}

.footer01_cta-heading-2 {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 9px #2525258a;
  max-width: 700px;
  margin-top: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
}

.footer01_contact-card-4 {
  color: #304664;
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 6px 20px -8px #0003;
}

.footer01_contact-card-4:hover {
  background-color: #f8f8f8;
  box-shadow: 0 20px 20px -8px #0003;
}

.footer01_contact-card-4.special {
  flex-direction: row;
}

.footer01_legal-wrapper-2 {
  text-align: center;
  background-color: #fff;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 92px;
  display: block;
}

.footer01_contact-title-2 {
  color: #1c3348;
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav01_drop-down-link-container-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.footer01_contact-info-2 {
  color: var(--color2);
  font-weight: 500;
  line-height: 1.3;
}

.nav01_drop-down-link-2 {
  color: #244661;
  text-align: center;
  letter-spacing: -.01em;
  margin-top: 2px;
  margin-bottom: 2px;
  padding: 6px;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  transition: color .3s;
}

.nav01_drop-down-link-2:hover {
  color: #4f87b9;
}

.nav01_drop-down-link-2.start-scroll {
  color: var(--color2);
}

.container-4 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 2rem;
  display: flex;
}

.footer01_contact-wrapper-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: -6rem;
}

.footer01_contact-container-2 {
  margin-bottom: 24px;
}

.three-block-cd1_component {
  background-color: #0d0d44;
  background-image: linear-gradient(#0b0b36, #1e1f6b 89%);
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 140px;
  position: relative;
}

.container-large {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading-47 {
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 941px;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}

.div-block-9 {
  background-color: #2f2f77;
  width: 100%;
  height: 40px;
  position: absolute;
  inset: auto 0% 0%;
}

.section-3 {
  background-color: #fff;
  background-image: linear-gradient(#fff, #ececec 85%);
  width: 100%;
  position: relative;
}

.container-5 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 94%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 2rem;
  display: flex;
}

.div-block-6 {
  flex-direction: row;
  margin-top: -160px;
  margin-bottom: 30px;
  display: flex;
}

.div-block-7 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-62 {
  color: #10103d;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: .9;
}

.html-embed-4 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.text-span-32 {
  color: #009e95;
  font-size: 2.7rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .container {
    max-width: 768px;
  }

  ._404-container {
    min-height: 30rem;
    padding-left: 32px;
    padding-right: 32px;
  }

  .normal-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .paragraph-11 {
    align-items: flex-start;
  }

  .nav01_menu-open-state.stop-scroll {
    display: flex;
  }

  .hero-container-cs {
    width: 80%;
    max-width: 615px;
  }

  .nav-logo {
    width: 250px;
  }

  .hero-image-cs {
    max-width: 300px;
  }

  .aa-full-nav-link-wrapper {
    grid-template-columns: 1fr 3fr;
  }

  .hero-heading-as {
    font-size: 46px;
    line-height: 46px;
  }

  .load-header {
    font-size: 30px;
    line-height: 34px;
  }

  .main-hero-text-block-as {
    margin-right: 14px;
  }

  .image-29 {
    max-width: 225px;
  }

  .div-block-39 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .aa-nav-main-button {
    display: none;
  }

  .test-text-container-nm {
    width: 50%;
  }

  .image-44 {
    width: 100px;
    height: 100px;
  }

  .light-box_close-icon {
    color: #fff;
    top: 8%;
    right: 8%;
  }

  .light-box_close-icon.start-scroll {
    z-index: 3;
    background-color: #19285a;
    border-radius: 56px;
    justify-content: center;
    align-items: center;
    margin-top: -34px;
    margin-right: -7px;
    padding: 20px 0;
    display: flex;
    inset: 5% 0% auto auto;
  }

  .nav-cd9_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .nav-cd9_link.start-scroll.show-on-hamburger-menu {
    display: flex;
  }

  .button-4.is-small {
    align-self: center;
  }

  .dropdown-icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .menu-icon_line-bottom {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-cd9_bottom-bar {
    display: none;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
    position: relative;
  }

  .nav01_logo-link {
    z-index: 2;
  }

  .nav-cd9_menu-dropdown {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .nav-cd9_menu-button {
    z-index: 4;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .nav-cd9_menu-button.w--open {
    background-color: #0000;
  }

  .nav-cd9_bottom-bar-background-layer {
    height: auto;
  }

  .nav01_category-title {
    margin-bottom: 0;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-cd9_dropdown-list {
    position: relative;
    overflow: hidden;
  }

  .nav-cd9_dropdown-list.w--open {
    border-style: none;
    align-items: flex-start;
    padding: 0 0 0;
    position: relative;
    top: 0;
  }

  .nav-cd9_dropdown-toggle {
    align-items: center;
    padding: .75rem 22px .75rem 0;
    font-size: 1.125rem;
    display: flex;
  }

  .menu-icon_line-top {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav01_drop-down-link-container {
    grid-column-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .menu-icon_line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .nav01_content-wrapper {
    z-index: 2;
  }

  .nav-cd9_menu {
    z-index: 1;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-color: #ecececfa;
    border-bottom: 1px solid #000;
    min-height: 100vh;
    padding-top: 107px;
    padding-bottom: 70px;
    transition: height .5s;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .nav-cd9_menu-left {
    flex-direction: column;
  }

  .nav-cd9_menu-right {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 0;
    padding-top: .5rem;
  }

  .nav01_link {
    display: none;
  }

  .nav01_menu-close-state.stop-scroll {
    display: flex;
  }

  .hero01_content-container {
    max-width: 508px;
  }

  .hero01_heading {
    font-size: 2.4rem;
  }

  .hero01_special-txt {
    font-size: 15px;
  }

  .privacy_container {
    max-width: 768px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 818px;
  }

  .accumulation-image {
    align-self: center;
    padding-bottom: 1rem;
  }

  .feature-card {
    min-height: 175px;
  }

  .distribution-image {
    align-self: center;
    margin-top: 1rem;
  }

  ._3-step-title {
    font-size: 26px;
  }

  .tab-content-main {
    width: 100%;
    padding-bottom: 33px;
    padding-left: 20px;
    padding-right: 20px;
  }

  ._3-step-grid {
    margin-bottom: 20px;
  }

  .paragraph-19 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .team01_special-logo.aspect-ratio-square, .team01_special-logo-container {
    display: none;
  }

  .lightbox_close-icon-2 {
    color: #fff;
  }

  .lightbox_close-icon-2.start-scroll {
    border-radius: 56px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .team01_special-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .team01_light-box-img {
    width: 200px;
    height: 200px;
  }

  .team01_col-list {
    grid-template-columns: 1fr 1fr;
  }

  .footer01_contact-wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .footer-column {
    align-items: center;
  }

  .h5-heading {
    text-align: center;
  }

  .footer-top-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-title {
    margin-bottom: 0;
  }

  .newsletter-block {
    padding-top: 1rem;
  }

  .footer-large-grid {
    grid-column-gap: 26px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .container-3 {
    max-width: 768px;
  }

  .hero01_special-txt2 {
    font-size: 15px;
  }

  .nav01_drop-down-link-container-2 {
    grid-column-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .container-4 {
    max-width: 768px;
  }

  .footer01_contact-wrapper-2 {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    grid-template-columns: 1fr 1fr;
  }

  .three-block-cd1_component {
    padding-bottom: 100px;
  }

  .heading-47 {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 2.3rem;
  }

  .div-block-6 {
    margin-top: -108px;
  }

  .heading-62 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    text-align: center;
    line-height: 1;
  }

  h3 {
    font-size: 2rem;
  }

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

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .container {
    max-width: 480px;
  }

  .txt-align-center.txt-white {
    font-size: 2.5rem;
  }

  ._404-heading {
    font-size: 3rem;
  }

  .normal-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-container-cs {
    border-radius: 60px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 90px;
    margin-bottom: 41px;
    padding-top: 30px;
    padding-bottom: 30px;
    top: auto;
    left: auto;
  }

  .nav-logo {
    width: 228px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .aa-full-nav-left-wrapper {
    position: absolute;
    inset: 0% auto auto 0%;
  }

  .heading-30 {
    text-align: center;
    align-self: auto;
    margin-top: 12px;
  }

  .hero-image-cs {
    margin-top: -95px;
    margin-left: 0;
  }

  .tab-content-3 {
    align-items: center;
    display: flex;
  }

  .aa-nav-cta-button.hide-on-mobile {
    display: none;
  }

  .aa-full-nav-link-wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .link-12 {
    text-align: center;
    border-right-style: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hero-paragraph-as {
    text-align: center;
  }

  .div-block-62 {
    text-align: center;
    border-left-style: none;
    align-self: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 31px;
    padding-left: 0;
  }

  .tab-content-nm-3 {
    padding: 30px 34px;
  }

  .hero-heading-as, .load-header {
    text-align: center;
    margin-top: 19px;
  }

  .main-hero-text-block-as {
    align-items: center;
    margin-bottom: 20px;
    margin-left: 14px;
  }

  .aa-menu-text {
    margin-top: 0;
    padding-left: 5px;
    line-height: 1;
  }

  .aa-top-bar-nav {
    position: relative;
  }

  .link-11 {
    align-self: center;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
  }

  .aa-full-nav-link {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .hero-section {
    height: auto;
    min-height: auto;
    padding-top: 0;
  }

  .tab-text-nm {
    font-size: 16px;
  }

  .test-container-nm {
    flex-direction: column;
  }

  .aa-cta-and-social-wrapper {
    margin-top: 10px;
  }

  .button-3 {
    letter-spacing: normal;
    margin-left: 3px;
    font-size: 12px;
  }

  .button-3.w--current {
    font-size: 13px;
  }

  .indv-test-heading-nm {
    text-align: center;
    padding-left: 0;
  }

  .tab-link-nm.w--current {
    padding-top: 23px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav01_right-side-wrapper {
    z-index: 20;
  }

  .footer-container {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 29px;
  }

  .text-block-7 {
    margin-top: 0;
  }

  .tabs-menu-nm {
    padding-left: 22px;
    padding-right: 22px;
  }

  .div-block-39 {
    width: 100%;
  }

  .div-block-39:hover {
    transform: scale(1);
  }

  .aa-full-slide-in-nav {
    padding-top: 12px;
  }

  .div-block-29 {
    align-self: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }

  .aa-nav-main-button {
    display: none;
  }

  .test-text-container-nm {
    align-items: center;
    width: 100%;
    padding-bottom: 23px;
    padding-right: 0;
  }

  .aa-full-nav-wrapper {
    grid-row-gap: 60px;
    flex-direction: column;
    grid-template-rows: min-content minmax(auto, 1fr) auto;
    grid-template-columns: 1.5fr;
    padding-top: 170px;
  }

  .test-paragraph-nm {
    text-align: center;
  }

  .collection-list-5 {
    grid-template-columns: 1fr;
  }

  .collection-list-wrapper-3 {
    width: 100%;
    max-width: 495px;
  }

  .image-44 {
    align-self: center;
  }

  .div-block-66 {
    flex-direction: column;
  }

  .div-block-67 {
    grid-template-columns: 1fr 1fr;
  }

  .close-div {
    display: none;
  }

  .show-bio-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .light-box_close-icon.start-scroll {
    margin-top: 16px;
    margin-right: 7px;
    top: 12px;
    right: 12px;
  }

  .div-block-46 {
    border-radius: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
  }

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

  .image-25 {
    width: 200px;
    height: 200px;
    margin-top: 0;
  }

  .div-block-47 {
    border-left-style: none;
    align-items: center;
    margin-top: 18px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .individual-ps-link-nm {
    border-bottom-style: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .individual-ps-company-nm {
    flex-direction: column;
  }

  .ps-grid-container-nm-2 {
    grid-row-gap: 41px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-top: 22px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .ps-image-nm {
    margin-right: 0;
  }

  .individual-ps-title-nm-2 {
    margin-top: 11px;
  }

  .nav01_drop-down-link {
    line-height: 20px;
  }

  .nav01_drop-down-link.start-scroll {
    margin-top: 0;
    margin-bottom: 0;
  }

  .nav01_link-category {
    align-items: flex-start;
  }

  .nav01_logo-link {
    width: 180px;
  }

  .nav01_logo-link.w--current {
    width: 190px;
  }

  .nav01_drop-down-link-container {
    grid-row-gap: 13px;
    grid-template-columns: 1fr;
  }

  .nav01_content-wrapper {
    min-height: 110px;
  }

  .nav-cd9_menu {
    padding-top: 95px;
    padding-bottom: 70px;
  }

  .nav01_link {
    display: none;
  }

  .nav01_dropdown-container {
    padding-bottom: 100px;
  }

  .hero01_special-txt {
    letter-spacing: 1px;
    padding-bottom: 0;
    font-size: 16px;
  }

  .hero01_img {
    width: 60vw;
    max-width: 270px;
    margin-bottom: 23px;
    margin-right: 0;
  }

  .hero01_container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    top: auto;
  }

  .page-fill_section {
    height: 85vh;
    min-height: 500px;
  }

  .privacy_container {
    max-width: 480px;
  }

  .inverview-heading {
    padding-left: 20px;
    padding-right: 20px;
  }

  .featured-in01_logo {
    padding: 1rem;
  }

  .heading-48 {
    font-size: 1.5rem;
  }

  .heading-50 {
    font-size: 52px;
    line-height: 50px;
  }

  .features-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .accumulation-image {
    width: 100%;
  }

  .feature-card {
    padding: 32px;
  }

  .distribution-image {
    width: 100%;
  }

  ._3-step-wrapper {
    flex-direction: row;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  ._3-step-title {
    text-align: left;
    margin-top: 0;
  }

  .tab-content-main {
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .heading-6 {
    padding-bottom: 18px;
    font-size: 34px;
    line-height: 40px;
  }

  ._3-step-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .anchor-2 {
    top: 0;
  }

  .main-cta-button {
    align-self: center;
  }

  ._3-step-pragraph {
    text-align: left;
    margin-bottom: 0;
  }

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

  .div-block-58 {
    flex: 0 auto;
    width: 70%;
  }

  .content01_list-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .collection-item-6 {
    justify-content: center;
    display: flex;
  }

  .team01_special-content {
    align-items: center;
    padding-left: 0;
  }

  .team01_light-box-title {
    text-align: center;
  }

  .team01_special-container {
    flex: 1;
  }

  .team01_img-container.special {
    width: 165px;
    height: 160px;
  }

  .team01_special-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 15px;
    padding-bottom: .5rem;
  }

  .team01_individual-card.special.stop-scroll {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .team01_name {
    font-size: 1.2rem;
  }

  .team01_light-box-img {
    margin-right: 0;
  }

  .team01_light-box-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .team01-light-box-name {
    text-align: center;
  }

  .heading-59 {
    font-size: 52px;
    line-height: 50px;
  }

  .team01_special-paragraph {
    text-align: center;
  }

  .verse-container-nm {
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 23px;
  }

  .team01_light-box-info-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: -1rem;
  }

  .team01_container {
    flex: 1;
  }

  .video-block {
    padding: 20px;
    top: 20px;
  }

  .team01_col-list, .footer01_contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-text-link {
    line-height: 20px;
  }

  .footer-text-link.start-scroll {
    margin-top: 0;
    margin-bottom: 0;
  }

  .footer-column {
    align-items: flex-start;
  }

  .footer01_legal-txt {
    margin-top: 0;
  }

  .footer-large-grid {
    grid-row-gap: 13px;
    grid-template-columns: 1fr;
  }

  .container-3 {
    max-width: 480px;
  }

  .hero01_special-txt2 {
    letter-spacing: 1px;
    padding-bottom: 0;
    font-size: 16px;
  }

  .footer01_legal-txt-2 {
    margin-top: 0;
  }

  .footer01_cta-heading-2 {
    font-size: 1.75rem;
  }

  .footer01_contact-card-4.special {
    flex-direction: column;
    align-items: center;
  }

  .footer01_contact-title-2.txt-align-right.special {
    text-align: center;
  }

  .nav01_drop-down-link-container-2 {
    grid-row-gap: 13px;
    grid-template-columns: 1fr;
  }

  .footer01_contact-info-2.txt-align-right.special {
    text-align: center;
  }

  .nav01_drop-down-link-2 {
    line-height: 20px;
  }

  .nav01_drop-down-link-2.start-scroll {
    margin-top: 0;
    margin-bottom: 0;
  }

  .container-4 {
    max-width: 480px;
  }

  .footer01_contact-wrapper-2 {
    grid-template-columns: 1fr;
  }

  .footer01_contact-container-2 {
    margin-bottom: 0;
  }

  .heading-47 {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-6 {
    flex-direction: column;
    margin-top: -40px;
  }

  .heading-62 {
    font-size: 52px;
    line-height: 50px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .txt-align-center.txt-white {
    font-size: 2rem;
  }

  .txt-align-center.txt-white.txt-light {
    font-size: 1rem;
  }

  ._404-container {
    min-height: 24rem;
  }

  ._404-heading {
    font-size: 2rem;
  }

  ._404-heading2 {
    font-size: 1rem;
  }

  .hero-container-cs {
    width: 95%;
    padding: 0 8px;
  }

  .nav-logo {
    width: 90%;
  }

  .hero-image-cs {
    width: 80%;
    max-width: 90%;
    margin-top: -61px;
  }

  .aa-full-nav-link-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 6fr;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
    position: relative;
  }

  .nav01_link-container {
    display: none;
  }

  .tab-content-nm-3 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-heading-as, .load-header {
    padding-left: 0;
    padding-right: 0;
    font-size: 25px;
    line-height: 30px;
  }

  .main-hero-text-block-as {
    margin-left: 0;
    margin-right: 0;
  }

  .aa-menu-text {
    padding-bottom: 4px;
    padding-left: 8px;
    font-size: 60px;
  }

  .aa-full-nav-link {
    margin-top: 0;
    margin-bottom: 0;
  }

  .tab-text-nm {
    letter-spacing: normal;
    font-size: 14px;
  }

  .about-adviser-paragraph-nm {
    text-align: center;
  }

  .aa-nav-container {
    justify-content: space-between;
  }

  .test-container-nm {
    padding-top: 24px;
  }

  .indv-test-heading-nm {
    font-size: 26px;
    line-height: 26px;
  }

  .tab-link-nm, .tab-link-nm.w--current {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-container {
    min-height: 170px;
    padding-bottom: 16px;
  }

  .tabs-menu-nm {
    padding-left: 13px;
    padding-right: 13px;
  }

  .aa-full-nav-wrapper {
    grid-row-gap: 20px;
  }

  .collection-item-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-44 {
    width: 100px;
    margin-left: 8px;
  }

  .div-block-115 {
    text-align: center;
    border-left-style: none;
    align-items: center;
    margin-left: 0;
    padding-top: 9px;
    padding-left: 0;
  }

  .light-box_close-icon.start-scroll {
    margin-top: 9px;
    margin-right: 0;
  }

  .text-block-13 {
    text-align: center;
  }

  .link-14 {
    display: none;
  }

  .about-ps-text-nm {
    line-height: 1.2;
  }

  .ps-grid-container-nm-2 {
    grid-row-gap: 16px;
  }

  .nav01_logo-link {
    width: 200px;
    padding-left: 0;
  }

  .nav01_logo-link.w--current {
    width: 200px;
  }

  .nav01_drop-down-link-container {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .nav-cd9_bottom-bar-content {
    flex-direction: column;
    margin-left: 0;
    display: flex;
  }

  .hero01_name-txt {
    flex: 0 auto;
    width: 135px;
  }

  .hero01_content-container {
    margin-right: 0;
  }

  .hero01_heading {
    padding-left: 0;
    padding-right: 0;
  }

  .hero01_heading.txt-size-med {
    font-size: 1.5rem;
  }

  .hero01_special-txt {
    text-transform: none;
  }

  .hero01_img {
    border-width: 10px;
    margin-bottom: 14px;
    padding-top: 0;
  }

  .hero01_credibility-container {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
    flex-flow: column;
  }

  .under-construction01_wrapper {
    z-index: 1;
    height: auto;
    padding: 22px 5px;
  }

  .privacy_container {
    max-width: 360px;
  }

  .featured-in01_logo-container {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
  }

  .featured-in01_logo {
    padding: .5rem;
  }

  .three-word-focus {
    flex-direction: column;
  }

  .heading-50 {
    font-size: 41px;
    line-height: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .accumulation-image {
    margin-top: 1rem;
  }

  ._3-step-wrapper {
    flex-direction: column;
    align-items: center;
    overflow: visible;
  }

  ._3-step-title {
    margin-bottom: 4px;
    padding-bottom: 2px;
    font-size: 22px;
    line-height: 24px;
  }

  .tab-content-main {
    padding-left: 6px;
    padding-right: 6px;
  }

  .heading-6 {
    letter-spacing: 4px;
    padding-bottom: 13px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 26px;
    line-height: 26px;
  }

  ._3-step-grid {
    padding-left: 9px;
    padding-right: 9px;
  }

  .circle-number {
    width: 80px;
    height: 80px;
    margin-top: -28px;
    margin-bottom: 12px;
  }

  .main-cta-button {
    padding-left: 30px;
    padding-right: 25px;
  }

  .walsh-label-button {
    font-size: 16px;
  }

  ._3-step-pragraph {
    text-align: center;
    font-size: 14px;
  }

  .paragraph-19 {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    line-height: 22px;
  }

  .div-block-58 {
    text-align: center;
    align-items: center;
    width: 90%;
  }

  .section_heading.txt-color-1.special {
    font-size: 1.75rem;
  }

  .content01_heading3 {
    padding: 12px;
    font-size: 1.25rem;
  }

  .team01_special-content {
    text-align: center;
    align-items: center;
    width: 90%;
    padding-left: 0;
  }

  .lightbox_close-icon-2.start-scroll {
    margin-top: 9px;
    margin-right: 0;
  }

  .team01_special-wrapper {
    grid-template-columns: 1fr;
  }

  .light-box_wrapper {
    width: 100%;
  }

  .team01_individual-card.special.stop-scroll {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-2 {
    margin-bottom: 0;
    font-size: 22px;
  }

  .heading-19 {
    margin-top: 0;
  }

  .team01_light-box-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-59 {
    font-size: 41px;
    line-height: 40px;
  }

  .video-block {
    padding: 0;
  }

  .footer-large-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .hero01_special-txt2 {
    text-transform: none;
  }

  .image-47 {
    width: 203px;
    padding-bottom: 30px;
  }

  .footer01_cta-wrapper-2 {
    padding-bottom: 3rem;
  }

  .footer01_contact-card-4 {
    width: 100%;
    padding: 1rem;
  }

  .footer01_contact-title-2.special {
    text-align: center;
    line-height: 1.2;
  }

  .nav01_drop-down-link-container-2 {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .container-4.z-index-8 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-62 {
    font-size: 41px;
    line-height: 40px;
  }

  .text-span-32 {
    font-size: 1.9rem;
  }
}

#w-node-_1804456f-b928-0a3c-912c-ed81416379f9-3c18ca29, #w-node-_1de08bfd-6de6-9568-12b3-93e7c7381a67-3c18ca29, #w-node-_7042b117-cf97-47c6-c5d4-582a41abb8ba-3c18ca29, #w-node-_234fa6a3-769d-ab75-b469-e34f02da2e58-3c18ca29 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ffae9ae1-3333-8972-312f-e73b1a9a34bb-3c18ca29, #w-node-ffae9ae1-3333-8972-312f-e73b1a9a34bd-3c18ca29, #w-node-ffae9ae1-3333-8972-312f-e73b1a9a34bf-3c18ca29 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-a11c9250-400a-1be9-6efc-ad3cd5ca1cd2-3c18ca29 {
  place-self: center;
}

#w-node-a11c9250-400a-1be9-6efc-ad3cd5ca1cd7-3c18ca29 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-a11c9250-400a-1be9-6efc-ad3cd5ca1cda-3c18ca29 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ddbd6faa-9bda-8e00-8880-8dd93fda45c9-3c18ca29 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-ecc79460-76db-0192-66f9-e8875ab5591b-3c18ca29, #w-node-ddbd6faa-9bda-8e00-8880-8dd93fda45cb-3c18ca29 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-3c18ca35 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-3c18ca35, #w-node-_332a5325-042a-312c-4622-9441c66d1f3e-3c18ca35, #w-node-fb6342df-3310-9c49-55f8-d3365456d6ee-3c18ca35, #w-node-_4db6c59d-5947-b065-1b3b-f094ac225bcb-3c18ca35, #w-node-_1e7a33da-77cf-8bfa-8ea9-b8660943a3b4-3c18ca35, #w-node-e951d012-0fca-0abf-94ef-bad3f4267c10-3c18ca35, #w-node-bb437049-0050-3059-6e7f-656fcdf281c5-3c18ca35, #w-node-d145be8a-3752-363f-4d1c-8580a774694d-3c18ca35, #w-node-_99ab63dd-bfbe-2086-253f-2c213e3d557a-3c18ca35, #w-node-_6bf6df6e-d107-9e8a-5865-f20d36cd4b10-3c18ca35, #w-node-df94e042-b95a-5342-2b81-b7ba655cc4dd-3c18ca35, #w-node-_955000ca-4f2e-19e8-ab2f-85ee6c7a2661-3c18ca35, #w-node-_336be75c-ab2b-838b-5642-972b6cc86311-3c18ca35, #w-node-_930616ef-d7ea-2e28-6b45-fa1963e08b0e-3c18ca35, #w-node-d91bb2eb-9a89-9d7a-bdac-3341519312af-3c18ca35, #w-node-_9c1f06db-26d7-a02d-4ad2-cf4d40963b45-3c18ca35 {
  justify-self: start;
}

#w-node-b1e1f1ac-7c2e-043c-9f26-e0d830c14ff7-3c18ca35, #w-node-bed71678-9a54-c758-3e24-a6b1afd04f4d-3c18ca35, #w-node-_33203e5e-bd74-f0ae-dcc3-be427b90e7ec-3c18ca35, #w-node-_33203e5e-bd74-f0ae-dcc3-be427b90e7ed-3c18ca35, #w-node-_33c540dc-b7bb-bae3-7101-3ccd6db415f7-3c18ca35, #w-node-_33c540dc-b7bb-bae3-7101-3ccd6db415f8-3c18ca35, #w-node-fa599d30-267e-6f10-4448-a11fd8d2e1cb-3c18ca35, #w-node-fa599d30-267e-6f10-4448-a11fd8d2e1cc-3c18ca35, #w-node-_5f74c25b-d26e-2eff-ff22-100f61573366-3c18ca35, #w-node-_5f74c25b-d26e-2eff-ff22-100f61573367-3c18ca35, #w-node-fcd4867b-2ab8-37e3-1c31-d92305402b88-3c18ca35, #w-node-fcd4867b-2ab8-37e3-1c31-d92305402b89-3c18ca35, #w-node-b2323931-d886-dc0a-6370-86f54e55068b-3c18ca35, #w-node-b2323931-d886-dc0a-6370-86f54e55068c-3c18ca35, #w-node-_4c3f6af4-ac82-ed71-d2ce-41cceea47a02-3c18ca35, #w-node-_4c3f6af4-ac82-ed71-d2ce-41cceea47a03-3c18ca35, #w-node-b1ac451a-03ef-d945-e268-6d3b5b80cf15-3c18ca35, #w-node-b1ac451a-03ef-d945-e268-6d3b5b80cf16-3c18ca35, #w-node-_114ad446-de37-1d8d-a806-b7802ad97c86-3c18ca35, #w-node-_114ad446-de37-1d8d-a806-b7802ad97c87-3c18ca35, #w-node-_46c77a56-e269-e4df-8615-e708974a0ce8-3c18ca35, #w-node-_46c77a56-e269-e4df-8615-e708974a0ce9-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d748d-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d748e-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d748f-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7490-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7491-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7492-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7493-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7494-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7495-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7496-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7497-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7498-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d7499-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d749a-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d749b-3c18ca35, #w-node-d74a7aa1-c44d-ae2e-f7fd-36ca6a8d749c-3c18ca35, #w-node-_37244f35-5fe1-7f97-ae47-da777c7b5a1b-3c18ca35, #w-node-_37b8781a-6ea6-0cb0-a19a-9050e8ec2ff3-3c18ca35, #w-node-_8f742e07-4eaf-8544-1e4b-5302c615d668-3c18ca35, #w-node-_2bb3b05a-fafa-2ad5-9a3f-a1adc81d8381-3c18ca35, #w-node-f346fa5b-8af5-7212-a95f-a67c621158e1-3c18ca35, #w-node-_26548805-c64a-503c-0285-a13fc7b7beb7-3c18ca35, #w-node-_8bb2d5ea-8874-e75d-4bf7-9f8cfbb25224-3c18ca35, #w-node-_301354f7-fa48-c496-aca8-6e9d1b2eb09c-3c18ca35 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_269af489-2be6-ed34-bf9c-6669031ed78f-3c18ca35, #w-node-_5b6c3440-db45-43e8-a3fa-1751c031012e-3c18ca35, #w-node-b7973d41-52cb-e0ed-f19b-7f2818406e91-3c18ca35, #w-node-dd10fa89-fcf8-9339-3438-e7902d1489ae-3c18ca35, #w-node-_7dfb76e8-5eb5-3123-7858-668ae3bb82c5-3c18ca35, #w-node-_4ab7e4fb-69ee-0125-5c27-080fdf155c3d-3c18ca35, #w-node-eddd5b51-8e4c-f7ec-b9e4-4fbe374df677-3c18ca35, #w-node-_3ac28e78-a768-a648-3f06-a1ea610f3002-3c18ca35, #w-node-_0f6c0043-60b5-5236-2c9d-2207a7a26dce-3c18ca35 {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-ab4fe8a7-d712-ceef-f79c-383b634bab63-9e4c4ee2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ffae9ae1-3333-8972-312f-e73b1a9a34c2-3c18ca29, #w-node-a11c9250-400a-1be9-6efc-ad3cd5ca1cd7-3c18ca29, #w-node-ab4fe8a7-d712-ceef-f79c-383b634bab63-9e4c4ee2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ab4fe8a7-d712-ceef-f79c-383b634bab4d-9e4c4ee2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


