/* =========================================================================
   main.css — only your custom overrides
   ========================================================================= */

/* 1) No spinners on number inputs */
.no-spinners {
  -moz-appearance: textfield;
}

.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 2) Slim custom scrollbar */
::-webkit-scrollbar {
  width: .5rem;
}

::-webkit-scrollbar-track {
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      rgba(203, 236, 167, 1) 0%,
      rgba(228, 241, 181, 1) 100%);
  border-radius: 1rem;
}

/* 3) Prevent selection on your custom radio labels */
.noselect,
.radiostart:checked~.radiostartlabel,
.radiomid:checked~.radiomidlabel,
.radioend:checked~.radioendlabel {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* 4) Highlight pill-style radios */
.radiostart:checked~.radiostartlabel,
.radiomid:checked~.radiomidlabel,
.radioend:checked~.radioendlabel {
  background: linear-gradient(90deg,
      rgba(158, 206, 105, 1) 0%,
      rgba(208, 226, 139, 1) 100%);
  color: white;
}

/* 5) Fade/show/hide helpers */
.fade {
  transition: opacity .3s ease, transform .3s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.invisible {
  opacity: 0;
  transform: translateY(-10px);
}

.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* 6) Toggle switch styling */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

[hidden] {
  display: none !important;
}





.image-2, .dropdown-arrow {
}

.broker-card {
  width: 100%;
}

.broker-dropdown {
  width: 100%;
  padding: 0;
}

.broker-toggle {
  all: unset;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  gap: 0.5rem;
  cursor: pointer;
}

.broker-photo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.broker-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.4rem;
  flex: 1;
  line-height: 1.5;
}

.broker-name {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}

.broker-role {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}

.dropdown-arrow {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.3s ease;
}

.broker-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.broker-contact {
  margin-top: 0.5rem;
  padding-left: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  animation: fadeIn 0.3s ease;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
}

.contact-info {
  margin: 0;
  font-size: .9rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-.4rem); }
  to   { opacity: 1; transform: translateY(0); }
}





/*
.sidenav {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #ffffff40;
  flex-flow: column;
  justify-content: space-between;
  align-self: auto;
  align-items: flex-end;
  width: 30rem;
  position: fixed;
  inset: 0% 0% 0% auto;
}


.nav-menu {
  flex-flow: row;
}

.sidenav-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 5rem;
  margin-left: 4rem;
  margin-right: 4rem;
  padding-top: 2rem;
  display: flex;
}
*/

/* Sidenav styles */

/* entire nav container */
.accordion-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

/* Accordion section header */
.accordion-header {
  display: inline-block;
  cursor: pointer;
  background-color: var(--softgreen);
  border-radius: 100rem;
  margin-bottom: 0.25rem;
  padding: .8rem 1.6rem;
  box-shadow: 0 1px 7px #00000017;
  width: fit-content;
}

/* wrap for the entire dropdown contents */
.nav-dropdown-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: none;
  position: static;
  overflow: hidden;
}

/* Individual nav items (dot + link wrapper) */
.nav-dropdown-wrapper {
  display: flex;
  align-items: center;
  padding: 0.125rem;
  width: fit-content;
  max-width: 100%;
}





.nav-title {
  font-size: 1.25rem;
  font-weight: 600;
  user-select: none;
  -webkit-user-select: none;
}

.link-wrapper {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.nav-check {
  width: 1rem;
  overflow: hidden;
}

.nav-link {
  text-align: left;
  flex: 1;
  padding: 0.25rem;
  font-weight: 400;
  font-size: 1.1rem;
  position: relative;
  color: #707070;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  -webkit-user-drag: none;
}

.nav-link[aria-current="page"] {
  color: var(--maingreen);
  font-weight: 600;
}

.nav-dropdown-container.open {
  display: block !important;
}


.sidenav {
  z-index: 8;
  background-color: #ffffff40;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  flex-flow: column;
  justify-content: space-between;
  align-self: auto;
  align-items: flex-end;
  width: 30rem;
  position: fixed;
  inset: 0% 0% 0% auto;
  overflow-y:auto;
}

.nav-menu {
  flex-flow: row;
}

.sidenav-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin: 5rem 4rem 0;
  padding-top: 2rem;
  gap: 2.5rem;
}










input[type="radio"]+span,
input[type="checkbox"]+span,
label,
.w-form-label {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[readonly] {
  pointer-events: none;
  background-color: #f3f3f3;
  border-color: #dcdcdc;
  color: #999;
}

input[readonly]:focus {
  outline: none;
  box-shadow: none;
}

.input-fields.dependant-inline-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.input-fields.dependant-inline-fields input {
  margin: 0;
}





html {
  height: 100%;
}

body {
}

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

p {
  margin-bottom: .25rem;
}

label {
  margin-bottom: .125rem;
}



.header-title {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 5rem;
  padding-top: 2rem;
  padding-left: 8rem;
  padding-right: 8rem;
}

.header {
  z-index: 8;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 300;
}
h2,
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
}
h4 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5rem;
}
h5 {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5rem;
}
h6 {
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}

.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eeeeee;
}

textarea.w-input,
textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}

.w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #707070;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

















a {
  text-decoration: none;
}

:root {
  --maingrey-text: #5a5a5a;
  --soft-button-curve: .75rem;
  --fieldheight: 2.4rem;
  --fieldpad: .75rem;
  --maingreen: #76c043;
  --shadow: #70707033;
  --shortfield: 7rem;
  --lightgrey-text: #707070;
  --longfield: 22rem;
  --longerfield: 30rem;
  --field-font-size: 1.25rem;
  --mediumfield: 16rem;
  --lightergreen: #f8fcf5;
  --buttonheight: 2.7rem;
  --backgroundgradient: #e9f1d8;
  --lightgreen: #f1f9ec;
  --darknavy: #28313a;
  --lightgrey: #f5f6f7;
  --darkgrey: #434343;
  --semiboldmont: 600;
}

body {
  color: var(--maingrey-text);
  background-color: #0000;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}



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

.accordion_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.accordion_header {
  -webkit-text-fill-color: inherit;
  cursor: pointer;
  background-color: #e9f1d8;
  background-clip: border-box;
  border-radius: 100rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .25rem;
  padding: 1rem 2rem 1rem 1.8rem;
  box-shadow: 0 1px 7px #00000017;
}

.accordion_icon-wrapper {
  width: .875rem;
  height: .875rem;
}

.accordion_panel {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: 4rem;
  transition: all .2s;
  display: none;
  overflow: hidden;
}

.text-block {
  position: relative;
}

.logo {
  height: 2.75rem;
}

.container {
  width: 100%;
  max-width: 1920px;
}

.container.nav {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: block;
}

.section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  object-fit: fill;
  flex-flow: column;
  display: block;
  position: static;
  overflow: visible;
}

.body {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  overflow: hidden;
}

.footer {
  z-index: 6;
  background-color: #fff9;
  flex-flow: row;
  flex: none;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  height: 6rem;
  padding-left: 8rem;
  position: fixed;
  inset: auto 0% 0%;
}

.section-2 {
  flex-flow: column;
  display: flex;
}

.hero-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: stretch;
}

.middle {
  flex-flow: wrap;
  flex: 0 auto;
  place-content: stretch flex-start;
  align-items: flex-start;
  position: fixed;
  inset: 0% auto 0% 0%;
}

.div-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 20px;
  padding-left: 140px;
  display: flex;
  position: static;
}

.link-block {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}



.radio {
  aspect-ratio: auto;
  color: #707070;
  background-color: #fff;
  border-radius: 10px;
  align-self: flex-start;
  width: auto;
  padding: 8px 14px;
  font-weight: 600;
  overflow: visible;
  box-shadow: 0 1px 5px 5px #0003;
}

.radio:hover {
  background-color: #e0e0e0;
}

.radio:active {
  background-color: #98cfff;
}

.form {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.button {
  color: var(--maingrey-text);
  background-color: #0000;
  align-self: flex-start;
}

.container-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  order: 0;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  margin-left: 0;
  display: flex;
}

.container-3 {
  width: 300px;
  max-width: 300px;
  margin-left: 0;
  margin-right: 0;
}

.heading-3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.page-link.w-dropdown-link {
  font-size: 1.1rem;
  font-weight: 400;
}

.paragraph.page-link {
  margin-top: .5rem;
  margin-bottom: .5rem;
  margin-left: 1.75rem;
}

.paragraph.contact-link {
  margin-top: .25rem;
  font-size: 1rem;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.nextbtn {
  border-radius: var(--soft-button-curve);
  text-align: center;
  background-color: rgba(85, 85, 85, 0.6);
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 3rem;
  padding: 10px 20px;
  font-weight: 600;
  display: flex;
}

.back-button-wrapper {
  height: var(--fieldheight);
  border-radius: var(--soft-button-curve);
  background-color: #e6e6e6;
  align-self: center;
}

.text-field {
  mix-blend-mode: normal;
  border-radius: 11px;
  width: 300px;
  height: 38px;
}

.fieldinput {
  height: var(--fieldheight);
  padding: .5rem var(--fieldpad);
  border-radius: var(--soft-button-curve);
  border: 1px #000;
  max-width: 600px;
  margin-bottom: 0;
  font-size: 1.25rem;
  overflow: clip;
  box-shadow: inset 0 1px .2rem .1rem #0000001a;
}

.fieldinput:focus {
  outline-color: var(--maingreen);
  outline-offset: 0px;
  outline-width: .15rem;
  outline-style: solid;
}

.select-field:focus {
  outline-color: var(--maingreen);
  outline-width: 0.15rem;
  outline-style: solid;
  outline-offset: 0px;
}

.fieldinput.medium {
  width: 260px;
}

.fieldinput.radio {
  box-shadow: 0 1px 3px 3px var(--shadow);
  text-align: center;
  width: auto;
  height: auto;
  text-decoration: none;
}

.fieldinput.radio:active {
  background-color: #b9ff98;
}

.fieldinput.radio:focus {
  outline-color: var(--maingreen);
  outline-offset: 0px;
  outline-width: 3px;
  outline-style: solid;
}

.fieldinput.short {
  width: var(--shortfield);
}

.fieldinput.date-field {
  color: var(--lightgrey-text);
  text-transform: uppercase;
  width: 13.5rem;
  padding-left: .75rem;
  padding-right: .75rem;
  font-weight: 400;
}

.fieldinput.longfield {
  width: var(--longfield);
}

.fieldinput.longerfield {
  width: var(--longerfield);
  font-size: var(--field-font-size);
}

.fieldinput.mediumfield {
  width: var(--mediumfield);
}

.fieldinput.shortfield,
.fieldinput.noninteract,
.fieldinput.displayonly {
  width: var(--shortfield);
}

.form-field {
  flex-flow: column;
  margin-left: 0;
  margin-right: 0;
  margin-top: .35rem;
  margin-bottom: .85rem;
}

.form-field.popupwrap {
  transition: all .25s;
  overflow: hidden;
}

.form-field.popup {
  display: block;
  overflow: hidden;
}

.form-field.popup.popuphidden1,
.form-field.popup.popuphidden2 {
  display: none;
}

.form-field.bottomwrap {
  align-self: flex-end;
}

.form-radio {
  grid-column-gap: .85rem;
  flex-flow: wrap;
  display: flex;
}

.form-radio.title-field {
  display: block;
}

.select-field {
  width: var(--shortfield);
  border-radius: var(--soft-button-curve);
  text-align: center;
  background-color: #fff;
}

.select-field.field-input {
  box-shadow: 0 0 .2rem .1rem var(--shadow);
  border: 0 #000;
  margin-bottom: 0;
  padding: 0;
}

.select-field.field-input.mediumfield {
  width: var(--mediumfield);
  align-self: flex-end;
  font-size: 1.2rem;
}

.select-field.field-input.mediumfield.freq {
  margin-left: .75rem;
}




.container-5 {
  grid-column-gap: 15px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  margin-right: 0;
  padding-left: 0;
  display: flex;
}

.container-6 {
  margin-left: 0;
  margin-right: 0;
}

.field-label-title {
  padding-bottom: .5rem;
  padding-left: .125rem;
  font-weight: 600;
}

.field-label {
  justify-content: flex-start;
  align-items: center;
  padding-left: .125rem;
  padding-bottom: .25rem;
  font-weight: 500;
}

.field-label.popuplabel {
  margin-top: .75rem;
}

.field-desc {
  padding-bottom: .125rem;
  padding-left: .125rem;
  font-weight: 500;
}

.div-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.field-wrap {
  align-items: center;
  display: flex;
  position: relative;
}

.asdasd {
  color: #151e24;
  border: 1px solid #e9ecf0;
  border-radius: 12px;
  width: 100%;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 16px 12px 52px;
  font-size: 14px;
  transition: all .25s;
  box-shadow: 1px 1px 2px #7281a70a;
}

.asdasd:hover {
  border-color: #ccd5e0;
}

.asdasd:focus {
  border-color: #642eff;
}

.asdasd::placeholder {
  color: #a0a6b0;
}

.field-icon {
  display: block;
  position: absolute;
  inset: auto 14px auto auto;
}

.ms-input-wrap {
  padding: 0;
  display: flex;
  position: relative;
}

.ms-input {
  color: #121331;
  background-color: #fff;
  border: 1px solid #12133140;
  border-radius: 5px;
  min-height: 40px;
  margin-bottom: 20px;
  padding: 8px 12px;
  transition: box-shadow .2s, border-color .2s;
  position: relative;
  box-shadow: 0 5px 10px -5px #0000001a;
}

.ms-input:hover {
  z-index: 2;
  box-shadow: none;
  border-color: #2962ff;
}

.ms-input::placeholder {
  color: #909090;
}

.ms-input.icon-left {
  padding-left: 40px;
}

.ms-svg {
  z-index: 3;
  color: #12133140;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 20px;
  display: flex;
  position: absolute;
  inset: 10px auto auto 10px;
}

.div-block-2-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.form-block {
  align-self: stretch;
  padding-left: .25rem;
  padding-right: .25rem;
}

.form-group {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.form-group.popup {
  overflow: hidden;
}

.form-subgroup {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.form-subgroup.popup {
  overflow: hidden;
}

.content {
  vertical-align: top;
  flex: 0 auto;
  align-self: stretch;
  padding: .75rem .5rem 10rem 8rem;
  position: absolute;
  inset: 10rem 30.5rem 6rem 0;
  overflow: auto;
}

.header-logo {
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 5rem;
  padding-left: 8rem;
  padding-right: 8rem;
  display: flex;
}

.footer-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.div-block-8 {
  width: 100%;
  height: 100%;
  overflow: scroll;
}

.background {
  background-image: radial-gradient(circle farthest-side at 30% 30%, #b1d68533, #0000 50%), radial-gradient(circle at 50% 70%, #c6df9826, #0000), radial-gradient(circle closest-side at 65% 45%, #d9e7a14d, #0000);
  margin-top: 5rem;
  position: fixed;
  inset: 0%;
}

.radio-title {
  width: 60px;
  height: 30px;
  margin-top: 0;
  margin-left: 0;
}

.radio-button-label {
  display: block;
}

.radio-button-label-2 {
  color: #2962ff;
  background-color: #2962ff1a;
  border-color: #2962ff;
}

.ms-input-label {
  color: #121331;
  margin-bottom: 5px;
  font-weight: 700;
}

.ms-pill-wrap {
  grid-column-gap: .85rem;
  grid-row-gap: .35rem;
  flex-wrap: wrap;
  display: flex;
}

.ms-pill-item {
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  position: relative;
}

.ms-pill-radio {
  margin-top: 0;
  margin-left: 0;
  display: none;
}

.ms-pill-label {
  z-index: 2;
  border-radius: var(--soft-button-curve);
  box-shadow: 0rem 0rem .2rem .1rem var(--shadow);
  white-space: nowrap;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 8px 14px;
  font-weight: 600;
  transition: all .25s;
}

.code-embed {
  overflow: hidden;
}

.field-icon-2 {
  position: absolute;
  inset: auto auto auto 16px;
}

.accordion-item {
  margin-left: 0;
  margin-right: 0;
}

.accordion-toggle {
  align-items: center;
  height: 80px;
  display: flex;
}

.accordion-icon {
  margin-right: 0;
}

.text-block-2 {
  white-space: normal;
  flex: none;
  width: 100%;
}

.dropdown-list {
  background-color: #0000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: block;
  position: static;
  overflow: hidden;
}

.text-block-3 {
  white-space: normal;
  flex: none;
  width: 100%;
}

.page-link {
  text-align: left;
  flex: 1;
  padding: .25rem;
  font-size: 1.1rem;
}

.page-link.current {
  color: var(--maingreen);
  font-weight: 600;
}

.page-link[aria-current="page"] {
  color: var(--maingreen);
  font-weight: 600;
}

.page-link-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: .125rem;
  display: flex;
}

.page-link-wrapper.broker {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  padding-top: .125rem;
  padding-bottom: 0;
}

.back-button-image {
  transform: rotate(90deg);
}

.image-3 {
  width: 1rem;
  overflow: hidden;
}

.link-wrapper {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

/**** */
.nav-title {
  font-size: 1.25rem;
  font-weight: 600;
  user-select: none;
  -webkit-user-select: none;
}



.nav-check {
  width: 1rem;
  overflow: hidden;
}

.nav-link {
  text-align: left;
  flex: 1;
  padding: 0.25rem;
  font-weight: 400;
  font-size: 1.1rem;
  position: relative;
  color: #707070;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  -webkit-user-drag: none;
}

.nav-link[aria-current="page"] {
  color: var(--maingreen);
  font-weight: 600;
}

/* wrap for the entire dropdown contents */
/*
.nav-dropdown-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: none;
  position: static;
  overflow: hidden;
}
*/
/* Individual nav items (dot + link wrapper) */
.nav-dropdown-wrapper {
  display: flex;
  align-items: center;
  padding: 0.125rem;
  width: fit-content;
  max-width: 100%;
}
/*
.nav-dropdown-container.open {
  display: block !important;
}
*/


.phone-icon,
.email-icon {
  width: 1rem;
}

.asd {
  overflow: hidden;
}

.text-block-4 {
  white-space: nowrap;
}

.div-block-10 {
  display: flex;
}

.div-block-11 {
  overflow: hidden;
}

.ms-hidden-measure {
  padding-right: var(--fieldpad);
  padding-left: var(--fieldpad);
  font-size: var(--field-font-size);
  white-space: nowrap;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.fieldbuttonadd {
  border: 2px dashed var(--maingreen);
  border-radius: var(--soft-button-curve);
  color: var(--maingrey-text);
  text-align: center;
  background-color: #0000;
  width: auto;
  padding: .65rem .85rem;
  font-weight: 600;
}

.form-massgroup {
  grid-column-gap: 2.75rem;
  grid-row-gap: 2.75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: .5rem;
  display: flex;
}

.form-massgroup.popup {
  overflow: hidden;
}

.text-block-5 {
  margin-bottom: 1.25rem;
  padding-left: .125rem;
  line-height: 1.6rem;
}

.text-block-6 {
  line-height: 1.6rem;
}

.checkbox-field {
  margin-bottom: 0;
  padding-left: 0;
}

.text-block-7 {
  text-align: center;
  align-self: center;
  padding: .125rem .25rem;
  font-weight: 500;
}

.form-indent {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.form-indent.end {
  position: absolute;
  right: 4rem;
}

.field-italics {
  margin-top: .125rem;
  padding-left: .125rem;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
}

.infowrap {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border-radius: var(--soft-button-curve);
  background-color: #b9df9d40;
  justify-content: flex-start;
  align-items: center;
  margin-top: .5rem;
  padding: 1rem 2.5rem 1rem 2rem;
  display: flex;
}

.image-4 {
  width: 1.5rem;
}

.infotype {
  color: var(--maingrey-text);
  font-weight: 500;
}

.popupwrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: var(--soft-button-curve);
  background-color: var(--lightergreen);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: .15rem;
  padding: 2.25rem 3rem;
  margin-top: 2rem;
  display: flex;
  position: relative;
  box-shadow: 0 1px 6px #0000001a;
}

.popupwrapper.popup {
  overflow: hidden;
}

.popupwrapper.preview {
  background-color: #fff;
  width: auto;
  max-width: fit-content;
  align-self: flex-start;
}

.popupcover {
  overflow: hidden;
}

.button-2 {
  display: none;
}

.collapsedwrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-3,
.div-block-13 {
  position: absolute;
  right: 0;
}

.collaspedgroup {
  display: none;
}

.savebtn {
  height: var(--buttonheight);
  border: 2px solid var(--maingreen);
  border-radius: var(--soft-button-curve);
  background-color: var(--backgroundgradient);
  color: var(--maingrey-text);
  text-align: center;
  width: auto;
  align-items: center;
  display: flex;
  padding-left: .85rem;
  padding-right: .85rem;
  font-weight: 600;
}

.radiowrap {
  margin-bottom: 0;
  padding-left: 0;
}

.radioend {
  margin-top: 0;
  margin-left: 0;
  display: none;
}

.radiomidlabel {
  z-index: 2;
  white-space: nowrap;
  background-color: #fff;
  border-left: 1px solid #00000012;
  border-right: 1px solid #00000012;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 8px 14px;
  font-weight: 600;
  transition: all .25s;
}

.radiostart {
  margin-top: 0;
  margin-left: 0;
  display: none;
}

.radiostartlabel {
  z-index: 2;
  border-top-left-radius: var(--soft-button-curve);
  border-bottom-left-radius: var(--soft-button-curve);
  white-space: nowrap;
  background-color: #fff;
  border-right: 1px solid #00000012;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 8px 14px;
  font-weight: 600;
  transition: all .25s;
}

.radiogroupwrap {
  border-radius: var(--soft-button-curve);
  box-shadow: 0 0 .2rem .1rem var(--shadow);
  flex-flow: row;
  display: flex;
}

.form-inline {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: wrap;
  align-items: center;
  margin-top: .25rem;
  margin-bottom: .75rem;
  display: flex;
  margin-left: 0;
  margin-right: 0;

}

.form-inline.formend {
  border-top: 2px solid #0000001a;
  margin-top: 2rem;
  padding-top: 1rem;
}

.form-inline.centeredend {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-self: center;
  width: 100%;
}

.image-5 {
  width: 1.3rem;
}

.delete {
  height: var(--buttonheight);
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  border-radius: var(--soft-button-curve);
  color: var(--maingrey-text);
  text-align: center;
  background-color: #0000000d;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding-left: .85rem;
  padding-right: 1rem;
  font-weight: 600;
  display: flex;
  position: absolute;
  right: 3rem;
}

.sectionhidden1b {
  display: block;
  overflow: hidden;
}

.formsection {
  margin-bottom: 1.5rem;
}

.sectionhidden1b.sectionhero {
  display: block;
}

.sectionhidden1a {
  overflow: hidden;
}

.sectionhidden1a.sectionhero {
  display: block;
}

.sectionhidden2b {
  display: block;
  overflow: hidden;
}

.sectionhidden2a,
.segmenthidden2,
.segmenthidden3 {
  overflow: hidden;
}

.sectionhidden3b {
  display: none;
  overflow: hidden;
}

.sectionhidden3a,
.popuphidden1,
.popuphidden2 {}

.popuphidden3 {
  display: none;
}

.editbtn {
  border: 2px dashed var(--maingreen);
  border-radius: var(--soft-button-curve);
  color: var(--maingrey-text);
  background-color: #0000;
  font-weight: 600;
  padding: 0.75rem;
  height: var(--buttonheight);
  text-align: center;
  width: auto;
  align-items: center;
  display: flex;
  padding-left: .85rem;
  padding-right: .85rem;
  font-weight: 600;
}

.removebtn.delete.sub {
  align-self: flex-end;
  position: static;
}

.removebtn.delete.combo {
  position: static;
}

.addsectionbtn.fieldbuttonadd {
  margin-top: 2rem;
  display: inline-block;
}

.summarytext {
  margin-right: 2rem;
}

.formspace {
  margin-top: 1.5rem;
}

.prevbtn {
  border-radius: var(--soft-button-curve);
  color: var(--maingrey-text);
  background-color: #0000;
  border: 1.5px solid #0009;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  height: 3rem;
  padding: 10px 20px;
  font-weight: 600;
  display: flex;
}

.subheading {
  justify-content: flex-start;
  align-items: center;
  height: 2rem;
  margin-right: 1.5rem;
  padding-left: .125rem;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
}

.radiomid {
  margin-top: 0;
  margin-left: 0;
  display: none;
}

.radioendlabel {
  z-index: 2;
  border-top-right-radius: var(--soft-button-curve);
  border-bottom-right-radius: var(--soft-button-curve);
  white-space: nowrap;
  background-color: #fff;
  border-left: 1px solid #00000012;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 8px 14px;
  font-weight: 600;
  transition: all .25s;
}

.div-block-14 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.addone {
  border-top-right-radius: var(--soft-button-curve);
  border-bottom-right-radius: var(--soft-button-curve);
  color: var(--maingrey-text);
  text-align: center;
  background-color: #fff;
  border-left: 1px solid #000;
  border-right: 1px solid #00000012;
  padding: 8px 14px;
  font-weight: 700;
}

.subtractone {
  border-top-left-radius: var(--soft-button-curve);
  border-bottom-left-radius: var(--soft-button-curve);
  color: var(--maingrey-text);
  text-align: center;
  background-color: #fff;
  border-right: 1px solid #00000012;
  padding: 8px 14px 8px 16px;
  font-weight: 700;
}

.addonegroupwrap {
  border-radius: var(--soft-button-curve);
  box-shadow: 0 0 .2rem .1rem var(--shadow);
  flex-flow: row;
  display: flex;
}

.linebreak {
  border-bottom: 2px solid #0003;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-bottom: .75rem;
  display: flex;
  position: relative;
}

.code-embed-2 {
  position: absolute;
  right: 0;
}

.togglebtn {
  border: 3px solid grey;
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 2rem;
  display: flex;
  position: relative;
}

.togglebtntext {
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
}

.togglebtntext.toggleoff,
.togglebtntext.toggleon {
  position: relative;
}

.togglebtn.on .togglebtndot {
  transform: translateX(100%);
}

.togglebtndot {
  background-color: grey;
  border-radius: 10rem;
  width: 54%;
  height: 102%;
  position: absolute;
  transition: transform 0.25s ease;
  transform: translateX(0%);
}

.togglebtnwrap {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: flex-start;
  align-items: center;
  height: 2rem;
  display: flex;
}

.code-embed-3 {
  display: none;
}

@media screen and (max-width: 991px) {
  .container.nav {
    padding-bottom: 20px;
    padding-right: 20px;
  }
}