:root {

  --site-primary-rgb: 13, 110, 253;
  --site-secondary-rgb: 108, 117, 125;
  --site-white-rgb: 255, 255, 255;
  --site-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --site-body-font-family: var(--site-font-sans-serif);
  --site-body-font-size: 1rem;
  --site-body-font-weight: 400;
  --site-body-line-height: 1.5;
  --site-body-color: #212529;
  --site-body-color-rgb: 33, 37, 41;
  --site-body-bg: #fff;
  --site-emphasis-color: #000;
  --site-emphasis-color-rgb: 0, 0, 0;
  --site-secondary-color: rgba(33, 37, 41, 0.75);
  --site-secondary-bg: #e9ecef;
  --site-heading-color: inherit;
  --site-link-color: #0d6efd;
  --site-link-color-rgb: 13, 110, 253;
  --site-link-hover-color: #0a58ca;
  --site-link-hover-color-rgb: 10, 88, 202;
  --site-code-color: #d63384;
  --site-border-width: 1px;
  --site-border-color: #dee2e6;
  --site-border-color-translucent: rgba(0, 0, 0, 0.175);
  --site-border-radius: 0.375rem;
  --site-border-radius-sm: 0.25rem;
  --site-border-radius-lg: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--site-body-font-family);
  font-size: var(--site-body-font-size);
  font-weight: var(--site-body-font-weight);
  line-height: var(--site-body-line-height);
  color: var(--site-body-color);
  text-align: var(--site-body-text-align);
  background-color: var(--site-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

 h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--site-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

a {
  color: rgba(var(--site-link-color-rgb), var(--site-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --site-link-color-rgb: var(--site-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: var(--site-font-monospace);
  font-size: 1em;
}

code {
  font-size: 0.875em;
  color: var(--site-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

img,
svg {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
  filter: grayscale(1);
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.container,
.container-fluid {
  --site-gutter-x: 1.5rem;
  --site-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--site-gutter-x) * 0.5);
  padding-left: calc(var(--site-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
   .container {
    max-width: 1320px;
  }
}
:root {
  --site-breakpoint-xs: 0;
  --site-breakpoint-sm: 576px;
  --site-breakpoint-md: 768px;
  --site-breakpoint-lg: 992px;
  --site-breakpoint-xl: 1200px;
  --site-breakpoint-xxl: 1400px;
}

.row {
  --site-gutter-x: 1.5rem;
  --site-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--site-gutter-y));
  margin-right: calc(-0.5 * var(--site-gutter-x));
  margin-left: calc(-0.5 * var(--site-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--site-gutter-x) * 0.5);
  padding-left: calc(var(--site-gutter-x) * 0.5);
  margin-top: var(--site-gutter-y);
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.col-form-label {
  padding-top: calc(0.375rem + var(--site-border-width));
  padding-bottom: calc(0.375rem + var(--site-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--site-border-width));
  padding-bottom: calc(0.5rem + var(--site-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--site-border-width));
  padding-bottom: calc(0.25rem + var(--site-border-width));
  font-size: 0.875rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
 .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.btn {
  --site-btn-padding-x: 0.75rem;
  --site-btn-padding-y: 0.375rem;
  --site-btn-font-family: ;
  --site-btn-font-size: 1rem;
  --site-btn-font-weight: 400;
  --site-btn-line-height: 1.5;
  --site-btn-color: var(--site-body-color);
  --site-btn-bg: transparent;
  --site-btn-border-width: var(--site-border-width);
  --site-btn-border-color: transparent;
  --site-btn-border-radius: var(--site-border-radius);
  --site-btn-hover-border-color: transparent;
  --site-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --site-btn-disabled-opacity: 0.65;
  --site-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--site-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--site-btn-padding-y) var(--site-btn-padding-x);
  font-family: var(--site-btn-font-family);
  font-size: var(--site-btn-font-size);
  font-weight: var(--site-btn-font-weight);
  line-height: var(--site-btn-line-height);
  color: var(--site-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--site-btn-border-width) solid var(--site-btn-border-color);
  border-radius: var(--site-btn-border-radius);
  background-color: var(--site-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--site-btn-hover-color);
  background-color: var(--site-btn-hover-bg);
  border-color: var(--site-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--site-btn-color);
  background-color: var(--site-btn-bg);
  border-color: var(--site-btn-border-color);
}
.btn:focus-visible {
  color: var(--site-btn-hover-color);
  background-color: var(--site-btn-hover-bg);
  border-color: var(--site-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--site-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--site-btn-active-color);
  background-color: var(--site-btn-active-bg);
  border-color: var(--site-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn:disabled {
  color: var(--site-btn-disabled-color);
  pointer-events: none;
  background-color: var(--site-btn-disabled-bg);
  border-color: var(--site-btn-disabled-border-color);
  opacity: var(--site-btn-disabled-opacity);
}

.btn-primary {
  --site-btn-color: #fff;
  --site-btn-bg: #0d6efd;
  --site-btn-border-color: #0d6efd;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #0b5ed7;
  --site-btn-hover-border-color: #0a58ca;
  --site-btn-focus-shadow-rgb: 49, 132, 253;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #0a58ca;
  --site-btn-active-border-color: #0a53be;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #0d6efd;
  --site-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --site-btn-color: #fff;
  --site-btn-bg: #6c757d;
  --site-btn-border-color: #6c757d;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #5c636a;
  --site-btn-hover-border-color: #565e64;
  --site-btn-focus-shadow-rgb: 130, 138, 145;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #565e64;
  --site-btn-active-border-color: #51585e;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #6c757d;
  --site-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --site-btn-color: #fff;
  --site-btn-bg: #198754;
  --site-btn-border-color: #198754;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #157347;
  --site-btn-hover-border-color: #146c43;
  --site-btn-focus-shadow-rgb: 60, 153, 110;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #146c43;
  --site-btn-active-border-color: #13653f;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #198754;
  --site-btn-disabled-border-color: #198754;
}

.btn-info {
  --site-btn-color: #000;
  --site-btn-bg: #0dcaf0;
  --site-btn-border-color: #0dcaf0;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #31d2f2;
  --site-btn-hover-border-color: #25cff2;
  --site-btn-focus-shadow-rgb: 11, 172, 204;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #3dd5f3;
  --site-btn-active-border-color: #25cff2;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #0dcaf0;
  --site-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --site-btn-color: #000;
  --site-btn-bg: #ffc107;
  --site-btn-border-color: #ffc107;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #ffca2c;
  --site-btn-hover-border-color: #ffc720;
  --site-btn-focus-shadow-rgb: 217, 164, 6;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #ffcd39;
  --site-btn-active-border-color: #ffc720;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #ffc107;
  --site-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --site-btn-color: #fff;
  --site-btn-bg: #dc3545;
  --site-btn-border-color: #dc3545;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #bb2d3b;
  --site-btn-hover-border-color: #b02a37;
  --site-btn-focus-shadow-rgb: 225, 83, 97;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #b02a37;
  --site-btn-active-border-color: #a52834;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #dc3545;
  --site-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --site-btn-color: #000;
  --site-btn-bg: #f8f9fa;
  --site-btn-border-color: #f8f9fa;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #d3d4d5;
  --site-btn-hover-border-color: #c6c7c8;
  --site-btn-focus-shadow-rgb: 211, 212, 213;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #c6c7c8;
  --site-btn-active-border-color: #babbbc;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #f8f9fa;
  --site-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --site-btn-color: #fff;
  --site-btn-bg: #212529;
  --site-btn-border-color: #212529;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #424649;
  --site-btn-hover-border-color: #373b3e;
  --site-btn-focus-shadow-rgb: 66, 70, 73;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #4d5154;
  --site-btn-active-border-color: #373b3e;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #212529;
  --site-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --site-btn-color: #0d6efd;
  --site-btn-border-color: #0d6efd;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #0d6efd;
  --site-btn-hover-border-color: #0d6efd;
  --site-btn-focus-shadow-rgb: 13, 110, 253;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #0d6efd;
  --site-btn-active-border-color: #0d6efd;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #0d6efd;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #0d6efd;
  --site-gradient: none;
}

.btn-outline-secondary {
  --site-btn-color: #6c757d;
  --site-btn-border-color: #6c757d;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #6c757d;
  --site-btn-hover-border-color: #6c757d;
  --site-btn-focus-shadow-rgb: 108, 117, 125;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #6c757d;
  --site-btn-active-border-color: #6c757d;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #6c757d;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #6c757d;
  --site-gradient: none;
}

.btn-outline-success {
  --site-btn-color: #198754;
  --site-btn-border-color: #198754;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #198754;
  --site-btn-hover-border-color: #198754;
  --site-btn-focus-shadow-rgb: 25, 135, 84;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #198754;
  --site-btn-active-border-color: #198754;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #198754;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #198754;
  --site-gradient: none;
}

.btn-outline-info {
  --site-btn-color: #0dcaf0;
  --site-btn-border-color: #0dcaf0;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #0dcaf0;
  --site-btn-hover-border-color: #0dcaf0;
  --site-btn-focus-shadow-rgb: 13, 202, 240;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #0dcaf0;
  --site-btn-active-border-color: #0dcaf0;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #0dcaf0;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #0dcaf0;
  --site-gradient: none;
}

.btn-outline-warning {
  --site-btn-color: #ffc107;
  --site-btn-border-color: #ffc107;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #ffc107;
  --site-btn-hover-border-color: #ffc107;
  --site-btn-focus-shadow-rgb: 255, 193, 7;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #ffc107;
  --site-btn-active-border-color: #ffc107;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #ffc107;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #ffc107;
  --site-gradient: none;
}

.btn-outline-danger {
  --site-btn-color: #dc3545;
  --site-btn-border-color: #dc3545;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #dc3545;
  --site-btn-hover-border-color: #dc3545;
  --site-btn-focus-shadow-rgb: 220, 53, 69;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #dc3545;
  --site-btn-active-border-color: #dc3545;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #dc3545;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #dc3545;
  --site-gradient: none;
}

.btn-outline-light {
  --site-btn-color: #f8f9fa;
  --site-btn-border-color: #f8f9fa;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #f8f9fa;
  --site-btn-hover-border-color: #f8f9fa;
  --site-btn-focus-shadow-rgb: 248, 249, 250;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #f8f9fa;
  --site-btn-active-border-color: #f8f9fa;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #f8f9fa;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #f8f9fa;
  --site-gradient: none;
}

.btn-outline-dark {
  --site-btn-color: #212529;
  --site-btn-border-color: #212529;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #212529;
  --site-btn-hover-border-color: #212529;
  --site-btn-focus-shadow-rgb: 33, 37, 41;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #212529;
  --site-btn-active-border-color: #212529;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #212529;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #212529;
  --site-gradient: none;
}

.btn-link {
  --site-btn-font-weight: 400;
  --site-btn-color: var(--site-link-color);
  --site-btn-bg: transparent;
  --site-btn-border-color: transparent;
  --site-btn-hover-color: var(--site-link-hover-color);
  --site-btn-hover-border-color: transparent;
  --site-btn-active-color: var(--site-link-hover-color);
  --site-btn-active-border-color: transparent;
  --site-btn-disabled-color: #6c757d;
  --site-btn-disabled-border-color: transparent;
  --site-btn-box-shadow: 0 0 0 #000;
  --site-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--site-btn-color);
}
.btn-link:hover {
  color: var(--site-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --site-btn-padding-y: 0.5rem;
  --site-btn-padding-x: 1rem;
  --site-btn-font-size: 1.25rem;
  --site-btn-border-radius: var(--site-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --site-btn-padding-y: 0.25rem;
  --site-btn-padding-x: 0.5rem;
  --site-btn-font-size: 0.875rem;
  --site-btn-border-radius: var(--site-border-radius-sm);
}

.collapse:not(.show) {
  display: none;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-group {
  border-radius: var(--site-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--site-border-width));
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--site-border-width));
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:nth-child(n+3),
.btn-group-vertical > :not(.btn-check) + .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --site-nav-link-padding-x: 1rem;
  --site-nav-link-padding-y: 0.5rem;
  --site-nav-link-font-weight: ;
  --site-nav-link-color: var(--site-link-color);
  --site-nav-link-hover-color: var(--site-link-hover-color);
  --site-nav-link-disabled-color: var(--site-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--site-nav-link-padding-y) var(--site-nav-link-padding-x);
  font-size: var(--site-nav-link-font-size);
  font-weight: var(--site-nav-link-font-weight);
  color: var(--site-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--site-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .nav-link:disabled {
  color: var(--site-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --site-nav-tabs-border-width: var(--site-border-width);
  --site-nav-tabs-border-color: var(--site-border-color);
  --site-nav-tabs-border-radius: var(--site-border-radius);
  --site-nav-tabs-link-hover-border-color: var(--site-secondary-bg) var(--site-secondary-bg) var(--site-border-color);
  --site-nav-tabs-link-active-color: var(--site-emphasis-color);
  --site-nav-tabs-link-active-bg: var(--site-body-bg);
  --site-nav-tabs-link-active-border-color: var(--site-border-color) var(--site-border-color) var(--site-body-bg);
  border-bottom: var(--site-nav-tabs-border-width) solid var(--site-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--site-nav-tabs-border-width));
  border: var(--site-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--site-nav-tabs-border-radius);
  border-top-right-radius: var(--site-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--site-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--site-nav-tabs-link-active-color);
  background-color: var(--site-nav-tabs-link-active-bg);
  border-color: var(--site-nav-tabs-link-active-border-color);
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --site-navbar-padding-x: 0;
  --site-navbar-padding-y: 0.5rem;
  --site-navbar-color: rgba(var(--site-emphasis-color-rgb), 0.65);
  --site-navbar-hover-color: rgba(var(--site-emphasis-color-rgb), 0.8);
  --site-navbar-disabled-color: rgba(var(--site-emphasis-color-rgb), 0.3);
  --site-navbar-active-color: rgba(var(--site-emphasis-color-rgb), 1);
  --site-navbar-brand-padding-y: 0.3125rem;
  --site-navbar-brand-margin-end: 1rem;
  --site-navbar-brand-font-size: 1.25rem;
  --site-navbar-brand-color: rgba(var(--site-emphasis-color-rgb), 1);
  --site-navbar-brand-hover-color: rgba(var(--site-emphasis-color-rgb), 1);
  --site-navbar-nav-link-padding-x: 0.5rem;
  --site-navbar-toggler-padding-y: 0.25rem;
  --site-navbar-toggler-padding-x: 0.75rem;
  --site-navbar-toggler-font-size: 1.25rem;
--site-navbar-toggler-border-color: rgba(var(--site-emphasis-color-rgb), 0.15);
  --site-navbar-toggler-border-radius: var(--site-border-radius);
  --site-navbar-toggler-focus-width: 0.25rem;
  --site-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--site-navbar-padding-y) var(--site-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--site-navbar-brand-padding-y);
  padding-bottom: var(--site-navbar-brand-padding-y);
  margin-right: var(--site-navbar-brand-margin-end);
  font-size: var(--site-navbar-brand-font-size);
  color: var(--site-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--site-navbar-brand-hover-color);
}

.navbar-nav {
  --site-nav-link-padding-x: 0;
  --site-nav-link-padding-y: 0.5rem;
  --site-nav-link-font-weight: ;
  --site-nav-link-color: var(--site-navbar-color);
  --site-nav-link-hover-color: var(--site-navbar-hover-color);
  --site-nav-link-disabled-color: var(--site-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--site-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--site-navbar-toggler-padding-y) var(--site-navbar-toggler-padding-x);
  font-size: var(--site-navbar-toggler-font-size);
  line-height: 1;
  color: var(--site-navbar-color);
  background-color: transparent;
  border: var(--site-border-width) solid var(--site-navbar-toggler-border-color);
  border-radius: var(--site-navbar-toggler-border-radius);
  transition: var(--site-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--site-navbar-toggler-focus-width);
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--site-navbar-nav-link-padding-x);
    padding-left: var(--site-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.card {
  --site-card-spacer-y: 1rem;
  --site-card-spacer-x: 1rem;
  --site-card-title-spacer-y: 0.5rem;
  --site-card-title-color: ;
  --site-card-subtitle-color: ;
  --site-card-border-width: var(--site-border-width);
  --site-card-border-color: var(--site-border-color-translucent);
  --site-card-border-radius: var(--site-border-radius);
  --site-card-box-shadow: ;
  --site-card-inner-border-radius: calc(var(--site-border-radius) - (var(--site-border-width)));
  --site-card-cap-padding-y: 0.5rem;
  --site-card-cap-padding-x: 1rem;
  --site-card-cap-bg: rgba(var(--site-body-color-rgb), 0.03);
  --site-card-cap-color: ;
  --site-card-height: ;
  --site-card-color: ;
  --site-card-bg: var(--site-body-bg);
  --site-card-img-overlay-padding: 1rem;
  --site-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--site-card-height);
  color: var(--site-body-color);
  word-wrap: break-word;
  background-color: var(--site-card-bg);
  background-clip: border-box;
  border: var(--site-card-border-width) solid var(--site-card-border-color);
  border-radius: var(--site-card-border-radius);
}

.card-title {
  margin-bottom: var(--site-card-title-spacer-y);
  color: var(--site-card-title-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.alert {
  --site-alert-bg: transparent;
  --site-alert-padding-x: 1rem;
  --site-alert-padding-y: 1rem;
  --site-alert-margin-bottom: 1rem;
  --site-alert-color: inherit;
  --site-alert-border-color: transparent;
  --site-alert-border: var(--site-border-width) solid var(--site-alert-border-color);
  --site-alert-border-radius: var(--site-border-radius);
  --site-alert-link-color: inherit;
  position: relative;
  padding: var(--site-alert-padding-y) var(--site-alert-padding-x);
  margin-bottom: var(--site-alert-margin-bottom);
  color: var(--site-alert-color);
  background-color: var(--site-alert-bg);
  border: var(--site-alert-border);
  border-radius: var(--site-alert-border-radius);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--site-progress-height);
  }
}

.btn-close {
  --site-btn-close-color: #000;
  --site-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --site-btn-close-opacity: 0.5;
  --site-btn-close-hover-opacity: 0.75;
  --site-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --site-btn-close-focus-opacity: 1;
  --site-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--site-btn-close-color);
  background: transparent var(--site-btn-close-bg) center/1em auto no-repeat;
  filter: var(--site-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--site-btn-close-opacity);
}
.btn-close:hover {
  color: var(--site-btn-close-color);
  text-decoration: none;
  opacity: var(--site-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--site-btn-close-focus-shadow);
  opacity: var(--site-btn-close-focus-opacity);
}
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--site-btn-close-disabled-opacity);
}

.btn-close-white {
  --site-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root {
  --site-btn-close-filter: ;
}

:root {
  --site-carousel-indicator-active-bg: #fff;
  --site-carousel-caption-color: #fff;
  --site-carousel-control-icon-filter: ;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) ;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-primary {
  --site-text-opacity: 1;
  color: rgba(var(--site-primary-rgb), var(--site-text-opacity)) !important;
}

.text-secondary {
  --site-text-opacity: 1;
  color: rgba(var(--site-secondary-rgb), var(--site-text-opacity)) !important;
}

.text-white {
  --site-text-opacity: 1;
  color: rgba(var(--site-white-rgb), var(--site-text-opacity)) !important;
}

.visible {
  visibility: visible !important;
}
@media (min-width: 992px) {
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
}

.top-nav {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .top-nav .stepbox {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .top-nav .stepbox img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
    .top-nav .stepbox.radio-iconfont {
      font-size: 3.125rem;
      line-height: 3.125rem; }
  .top-nav .stepunit {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .top-nav .stepunit, .top-nav .stepunit:hover {
      color: inherit;
      text-decoration: none; }
  .top-nav .radio-iconfont + .stepunit {
    vertical-align: -1px; }
  .top-nav .navbar-brand span {
    vertical-align: -4px; }

.nav-dropdown {
  font-size: 0.75rem;
  font-weight: 500;
  height: auto !important; }
  .nav-dropdown .link {
    margin: .667em 1.667em;
    font-weight: 500;
    padding: 0;
    transition: color .2s ease-in-out; }
  .nav-dropdown .link::after {
    color: inherit; }
  .nav-dropdown .btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem; }

@font-face {
  font-family: 'Socicon';
  src: url('fonts/symbols2.woff2') format('woff2'), url('fonts/symbols2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

section {
  background-color: #ffffff;
}

body {
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  color: #232323;
  position: relative;
}

button {
  background-color: transparent;
  border-color: transparent;
}

section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}

a.radio-iconfont:hover {
  text-decoration: none;
}

a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}.block-title,
.chapter-title,
.header-text,
.lead-h2,
.main-heading,
.page-h,
.section-h,
.section-heading,
.topic-title {
  font-style: normal;
  line-height: 1.3;
}.block-subtitle,
.h-secondary,
.lead-sub,
.section-sub,
.section-tag,
.sub-heading,
.subtitle-text,
.tagline-h {
  line-height: 1.3;
}

.domtrack {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-4,
.display-5,
.domlayer,
span,
p,
a {
  line-height: 1;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}

strong {
  font-weight: bold;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  transition-delay: 9999s;
  transition-property: background-color, color;
}

textarea[type=hidden] {
  display: none;
}

section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hidden {
  visibility: hidden;
}

.bodycore {
  color: #ffffff;
}

.objectbox {
  color: #111111;
}

.pathwrap {
  text-align: left;
}

.stackunit {
  text-align: center;
}

.formunit {
  font-weight: 300;
}

.domcell {
  font-weight: 400;
}

.bar {
  font-weight: 500;
}

.padbox {
  font-weight: 700;
}

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-box {
  width: 100%;
}.block-action,
.cta-link,
.lead-btn,
.main-btn,
.primary-cta,
.section-action {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  font-size: 0;
}

.btn {
  font-weight: 600;
  border-width: 1px;
  font-style: normal;
  margin: 0.6rem 0.6rem;
  white-space: normal;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}

.btn-sm {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-md {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-lg {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-form {
  margin: 0;
}
.btn-form:hover {
  cursor: pointer;
}nav .block-action,
nav .cta-link,
nav .lead-btn,
nav .main-btn,
nav .primary-cta,
nav .section-action {
  margin-left: 0rem;
  margin-right: 0rem;
}

.btn .radio-iconfont,
.btn.btn-sm .radio-iconfont {
  order: 1;
  cursor: pointer;
  margin-left: 0.5rem;
  vertical-align: sub;
}

.btn.btn-md .radio-iconfont,
.btn.btn-md .radio-iconfont {
  margin-left: 0.8rem;
}

.domcell {
  font-weight: 400;
}

.bar {
  font-weight: 500;
}

.padbox {
  font-weight: 700;
}

[type=submit] {
  -webkit-appearance: none;
}

@keyframes arrowdown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes gradient-animation {
  from {
    background-position: 0% 100%;
    animation-timing-function: ease-in-out;
  }
  to {
    background-position: 100% 0%;
    animation-timing-function: ease-in-out;
  }
}

.menu .navbar-brand {
  display: flex;
}
.menu .navbar-brand span {
  display: flex;
  display: flex;
}
.menu .navbar-brand .navbar-brand {
  display: flex;
}
.menu .navbar-brand .stepbox img {
  display: flex;
  width: auto;
}
@media (max-width: 991px) {
  .menu .navbar-collapse {
    max-height: 93.5vh;
  }
  .menu .navbar-collapse.show {
    overflow: auto;
  }
}
@media (min-width: 992px) {
  .menu .navbar-nav.nav-dropdown {
    display: flex;
  }
}
@media (max-width: 767px) {
  .menu .navbar-collapse {
    max-height: 80vh;
  }
}

.nav-link .radio-iconfont {
  margin-right: 0.5rem;
}

.navbar {
  display: flex;
  }

.navbar-collapse {
  }

.nav-dropdown .link {
  padding: 0.667em 1.667em !important;
  margin: 0 !important;
}

.nav {
  display: flex;
  }

.row {
  display: flex;
  }

.justify-content-center {
  }

.card-wrapper {
  }

.navbar-toggler {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
  box-shadow: none;
}

html,
body {
  height: auto;
  min-height: 100vh;
}

.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
  text-align: center;
}

.row > * {
  padding-right: 1rem;
  padding-left: 1rem;
}

form .row {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
form .row [class*=col] {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}form .block-action,
form .cta-link,
form .lead-btn,
form .main-btn,
form .primary-cta,
form .section-action {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .btn {
  min-height: 48px;
}

.areaunit {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

ul {
  margin-bottom: 2.3125rem;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.container,
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > [class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 992px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.item {
  position: relative;
}.engine {
	position: absolute;
	text-indent: -2400px;
	text-align: center;
	padding: 0;
	top: 0;
	left: -2400px;
}
@font-face {
  font-family: 'platform2';
  font-display: swap;
  src: url('fonts/layer2.woff2') format('woff2'), url('fonts/layer2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="depth-"], [class*=" depth-"] {
  
  font-family: 'platform2' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.depth-interactive-letter:before {
  content: "\e945";
}
.depth-interactive-lock:before {
  content: "\e948";
}
.depth-interactive-map-pin:before {
  content: "\e94c";
}
.depth-interactive-paper-plane:before {
  content: "\e959";
}
.depth-interactive-phone:before {
  content: "\e95b";
}

body {
  font-family: Open Sans;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .radio-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  line-height: 1.15;
}
.display-2 > .radio-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}
.display-4 > .radio-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
}
.display-5 > .radio-iconfont {
  font-size: 2.25rem;
}
.domlayer {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}
.domlayer > .radio-iconfont {
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.15 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .domlayer {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.15 * (1.63rem + (2.8 - 1.63) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((100vw - 62rem) / (87 - 62))));
  }
  .domlayer {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62))));
  }
}

.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.btn-primary {
  box-shadow: inset 0 10px 8px 0 #384f80, inset 0 -2px 10px 0 #384f80, 0 1px 2px 0 #090d15, 0 10px 15px -5px #111827;
}
.btn-primary,
.btn-primary:active {
  background-color: #111827 !important;
  border-color: #111827 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  color: inherit;
  background-color: #202e4b !important;
  border-color: #202e4b !important;
  box-shadow: inset 0 10px 8px 0 #4764a3, inset 0 -2px 10px 0 #4764a3, 0 1px 2px 0 #192339, 0 20px 40px -10px #202e4b;
  transform: translateY(-2px);
}

.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #202e4b !important;
  border-color: #202e4b !important;
}
.btn-secondary {
  box-shadow: inset 0 10px 8px 0 #15317f, inset 0 -2px 10px 0 #15317f, 0 1px 2px 0 #000000, 0 10px 15px -5px #030712;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #030712 !important;
  border-color: #030712 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  color: inherit;
  background-color: #0a183e !important;
  border-color: #0a183e !important;
  box-shadow: inset 0 10px 8px 0 #1c42ab, inset 0 -2px 10px 0 #1c42ab, 0 1px 2px 0 #070f28, 0 20px 40px -10px #0a183e;
  transform: translateY(-2px);
}

.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0a183e !important;
  border-color: #0a183e !important;
}
.btn-info {
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #ffffff, 0 1px 2px 0 #f2f2f2, 0 10px 15px -5px #ffffff;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #666666 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #ffffff, 0 1px 2px 0 #f2f2f2, 0 20px 40px -10px #ffffff;
  transform: translateY(-2px);
}

.btn-info:disabled {
  color: #666666 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success {
  box-shadow: inset 0 10px 8px 0 #384f80, inset 0 -2px 10px 0 #384f80, 0 1px 2px 0 #090d15, 0 10px 15px -5px #111827;
}
.btn-success,
.btn-success:active {
  background-color: #111827 !important;
  border-color: #111827 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  color: inherit;
  background-color: #202e4b !important;
  border-color: #202e4b !important;
  box-shadow: inset 0 10px 8px 0 #4764a3, inset 0 -2px 10px 0 #4764a3, 0 1px 2px 0 #192339, 0 20px 40px -10px #202e4b;
  transform: translateY(-2px);
}

.btn-success:disabled {
  color: #ffffff !important;
  background-color: #202e4b !important;
  border-color: #202e4b !important;
}
.btn-warning {
  box-shadow: inset 0 10px 8px 0 #ffe445, inset 0 -2px 10px 0 #ffe445, 0 1px 2px 0 #ac9200, 0 10px 15px -5px #c5a800;
}
.btn-warning,
.btn-warning:active {
  background-color: #c5a800 !important;
  border-color: #c5a800 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  color: inherit;
  background-color: #f8d300 !important;
  border-color: #f8d300 !important;
  box-shadow: inset 0 10px 8px 0 #ffeb79, inset 0 -2px 10px 0 #ffeb79, 0 1px 2px 0 #dfbe00, 0 20px 40px -10px #f8d300;
  transform: translateY(-2px);
}

.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #f8d300 !important;
  border-color: #f8d300 !important;
}
.btn-danger {
  box-shadow: inset 0 10px 8px 0 #ffb480, inset 0 -2px 10px 0 #ffb480, 0 1px 2px 0 #e65e00, 0 10px 15px -5px #ff6900;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff6900 !important;
  border-color: #ff6900 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  color: inherit;
  background-color: #ff8733 !important;
  border-color: #ff8733 !important;
  box-shadow: inset 0 10px 8px 0 #ffd2b3, inset 0 -2px 10px 0 #ffd2b3, 0 1px 2px 0 #ff7819, 0 20px 40px -10px #ff8733;
  transform: translateY(-2px);
}

.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff8733 !important;
  border-color: #ff8733 !important;
}
.btn-white {
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #ffffff, 0 1px 2px 0 #ededed, 0 10px 15px -5px #fafafa;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #616161 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #ffffff, 0 1px 2px 0 #f2f2f2, 0 20px 40px -10px #ffffff;
  transform: translateY(-2px);
}

.btn-white:disabled {
  color: #616161 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  box-shadow: inset 0 10px 8px 0 #314a88, inset 0 -2px 10px 0 #314a88, 0 1px 2px 0 #080d17, 0 10px 15px -5px #0f172a;
}
.btn-black,
.btn-black:active {
  background-color: #0f172a !important;
  border-color: #0f172a !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.active {
  color: inherit;
  background-color: #1c2c50 !important;
  border-color: #1c2c50 !important;
  box-shadow: inset 0 10px 8px 0 #3e5fae, inset 0 -2px 10px 0 #3e5fae, 0 1px 2px 0 #16213d, 0 20px 40px -10px #1c2c50;
  transform: translateY(-2px);
}

.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1c2c50 !important;
  border-color: #1c2c50 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #111827;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #111827 !important;
  border-color: #111827 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #030712;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #030712 !important;
  border-color: #030712 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #111827;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #111827 !important;
  border-color: #111827 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c5a800;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.active {
  color: #6e5e00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c5a800 !important;
  border-color: #c5a800 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6900;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.active {
  color: #a84500 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6900 !important;
  border-color: #ff6900 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0f172a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #0f172a !important;
  border-color: #0f172a !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #111827 !important;
}
.text-secondary {
  color: #030712 !important;
}
.text-white {
  color: #fafafa !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #111827;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}.block-action .btn:not(.btn-form),
.cta-link .btn:not(.btn-form),
.lead-btn .btn:not(.btn-form),
.main-btn .btn:not(.btn-form),
.primary-cta .btn:not(.btn-form),
.section-action .btn:not(.btn-form) {
  border-radius: 100px;
}
.nav-tabs .nav-link {
  border-radius: 1rem !important;
}
a,
a:hover {
  color: #111827;
}

html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}.block-action .btn,
.cta-link .btn,
.lead-btn .btn,
.main-btn .btn,
.primary-cta .btn,
.section-action .btn {
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 12px !important;
  border: none !important;
}.block-action .btn-black,
.cta-link .btn-black,
.lead-btn .btn-black,
.main-btn .btn-black,
.primary-cta .btn-black,
.section-action .btn-black {
  box-shadow: inset 0 10px 8px 0 #484848, 0 10px 15px -5px #949494;
  background-color: #0f172a !important;
}.block-action .btn-black:hover,
.cta-link .btn-black:hover,
.lead-btn .btn-black:hover,
.main-btn .btn-black:hover,
.primary-cta .btn-black:hover,
.section-action .btn-black:hover,
.block-action .btn-black:focus,
.cta-link .btn-black:focus,
.lead-btn .btn-black:focus,
.main-btn .btn-black:focus,
.primary-cta .btn-black:focus,
.section-action .btn-black:focus,
.block-action .btn-black.active,
.cta-link .btn-black.active,
.lead-btn .btn-black.active,
.main-btn .btn-black.active,
.primary-cta .btn-black.active,
.section-action .btn-black.active {
  color: #ffffff !important;
  background-color: #111827 !important;
  border-color: #111827 !important;
  box-shadow: inset 0 10px 8px 0 #384f80, inset 0 -2px 10px 0 #384f80, 0 1px 2px 0 #111827, 0 20px 40px -10px #111827;
}.block-action .btn-white,
.cta-link .btn-white,
.lead-btn .btn-white,
.main-btn .btn-white,
.primary-cta .btn-white,
.section-action .btn-white {
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #c7c7c7, 0 1px 2px 0 #c7c7c7, 0 10px 15px -5px #c7c7c7;
  background-color: #fafafa !important;
}.block-action .btn-white:hover,
.cta-link .btn-white:hover,
.lead-btn .btn-white:hover,
.main-btn .btn-white:hover,
.primary-cta .btn-white:hover,
.section-action .btn-white:hover,
.block-action .btn-white:focus,
.cta-link .btn-white:focus,
.lead-btn .btn-white:focus,
.main-btn .btn-white:focus,
.primary-cta .btn-white:focus,
.section-action .btn-white:focus,
.block-action .btn-white.active,
.cta-link .btn-white.active,
.lead-btn .btn-white.active,
.main-btn .btn-white.active,
.primary-cta .btn-white.active,
.section-action .btn-white.active {
  color: #ffffff !important;
  background-color: #111827 !important;
  border-color: #111827 !important;
  box-shadow: inset 0 10px 8px 0 #384f80, inset 0 -2px 10px 0 #384f80, 0 1px 2px 0 #111827, 0 20px 40px -10px #111827;
}
img,
.card-wrap,
.card-wrapper,
.card,
.item-wrapper {
  border-radius: 1rem !important;
}
.innerwrapunit {
  border-radius: 32px !important;
}
.sectionwrap,
.item-img::before,
.item-img::after {
  border-radius: 8px !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.holdlayer {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .holdlayer .navbar-toggler {
    transform: scale(0.8);
  }
}
.holdlayer .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.holdlayer .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.holdlayer .navbar-brand .stepunit {
  line-height: inherit !important;
}
.holdlayer .navbar-brand .stepbox a {
  outline: none;
}
.holdlayer .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.holdlayer .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 12px 0 !important;
  margin: 0 24px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 10px !important;
    margin: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 3px !important;
  width: 0;
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #ffd900, #ffa464, #ff6900);
}
.holdlayer .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
.holdlayer .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .holdlayer .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.holdlayer .nav-link {
  width: fit-content;
  position: relative;
}
.holdlayer .stepbox {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.holdlayer .stepunit {
  padding-left: 1rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .stepunit {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.holdlayer .container,
.holdlayer .container-fluid {
  display: flex;
  min-height: 77px;
  padding: 0 8px 0 24px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 14px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    width: 95%;
    min-height: 60px;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }
}
.holdlayer .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .holdlayer .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.holdlayer .shiftbox {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0 1px 6px #eeeeee;
}
.holdlayer .shiftbox:first-child {
  margin-left: 0;
}
.holdlayer .shiftbox .radio-iconfont {
  font-size: 22px;
  color: #1a0b54 !important;
  transition: all .3s ease;
}
.holdlayer .shiftbox:hover .radio-iconfont {
  opacity: .6;
}
.holdlayer .nav-item:focus,
.holdlayer .nav-link:focus {
  outline: none;
}
.holdlayer .navbar {
  min-height: 77px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.holdlayer .navbar .stepbox img {
  width: auto;
}
.holdlayer .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .holdlayer .navbar {
    min-height: 72px;
  }
  .holdlayer .navbar .stepbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .holdlayer .navbar .nav-item .nav-link::before {
    display: none;
  }
  .holdlayer .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .holdlayer .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.holdlayer .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.holdlayer ul.navbar-nav {
  flex-wrap: wrap;
}
.holdlayer .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .holdlayer .navbar-buttons {
    text-align: left;
  }
}
.holdlayer button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.holdlayer .top-nav {
  padding: 0 1rem;
}
.holdlayer a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .holdlayer .navbar {
    height: 77px;
  }
  .holdlayer .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.holdlayer .block-action,
.holdlayer .cta-link,
.holdlayer .lead-btn,
.holdlayer .main-btn,
.holdlayer .primary-cta,
.holdlayer .section-action {
  margin: -0.6rem -0.6rem;
}.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
  white-space: nowrap;
  width: auto;
}
@media (max-width: 575px) {.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
    width: auto !important;
  }
}
.holdlayer .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .holdlayer .navbar-brand {
    margin-right: auto;
  }
  .holdlayer .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    backdrop-filter: blur(8px);
  }
  .holdlayer .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .holdlayer .navbar-collapse {
    padding: 1rem;
  }
}
.shellcore {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("images/rough1.jpg");
  display: flex;
  align-items: center;
  min-height: 670px;
}
@media (max-width: 767px) {
  .shellcore {
    background-size: 200% 100%;
    background-position: left center;
  }
}
@media (max-width: 1024px) {
  .shellcore {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .shellcore {
    min-height: 0;
  }
}
.shellcore .container {
  max-width: 100%;
  width: 100%;
  padding-left: 8%;
  padding-right: 46%;
}
@media (max-width: 991px) {
  .shellcore .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.shellcore .row {
  margin-left: -20px;
  margin-right: -20px;
}
.shellcore .row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.shellcore .host {
  width: 100%;
}
@media (min-width: 768px) {
  .shellcore .host {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .shellcore .host {
    padding-right: 200px;
  }
}.shellcore .block-title,
.shellcore .chapter-title,
.shellcore .header-text,
.shellcore .lead-h2,
.shellcore .main-heading,
.shellcore .page-h,
.shellcore .section-h,
.shellcore .section-heading,
.shellcore .topic-title {
  color: #171e2e;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {.shellcore .block-title,
.shellcore .chapter-title,
.shellcore .header-text,
.shellcore .lead-h2,
.shellcore .main-heading,
.shellcore .page-h,
.shellcore .section-h,
.shellcore .section-heading,
.shellcore .topic-title {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {.shellcore .block-title,
.shellcore .chapter-title,
.shellcore .header-text,
.shellcore .lead-h2,
.shellcore .main-heading,
.shellcore .page-h,
.shellcore .section-h,
.shellcore .section-heading,
.shellcore .topic-title {
    margin-bottom: 20px;
  }
}.shellcore .block-subtitle,
.shellcore .h-secondary,
.shellcore .lead-sub,
.shellcore .section-sub,
.shellcore .section-tag,
.shellcore .sub-heading,
.shellcore .subtitle-text,
.shellcore .tagline-h {
  color: #ff6900;
  margin-bottom: 20px;
  width: 100%;
}
.shellcore .domtrack {
  color: #111827;
  margin-bottom: 0.9rem;
  width: 100%;
}.shellcore .block-action,
.shellcore .cta-link,
.shellcore .lead-btn,
.shellcore .main-btn,
.shellcore .primary-cta,
.shellcore .section-action {
  margin-top: 10px;
}.shellcore .domtrack,
.shellcore .block-action,
.shellcore .cta-link,
.shellcore .lead-btn,
.shellcore .main-btn,
.shellcore .primary-cta,
.shellcore .section-action {
  color: #171e2e;
}
.mapwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.mapwrap .pack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .mapwrap .pack {
    padding: 100px 0 20px 0;
  }
}
.mapwrap .pack .layoutcell {
  position: absolute;
  top: 0;
  width: 120%;
  height: 100%;
  width: 110%;
}
@media (max-width: 1440px) {
  .mapwrap .pack .layoutcell {
    width: 118%;
  }
}
@media (max-width: 992px) {
  .mapwrap .pack .layoutcell {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .mapwrap .pack .layoutcell {
    width: 115%;
  }
}
@media (max-width: 992px) {
  .mapwrap .pack .layoutcell {
    width: 100%;
  }
}
.mapwrap .pack .layoutcell .zoneunit {
  width: 100%;
  height: 100%;
  background-color: #fafafa;
}
.mapwrap .fieldsetwrap {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .mapwrap .fieldsetwrap {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}
.mapwrap .fieldsetwrap .dockbox {
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .mapwrap .fieldsetwrap .dockbox {
    margin-bottom: 15px;
  }
}.mapwrap .fieldsetwrap .block-title,
.mapwrap .fieldsetwrap .chapter-title,
.mapwrap .fieldsetwrap .header-text,
.mapwrap .fieldsetwrap .lead-h2,
.mapwrap .fieldsetwrap .main-heading,
.mapwrap .fieldsetwrap .page-h,
.mapwrap .fieldsetwrap .section-h,
.mapwrap .fieldsetwrap .section-heading,
.mapwrap .fieldsetwrap .topic-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {.mapwrap .fieldsetwrap .block-title,
.mapwrap .fieldsetwrap .chapter-title,
.mapwrap .fieldsetwrap .header-text,
.mapwrap .fieldsetwrap .lead-h2,
.mapwrap .fieldsetwrap .main-heading,
.mapwrap .fieldsetwrap .page-h,
.mapwrap .fieldsetwrap .section-h,
.mapwrap .fieldsetwrap .section-heading,
.mapwrap .fieldsetwrap .topic-title {
    margin-bottom: 20px;
  }
}
.mapwrap .fieldsetwrap .text-wrap .domtrack {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .mapwrap .fieldsetwrap .text-wrap .domtrack {
    width: 100%;
  }
}
.mapwrap .shellwrap {
  margin: 0 -10px;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .mapwrap .shellwrap {
    width: 100%;
  }
}
.mapwrap .shellwrap .item {
  padding: 0 10px;
}
@media (max-width: 992px) {
  .mapwrap .shellwrap .item {
    padding: 0 20px;
  }
}
.mapwrap .item {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .mapwrap .item:last-child {
    margin-bottom: 0;
  }
}
.mapwrap .item .item-wrapper {
  padding: 10px;
  background-color: #ffffff;
}
.mapwrap .item .item-wrapper .item-title {
  margin-bottom: 20px;
  background-color: #ffffff;
  padding: 11px 10px;
}
.mapwrap .item .item-wrapper .card-box {
  padding: 10px 20px 0 20px;
}
.mapwrap .item .item-wrapper .card-box .item-desc {
  margin-bottom: 20px;
}
.mapwrap .item .item-wrapper .card-box .list {
  padding-left: 18px;
  margin-bottom: 20px;
}
.mapwrap .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 15px;
}
.mapwrap .item .item-wrapper .card-box .list .item-wrap:last-child {
  margin-bottom: 0;
}
.mapwrap .item .item-wrapper .item-price {
  margin-bottom: 20px;
}
.mapwrap .btn-wrapper {
  margin-top: 3rem;
  margin-right: 0;
}
.mapwrap .dockbox {
  color: #ff6900;
}.mapwrap .block-title,
.mapwrap .chapter-title,
.mapwrap .header-text,
.mapwrap .lead-h2,
.mapwrap .main-heading,
.mapwrap .page-h,
.mapwrap .section-h,
.mapwrap .section-heading,
.mapwrap .topic-title {
  color: #ffffff;
}
.mapwrap .domtrack {
  color: #ffffff;
}
.mapwrap .item-title {
  color: #ffffff;
  text-align: center;
}
.mapwrap .item-desc {
  color: #000000;
}
.mapwrap .list {
  color: #ffffff;
}
.mapwrap .item-price {
  color: #000000;
  text-align: center;
}
.mapwrap .list,
.mapwrap .item-wrap {
  color: #000000;
}
.mapwrap .item-title {
  color: #c5a800;
}.mapwrap .block-title,
.mapwrap .chapter-title,
.mapwrap .header-text,
.mapwrap .lead-h2,
.mapwrap .main-heading,
.mapwrap .page-h,
.mapwrap .section-h,
.mapwrap .section-heading,
.mapwrap .topic-title {
  color: #171e2e;
}
.mapwrap .domtrack,
.mapwrap .text-wrap {
  color: #000000;
}
.line {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.line .row {
  flex-direction: row-reverse;
}
.line .img-wrap img {
  width: 100%;
}
.line .card {
  border-radius: 0;
  margin: auto 0;
}
.line .card .wrapper {
  overflow: hidden;
}.line .card .wrapper .block-title,
.line .card .wrapper .chapter-title,
.line .card .wrapper .header-text,
.line .card .wrapper .lead-h2,
.line .card .wrapper .main-heading,
.line .card .wrapper .page-h,
.line .card .wrapper .section-h,
.line .card .wrapper .section-heading,
.line .card .wrapper .topic-title {
  color: #374151;
}.line .card .wrapper .block-subtitle,
.line .card .wrapper .h-secondary,
.line .card .wrapper .lead-sub,
.line .card .wrapper .section-sub,
.line .card .wrapper .section-tag,
.line .card .wrapper .sub-heading,
.line .card .wrapper .subtitle-text,
.line .card .wrapper .tagline-h {
  color: #374151;
}.line .card .wrapper .block-subtitle.domlayer,
.line .card .wrapper .h-secondary.domlayer,
.line .card .wrapper .lead-sub.domlayer,
.line .card .wrapper .section-sub.domlayer,
.line .card .wrapper .section-tag.domlayer,
.line .card .wrapper .sub-heading.domlayer,
.line .card .wrapper .subtitle-text.domlayer,
.line .card .wrapper .tagline-h.domlayer {
  letter-spacing: 0;
}
.line .card .wrapper .domtrack {
  color: #ffffff;
  font-weight: 300;
}
.line .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.line .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffd900;
}
.line .card .wrapper .sign-wrap img {
  width: 140px;
}
.line .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffd900;
}.line .card .wrapper .block-title,
.line .card .wrapper .chapter-title,
.line .card .wrapper .header-text,
.line .card .wrapper .lead-h2,
.line .card .wrapper .main-heading,
.line .card .wrapper .page-h,
.line .card .wrapper .section-h,
.line .card .wrapper .section-heading,
.line .card .wrapper .topic-title {
  text-align: left;
  color: #000000;
}
.line .card .wrapper .domtrack {
  color: #000000;
}.line .card .wrapper .block-subtitle,
.line .card .wrapper .h-secondary,
.line .card .wrapper .lead-sub,
.line .card .wrapper .section-sub,
.line .card .wrapper .section-tag,
.line .card .wrapper .sub-heading,
.line .card .wrapper .subtitle-text,
.line .card .wrapper .tagline-h {
  color: #ff6900;
}
.block {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.block .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .block .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .block .container {
    padding: 0 20px;
  }
}
.block .row {
  justify-content: center;
  padding: 60px 0;
}
@media (max-width: 992px) {
  .block .row {
    padding: 46px 0;
  }
}
.block .partwrapbox {
  margin-bottom: 60px;
  color: #374151;
}
@media (max-width: 992px) {
  .block .partwrapbox {
    margin-bottom: 32px;
  }
}
.block .pack {
  margin-right: 100px;
}
@media (max-width: 992px) {
  .block .pack {
    margin-right: 0;
  }
}.block .pack .block-title,
.block .pack .chapter-title,
.block .pack .header-text,
.block .pack .lead-h2,
.block .pack .main-heading,
.block .pack .page-h,
.block .pack .section-h,
.block .pack .section-heading,
.block .pack .topic-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {.block .pack .block-title,
.block .pack .chapter-title,
.block .pack .header-text,
.block .pack .lead-h2,
.block .pack .main-heading,
.block .pack .page-h,
.block .pack .section-h,
.block .pack .section-heading,
.block .pack .topic-title {
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .block .pack .domtrack {
    margin-bottom: 60px;
  }
}
.block .tabs-wrap {
  margin-bottom: 40px;
  margin-left: 60px;
  text-align: right;
}
@media (max-width: 992px) {
  .block .tabs-wrap {
    margin-left: 0;
  }
}
.block .tabs-wrap .nav.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  border: none;
  justify-content: space-between;
  margin-bottom: 32px;
}
.block .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0 5px 10px;
  transition: all 0.3s ease-in-out;
}
.block .tabs-wrap .nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.block .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  opacity: .5;
  text-align: center;
}
.block .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
}
.block .tabs-wrap .tab-content .tab-pane .boxlayer img {
  height: 350px;
  border-radius: 20px !important;
  object-fit: cover;
}.block .block-title,
.block .chapter-title,
.block .header-text,
.block .lead-h2,
.block .main-heading,
.block .page-h,
.block .section-h,
.block .section-heading,
.block .topic-title {
  color: #000000;
}
.block .domtrack {
  color: #000000;
  text-align: left;
}
.block .list {
  color: #374151;
  text-align: center;
}.block .block-action,
.block .cta-link,
.block .lead-btn,
.block .main-btn,
.block .primary-cta,
.block .section-action {
  text-align: center;
}
.unitcol {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.unitcol .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .unitcol .row {
    padding: 0 12px;
  }
}
.unitcol .row::after {
  content: '';
  display: block;
  position: absolute;
  width: 38%;
  height: 80%;
  right: 0;
  top: 0;
  background: #fafafa;
  border-radius: 0 0 100% 0;
}
@media (max-width: 992px) {
  .unitcol .row::after {
    display: none;
  }
}
.unitcol .boxlayer {
  padding: 0 30px 0 80px;
  position: relative;
}
.unitcol .boxlayer::before {
  content: '';
  display: block;
  background-color: #ff6900;
  position: absolute;
  top: 0;
  left: -1rem;
  width: 152px;
  height: 80px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .unitcol .boxlayer::before {
    display: none;
  }
}
.unitcol .boxlayer::after {
  content: '';
  display: block;
  background-color: #ffe139;
  position: absolute;
  top: 80px;
  left: -1rem;
  width: 152px;
  height: 80px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .unitcol .boxlayer::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .unitcol .boxlayer {
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
.unitcol .boxlayer img {
  max-width: 460px;
  min-width: 300px;
  height: 460px;
  object-fit: cover;
  border-radius: 0 250px 250px 250px;
}
@media (max-width: 992px) {
  .unitcol .boxlayer img {
    min-width: auto;
    height: 400px;
  }
}
.unitcol .text-wrapper {
  padding-left: 40px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .unitcol .text-wrapper {
    padding: 0;
  }
}.unitcol .text-wrapper .block-title,
.unitcol .text-wrapper .chapter-title,
.unitcol .text-wrapper .header-text,
.unitcol .text-wrapper .lead-h2,
.unitcol .text-wrapper .main-heading,
.unitcol .text-wrapper .page-h,
.unitcol .text-wrapper .section-h,
.unitcol .text-wrapper .section-heading,
.unitcol .text-wrapper .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.unitcol .text-wrapper .block-title,
.unitcol .text-wrapper .chapter-title,
.unitcol .text-wrapper .header-text,
.unitcol .text-wrapper .lead-h2,
.unitcol .text-wrapper .main-heading,
.unitcol .text-wrapper .page-h,
.unitcol .text-wrapper .section-h,
.unitcol .text-wrapper .section-heading,
.unitcol .text-wrapper .topic-title {
    margin: 10px 0 20px;
  }
}.unitcol .text-wrapper .block-subtitle,
.unitcol .text-wrapper .h-secondary,
.unitcol .text-wrapper .lead-sub,
.unitcol .text-wrapper .section-sub,
.unitcol .text-wrapper .section-tag,
.unitcol .text-wrapper .sub-heading,
.unitcol .text-wrapper .subtitle-text,
.unitcol .text-wrapper .tagline-h {
  margin-bottom: 25px;
}
@media (max-width: 992px) {.unitcol .text-wrapper .block-subtitle,
.unitcol .text-wrapper .h-secondary,
.unitcol .text-wrapper .lead-sub,
.unitcol .text-wrapper .section-sub,
.unitcol .text-wrapper .section-tag,
.unitcol .text-wrapper .sub-heading,
.unitcol .text-wrapper .subtitle-text,
.unitcol .text-wrapper .tagline-h {
    margin-bottom: 16px;
  }
}
.unitcol .text-wrapper .row.items {
  padding: 0;
}
.unitcol .text-wrapper .row.items::after {
  display: none;
}
.unitcol .text-wrapper .row.items .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .unitcol .text-wrapper .row.items .item {
    margin-bottom: 20px;
  }
}
.unitcol .text-wrapper .row.items .item .gridcore {
  margin: 0;
}
.unitcol .text-wrapper .row.items .item .domtrack {
  margin: 0;
}
.unitcol .text-wrapper .row.items .item .partwrapbox {
  margin: 0;
}.unitcol .block-title,
.unitcol .chapter-title,
.unitcol .header-text,
.unitcol .lead-h2,
.unitcol .main-heading,
.unitcol .page-h,
.unitcol .section-h,
.unitcol .section-heading,
.unitcol .topic-title {
  color: #111827;
}.unitcol .block-subtitle,
.unitcol .h-secondary,
.unitcol .lead-sub,
.unitcol .section-sub,
.unitcol .section-tag,
.unitcol .sub-heading,
.unitcol .subtitle-text,
.unitcol .tagline-h {
  color: #000000;
}
.unitcol .gridcore {
  color: #ff6900;
  text-align: left;
}
.unitcol .domtrack {
  color: #374151;
  text-align: left;
}
.unitcol .partwrapbox {
  color: #111827;
}
.corewrapbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fafafa;
}
.corewrapbox .fieldsetwrap {
  position: relative;
  z-index: 1;
}.corewrapbox .fieldsetwrap .block-title,
.corewrapbox .fieldsetwrap .chapter-title,
.corewrapbox .fieldsetwrap .header-text,
.corewrapbox .fieldsetwrap .lead-h2,
.corewrapbox .fieldsetwrap .main-heading,
.corewrapbox .fieldsetwrap .page-h,
.corewrapbox .fieldsetwrap .section-h,
.corewrapbox .fieldsetwrap .section-heading,
.corewrapbox .fieldsetwrap .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {.corewrapbox .fieldsetwrap .block-title,
.corewrapbox .fieldsetwrap .chapter-title,
.corewrapbox .fieldsetwrap .header-text,
.corewrapbox .fieldsetwrap .lead-h2,
.corewrapbox .fieldsetwrap .main-heading,
.corewrapbox .fieldsetwrap .page-h,
.corewrapbox .fieldsetwrap .section-h,
.corewrapbox .fieldsetwrap .section-heading,
.corewrapbox .fieldsetwrap .topic-title {
    width: 100%;
    margin-bottom: 32px;
  }
}
.corewrapbox .tabs-wrapper {
  margin-bottom: 52px;
}
@media (max-width: 992px) {
  .corewrapbox .tabs-wrapper {
    margin-bottom: 32px;
  }
}
.corewrapbox .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.corewrapbox .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0;
}
.corewrapbox .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  z-index: 1;
  display: block;
  color: #ffffff;
  padding: 14px 32px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
  background-color: #ffffff;
  margin-bottom: 0;
  overflow: hidden;
  will-change: transform;
}
.corewrapbox .tabs-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background-image: linear-gradient(90deg, #fafafa 35%, #ffe864 100%) !important;
  z-index: -1;
  pointer-events: none;
}
.corewrapbox .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  color: #000000;
}
.corewrapbox .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  opacity: 1;
}
.corewrapbox .tab-content .tab-pane .item-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .corewrapbox .tab-content .tab-pane .item-content {
    display: block;
  }
}
@media (max-width: 992px) {
  .corewrapbox .tab-content .tab-pane .item-content .patternbox {
    margin-bottom: 16px;
  }
}
.corewrapbox .tab-content .tab-pane .item-content .patternbox img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .corewrapbox .tab-content .tab-pane .item-content .patternbox img {
    height: 300px;
  }
}
.corewrapbox .tab-content .tab-pane .item-content .card-box {
  padding: 40px;
  justify-content: center;
  border: 1px solid #ffa464;
  box-shadow: inset 0 12px 15px -12px #ffa464;
}
@media (max-width: 992px) {
  .corewrapbox .tab-content .tab-pane .item-content .card-box {
    padding: 20px;
  }
}
.corewrapbox .tab-content .tab-pane .item-content .card-box .item-title {
  margin-bottom: 12px;
}
.corewrapbox .tab-content .tab-pane .item-content .card-box .text-wrap .item-text {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .corewrapbox .tab-content .tab-pane .item-content .card-box .text-wrap .item-text {
    width: 100%;
  }
}.corewrapbox .tab-content .tab-pane .item-content .card-box .block-action,
.corewrapbox .tab-content .tab-pane .item-content .card-box .cta-link,
.corewrapbox .tab-content .tab-pane .item-content .card-box .lead-btn,
.corewrapbox .tab-content .tab-pane .item-content .card-box .main-btn,
.corewrapbox .tab-content .tab-pane .item-content .card-box .primary-cta,
.corewrapbox .tab-content .tab-pane .item-content .card-box .section-action {
  margin-top: 22px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {.corewrapbox .tab-content .tab-pane .item-content .card-box .block-action,
.corewrapbox .tab-content .tab-pane .item-content .card-box .cta-link,
.corewrapbox .tab-content .tab-pane .item-content .card-box .lead-btn,
.corewrapbox .tab-content .tab-pane .item-content .card-box .main-btn,
.corewrapbox .tab-content .tab-pane .item-content .card-box .primary-cta,
.corewrapbox .tab-content .tab-pane .item-content .card-box .section-action {
    margin-top: 14px;
  }
}.corewrapbox .block-title,
.corewrapbox .chapter-title,
.corewrapbox .header-text,
.corewrapbox .lead-h2,
.corewrapbox .main-heading,
.corewrapbox .page-h,
.corewrapbox .section-h,
.corewrapbox .section-heading,
.corewrapbox .topic-title {
  color: #374151;
}
.corewrapbox .item-title {
  color: #374151;
}
.corewrapbox .item-text {
  color: #374151;
}.corewrapbox .block-title,
.corewrapbox .chapter-title,
.corewrapbox .header-text,
.corewrapbox .lead-h2,
.corewrapbox .main-heading,
.corewrapbox .page-h,
.corewrapbox .section-h,
.corewrapbox .section-heading,
.corewrapbox .topic-title,
.corewrapbox .fieldsetwrap,
.corewrapbox .tabs-wrapper {
  text-align: center;
}
.shellbox {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.shellbox .nav-tabs .nav-item.open .nav-link:focus,
.shellbox .nav-tabs .nav-link.active:focus {
  outline: none;
}
.shellbox h4 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.shellbox h4:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.shellbox .nav-tabs {
  flex-wrap: wrap;
  border: none;
  justify-content: space-around;
}
.shellbox .tabs-col {
  overflow: hidden;
}
.shellbox .tab-content {
  border-top: 1px solid lightgray;
  padding: 0rem;
  padding-top: 5rem;
}
.shellbox .nav-tabs .nav-link {
  color: #000000;
  font-style: normal;
  padding: 1rem 1.5rem;
  background: transparent;
  font-weight: 400;
  border: none;
  border-radius: 0;
  position: relative;
}
.shellbox .nav-tabs .nav-link:before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 1px solid #000000;
  background: white;
  transition: all 0.3s;
  z-index: 9;
}
.shellbox .nav-tabs .nav-link:after {
  position: absolute;
  content: '';
  bottom: 0px;
  right: 50%;
  width: 9999px;
  height: 1px;
  transition: all 0.3s;
  background: transparent;
}
.shellbox .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.shellbox .nav-tabs .nav-link.active {
  font-weight: 400;
  font-style: normal;
}
.shellbox .nav-tabs .nav-link.active:before {
  background: #000000;
}
.shellbox .nav-tabs .nav-link.active:after {
  background: #000000;
}
@media (max-width: 767px) {
  .shellbox .nav-tabs {
    flex-direction: row;
  }
  .shellbox .domtrack,
  .shellbox .nav-link {
    text-align: center;
  }
  .shellbox .nav-tabs .nav-link {
    margin-bottom: 1rem;
    border: 0;
  }
  .shellbox .nav-tabs .nav-link:after {
    content: none;
  }
  .shellbox .nav-item {
    min-width: 100px;
  }
  .shellbox .tab-content {
    border-top: 0px;
    padding-top: 2rem;
  }
}
.shellbox h3 {
  color: #000000;
}
.shellbox h2 {
  color: #ff6900;
}
.shellbox h1 {
  color: #111827;
}.shellbox .block-subtitle,
.shellbox .h-secondary,
.shellbox .lead-sub,
.shellbox .section-sub,
.shellbox .section-tag,
.shellbox .sub-heading,
.shellbox .subtitle-text,
.shellbox .tagline-h,
.shellbox .notch {
  color: #ff6900;
}
.zone {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111111;
  overflow: hidden;
  position: relative;
}
.zone .pack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zone .pack .flowbox {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px dashed #ff6900;
  pointer-events: none;
}
.zone .pack .border_1 {
  left: 0;
}
.zone .pack .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .zone .pack .border_2 {
    display: none;
  }
}
.zone .pack .border_3 {
  left: 50%;
}
.zone .pack .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .zone .pack .border_4 {
    display: none;
  }
}
.zone .pack .border_5 {
  left: 100%;
}
.zone .fieldsetwrap {
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .zone .fieldsetwrap {
    margin-bottom: 40px;
  }
}
.zone .fieldsetwrap .card {
  position: relative;
  z-index: 2;
  padding: 0;
}
.zone .fieldsetwrap .spanlayer {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .zone .fieldsetwrap .spanlayer {
    margin-bottom: 20px;
  }
}
.zone .fieldsetwrap .spanlayer .tilecell {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px;
  gap: 6px;
  border-right: 1px solid #ffd900;
  border-left: 1px solid #ffd900;
}
.zone .fieldsetwrap .spanlayer .tilecell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111111;
  opacity: .3;
}
.zone .fieldsetwrap .spanlayer .tilecell .outer {
  display: inline-flex;
  width: 12px;
  min-width: 12px;
  height: 12px;
  border: 1px solid #ffd900;
  margin-bottom: 3px;
}
.zone .fieldsetwrap .spanlayer .tilecell .dockbox {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}.zone .fieldsetwrap .block-title,
.zone .fieldsetwrap .chapter-title,
.zone .fieldsetwrap .header-text,
.zone .fieldsetwrap .lead-h2,
.zone .fieldsetwrap .main-heading,
.zone .fieldsetwrap .page-h,
.zone .fieldsetwrap .section-h,
.zone .fieldsetwrap .section-heading,
.zone .fieldsetwrap .topic-title {
  margin-bottom: 0;
}
.zone .shellwrap {
  margin: 0;
}
.zone .shellwrap .card {
  padding: 0;
}
.zone .sectionrow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 20px;
  margin-left: 1px;
}
@media (max-width: 992px) {
  .zone .sectionrow {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.zone .item {
  z-index: 2;
}
.zone .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  height: 100%;
  background-color: #111111;
  border-top: 1px solid #ff6900;
  border-bottom: 1px solid #ff6900;
}
@media (max-width: 992px) {
  .zone .item .item-wrapper {
    margin: 0 1px;
    padding: 20px 16px;
  }
}
.zone .item .item-wrapper .card-box .shiftbox {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .zone .item .item-wrapper .card-box .shiftbox {
    margin-bottom: 20px;
  }
}
.zone .item .item-wrapper .card-box .shiftbox .radio-iconfont {
  width: 48px;
  height: 48px;
  display: inline-flex;
  font-size: 48px;
}
.zone .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.zone .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}.zone .item .item-wrapper .block-action,
.zone .item .item-wrapper .cta-link,
.zone .item .item-wrapper .lead-btn,
.zone .item .item-wrapper .main-btn,
.zone .item .item-wrapper .primary-cta,
.zone .item .item-wrapper .section-action {
  width: 100%;
  margin-top: 16px;
  margin-bottom: -9.8px;
}.zone .item .item-wrapper .block-action .btn,
.zone .item .item-wrapper .cta-link .btn,
.zone .item .item-wrapper .lead-btn .btn,
.zone .item .item-wrapper .main-btn .btn,
.zone .item .item-wrapper .primary-cta .btn,
.zone .item .item-wrapper .section-action .btn {
  width: 100%;
}
.zone .btn-wrapper {
  margin-top: -1.5rem;
}
.zone .dockbox {
  color: #f0e226;
}.zone .block-title,
.zone .chapter-title,
.zone .header-text,
.zone .lead-h2,
.zone .main-heading,
.zone .page-h,
.zone .section-h,
.zone .section-heading,
.zone .topic-title {
  color: #e4e3dc;
}
.zone .item-title {
  color: #e4e3dc;
}
.zone .item-text {
  color: #b3b2ae;
}
.zone .item-price {
  color: #e4e3dc;
}
.zone .list {
  color: #e4e3dc;
}
.section {
  padding-top: 12rem;
  background-image: url("images/clear1.jpg");
}
.section .pack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 12rem;
}
.section .pack .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .section .pack .icon-wrapper {
    margin-bottom: 20px;
  }
}
.section .pack .icon-wrapper .radio-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6900;
  box-shadow: inset 0 2px 10px 0 #ffffff, 0 10px 10px -2px #c55200;
}.section .pack .fieldsetwrap .block-title,
.section .pack .fieldsetwrap .chapter-title,
.section .pack .fieldsetwrap .header-text,
.section .pack .fieldsetwrap .lead-h2,
.section .pack .fieldsetwrap .main-heading,
.section .pack .fieldsetwrap .page-h,
.section .pack .fieldsetwrap .section-h,
.section .pack .fieldsetwrap .section-heading,
.section .pack .fieldsetwrap .topic-title {
  margin-bottom: 16px;
}
.section .pack .fieldsetwrap .text-wrapper .domtrack {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .section .pack .fieldsetwrap .text-wrapper .domtrack {
    width: 100%;
  }
}.section .pack .fieldsetwrap .block-action,
.section .pack .fieldsetwrap .cta-link,
.section .pack .fieldsetwrap .lead-btn,
.section .pack .fieldsetwrap .main-btn,
.section .pack .fieldsetwrap .primary-cta,
.section .pack .fieldsetwrap .section-action {
  margin-top: 30px;
}
@media (max-width: 992px) {.section .pack .fieldsetwrap .block-action,
.section .pack .fieldsetwrap .cta-link,
.section .pack .fieldsetwrap .lead-btn,
.section .pack .fieldsetwrap .main-btn,
.section .pack .fieldsetwrap .primary-cta,
.section .pack .fieldsetwrap .section-action {
    margin-top: 10px;
  }
}.section .block-title,
.section .chapter-title,
.section .header-text,
.section .lead-h2,
.section .main-heading,
.section .page-h,
.section .section-h,
.section .section-heading,
.section .topic-title {
  color: #0f172a;
  text-align: center;
}
.section .domtrack,
.section .text-wrapper {
  color: #475569;
  text-align: center;
}.section .block-action,
.section .cta-link,
.section .lead-btn,
.section .main-btn,
.section .primary-cta,
.section .section-action,
.section .block-title,
.section .chapter-title,
.section .header-text,
.section .lead-h2,
.section .main-heading,
.section .page-h,
.section .section-h,
.section .section-heading,
.section .topic-title,
.section .icon-wrapper {
  text-align: center;
}
.headwrap {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.headwrap .card-wrapper {
  padding: 60px 60px 0 60px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff, 1px 0 10px -5px #6b7280;
  overflow: hidden;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper {
    padding: 20px 20px 0 20px;
  }
}
.headwrap .card-wrapper .pack {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack {
    margin-bottom: 40px;
  }
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .logo-wrapper img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  object-fit: cover;
}.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .block-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .chapter-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .header-text,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .lead-h2,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .main-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .page-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .topic-title {
  margin-bottom: 0;
}
.headwrap .card-wrapper .pack .text-wrapper .domtrack {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack .text-wrapper .domtrack {
    width: 100%;
  }
}.headwrap .card-wrapper .pack .block-action,
.headwrap .card-wrapper .pack .cta-link,
.headwrap .card-wrapper .pack .lead-btn,
.headwrap .card-wrapper .pack .main-btn,
.headwrap .card-wrapper .pack .primary-cta,
.headwrap .card-wrapper .pack .section-action {
  margin-top: 10px;
}
.headwrap .card-wrapper .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
    margin-bottom: 12px;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  width: fit-content;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff8b39;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #ff8b39;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  opacity: 1;
  transform: translateY(0);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
    margin-bottom: 0;
  }
}
.headwrap .card-wrapper .copy-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.headwrap .card-wrapper .copy-wrap .flowbox {
  position: absolute;
  top: 0;
  width: 1000%;
  height: 1px;
  background-color: #ffd900;
}
.headwrap .card-wrapper .copy-wrap .pagebox {
  width: 100%;
  margin-bottom: 0;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title {
  color: #0f172a;
}
.headwrap .domtrack,
.headwrap .text-wrapper {
  color: #000000;
}
.headwrap .radio-list-title {
  color: #c5a800;
  text-align: left;
}
.headwrap .list {
  color: #0f172a;
}
.headwrap .pagebox {
  color: #0f172a;
  text-align: left;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title,
.headwrap .block-action,
.headwrap .cta-link,
.headwrap .lead-btn,
.headwrap .main-btn,
.headwrap .primary-cta,
.headwrap .section-action,
.headwrap .fieldsetwrap {
  color: #ff6900;
}
.headwrap .list,
.headwrap .item-wrap {
  color: #000000;
}
.holdlayer {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .holdlayer .navbar-toggler {
    transform: scale(0.8);
  }
}
.holdlayer .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.holdlayer .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.holdlayer .navbar-brand .stepunit {
  line-height: inherit !important;
}
.holdlayer .navbar-brand .stepbox a {
  outline: none;
}
.holdlayer .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.holdlayer .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 12px 0 !important;
  margin: 0 24px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 10px !important;
    margin: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 3px !important;
  width: 0;
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #ffd900, #ffa464, #ff6900);
}
.holdlayer .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
.holdlayer .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .holdlayer .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.holdlayer .nav-link {
  width: fit-content;
  position: relative;
}
.holdlayer .stepbox {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.holdlayer .stepunit {
  padding-left: 1rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .stepunit {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.holdlayer .container,
.holdlayer .container-fluid {
  display: flex;
  min-height: 77px;
  padding: 0 8px 0 24px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 14px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    width: 95%;
    min-height: 60px;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }
}
.holdlayer .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .holdlayer .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.holdlayer .shiftbox {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0 1px 6px #eeeeee;
}
.holdlayer .shiftbox:first-child {
  margin-left: 0;
}
.holdlayer .shiftbox .radio-iconfont {
  font-size: 22px;
  color: #1a0b54 !important;
  transition: all .3s ease;
}
.holdlayer .shiftbox:hover .radio-iconfont {
  opacity: .6;
}
.holdlayer .nav-item:focus,
.holdlayer .nav-link:focus {
  outline: none;
}
.holdlayer .navbar {
  min-height: 77px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.holdlayer .navbar .stepbox img {
  width: auto;
}
.holdlayer .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .holdlayer .navbar {
    min-height: 72px;
  }
  .holdlayer .navbar .stepbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .holdlayer .navbar .nav-item .nav-link::before {
    display: none;
  }
  .holdlayer .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .holdlayer .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.holdlayer .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.holdlayer ul.navbar-nav {
  flex-wrap: wrap;
}
.holdlayer .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .holdlayer .navbar-buttons {
    text-align: left;
  }
}
.holdlayer button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.holdlayer .top-nav {
  padding: 0 1rem;
}
.holdlayer a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .holdlayer .navbar {
    height: 77px;
  }
  .holdlayer .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.holdlayer .block-action,
.holdlayer .cta-link,
.holdlayer .lead-btn,
.holdlayer .main-btn,
.holdlayer .primary-cta,
.holdlayer .section-action {
  margin: -0.6rem -0.6rem;
}.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
  white-space: nowrap;
  width: auto;
}
@media (max-width: 575px) {.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
    width: auto !important;
  }
}
.holdlayer .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .holdlayer .navbar-brand {
    margin-right: auto;
  }
  .holdlayer .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    backdrop-filter: blur(8px);
  }
  .holdlayer .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .holdlayer .navbar-collapse {
    padding: 1rem;
  }
}
.target {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("images/bright1.jpg");
}.target .domtrack,
.target .block-action,
.target .cta-link,
.target .lead-btn,
.target .main-btn,
.target .primary-cta,
.target .section-action {
  color: #000000;
  text-align: left;
}.target .block-title,
.target .chapter-title,
.target .header-text,
.target .lead-h2,
.target .main-heading,
.target .page-h,
.target .section-h,
.target .section-heading,
.target .topic-title {
  color: #111111;
}.target .block-subtitle,
.target .h-secondary,
.target .lead-sub,
.target .section-sub,
.target .section-tag,
.target .sub-heading,
.target .subtitle-text,
.target .tagline-h {
  color: #ff6900;
}
.unitgrid {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.unitgrid .container {
  max-width: 1000px;
}
.unitgrid .domtrack {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #000000;
}.unitgrid .block-title,
.unitgrid .chapter-title,
.unitgrid .header-text,
.unitgrid .lead-h2,
.unitgrid .main-heading,
.unitgrid .page-h,
.unitgrid .section-h,
.unitgrid .section-heading,
.unitgrid .topic-title {
  color: #111111;
}
.tilepad {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.tilepad .container-fluid {
  padding: 0 22px;
}
@media (max-width: 992px) {
  .tilepad .container-fluid {
    padding: 0 16px;
  }
}
.tilepad .container-fluid .row {
  padding: 0;
}
.tilepad .row {
  justify-content: center;
}
.tilepad .fieldsetwrap {
  padding-top: 22px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .tilepad .fieldsetwrap {
    margin-bottom: 64px;
  }
}.tilepad .fieldsetwrap .block-title,
.tilepad .fieldsetwrap .chapter-title,
.tilepad .fieldsetwrap .header-text,
.tilepad .fieldsetwrap .lead-h2,
.tilepad .fieldsetwrap .main-heading,
.tilepad .fieldsetwrap .page-h,
.tilepad .fieldsetwrap .section-h,
.tilepad .fieldsetwrap .section-heading,
.tilepad .fieldsetwrap .topic-title {
  margin-bottom: 0;
}
.tilepad .item {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .tilepad .item {
    margin-bottom: 64px;
  }
}
.tilepad .item .item-wrapper .gridcore {
  margin-bottom: 0;
}
.tilepad .item .item-wrapper .item-img img {
  display: inline;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100%;
  margin-bottom: 22px;
}
@media (min-width: 1400px) {
  .tilepad .item .item-wrapper .item-img img {
    width: 300px;
    height: 300px;
  }
}
@media (min-width: 1500px) {
  .tilepad .item .item-wrapper .item-img img {
    width: 330px;
    height: 330px;
  }
}
@media (min-width: 1800px) {
  .tilepad .item .item-wrapper .item-img img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 1200px) {
  .tilepad .item .item-wrapper .item-img img {
    width: 190px;
    height: 190px;
  }
}
@media (max-width: 768px) {
  .tilepad .item .item-wrapper .item-img img {
    margin-bottom: 16px;
  }
}
.tilepad .item .item-wrapper .item-content .flow {
  margin-bottom: 4px;
}
.tilepad .item .item-wrapper .item-content a {
  display: block;
  transition: all .3s ease;
}
.tilepad .item .item-wrapper .item-content a:hover {
  opacity: .5;
}.tilepad .block-title,
.tilepad .chapter-title,
.tilepad .header-text,
.tilepad .lead-h2,
.tilepad .main-heading,
.tilepad .page-h,
.tilepad .section-h,
.tilepad .section-heading,
.tilepad .topic-title {
  color: #111111;
}
.tilepad .gridcore {
  color: #ffffff;
}
.tilepad .flow {
  color: #111111;
}
.tilepad .gridcore,
.tilepad .item-img {
  color: #ff6900;
  text-align: center;
}
.outerpad {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.outerpad .row {
  justify-content: center;
}
.outerpad .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .outerpad .pack {
    margin-bottom: 10px;
  }
}
.outerpad .pack .fieldsetwrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .outerpad .pack .fieldsetwrap {
    margin-bottom: 30px;
  }
}.outerpad .pack .fieldsetwrap .block-title,
.outerpad .pack .fieldsetwrap .chapter-title,
.outerpad .pack .fieldsetwrap .header-text,
.outerpad .pack .fieldsetwrap .lead-h2,
.outerpad .pack .fieldsetwrap .main-heading,
.outerpad .pack .fieldsetwrap .page-h,
.outerpad .pack .fieldsetwrap .section-h,
.outerpad .pack .fieldsetwrap .section-heading,
.outerpad .pack .fieldsetwrap .topic-title {
  margin-bottom: 0;
}.outerpad .pack .fieldsetwrap .block-subtitle,
.outerpad .pack .fieldsetwrap .h-secondary,
.outerpad .pack .fieldsetwrap .lead-sub,
.outerpad .pack .fieldsetwrap .section-sub,
.outerpad .pack .fieldsetwrap .section-tag,
.outerpad .pack .fieldsetwrap .sub-heading,
.outerpad .pack .fieldsetwrap .subtitle-text,
.outerpad .pack .fieldsetwrap .tagline-h {
  margin-bottom: 0;
}
.outerpad .pack .text-wrapper .domtrack {
  display: inline-block;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .outerpad .pack .text-wrapper .domtrack {
    margin-bottom: 30px;
    width: 100%;
  }
}
.outerpad .boxlayer {
  position: relative;
  display: flex;
  justify-content: flex-end;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .outerpad .boxlayer {
    display: block;
  }
}
.outerpad .boxlayer::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 110%;
  border-radius: 100%;
  background-image: radial-gradient(#ffe864, transparent);
  filter: blur(100px);
  right: auto;
  left: 0;
}
.outerpad .boxlayer .patternbox {
  position: relative;
  z-index: 1;
}
.outerpad .boxlayer .patternbox img {
  width: 400px;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .outerpad .boxlayer .patternbox img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 992px) {
  .outerpad .boxlayer .patternbox img {
    height: 350px;
    width: 100%;
  }
}.outerpad .block-title,
.outerpad .chapter-title,
.outerpad .header-text,
.outerpad .lead-h2,
.outerpad .main-heading,
.outerpad .page-h,
.outerpad .section-h,
.outerpad .section-heading,
.outerpad .topic-title {
  color: #111827;
}.outerpad .block-subtitle,
.outerpad .h-secondary,
.outerpad .lead-sub,
.outerpad .section-sub,
.outerpad .section-tag,
.outerpad .sub-heading,
.outerpad .subtitle-text,
.outerpad .tagline-h {
  color: #ff6900;
}
.outerpad .domtrack {
  color: #374151;
}.outerpad .domtrack,
.outerpad .block-action,
.outerpad .cta-link,
.outerpad .lead-btn,
.outerpad .main-btn,
.outerpad .primary-cta,
.outerpad .section-action,
.outerpad .text-wrapper {
  color: #000000;
}
.unitbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.unitbox .container {
  max-width: 1000px;
}
.unitbox .domtrack {
  color: #000000;
  text-align: center;
}.unitbox .block-subtitle,
.unitbox .h-secondary,
.unitbox .lead-sub,
.unitbox .section-sub,
.unitbox .section-tag,
.unitbox .sub-heading,
.unitbox .subtitle-text,
.unitbox .tagline-h {
  text-align: center;
  color: #ff6900;
}.unitbox .block-title,
.unitbox .chapter-title,
.unitbox .header-text,
.unitbox .lead-h2,
.unitbox .main-heading,
.unitbox .page-h,
.unitbox .section-h,
.unitbox .section-heading,
.unitbox .topic-title {
  text-align: center;
  color: #111111;
}
.headwrap {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.headwrap .card-wrapper {
  padding: 60px 60px 0 60px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff, 1px 0 10px -5px #6b7280;
  overflow: hidden;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper {
    padding: 20px 20px 0 20px;
  }
}
.headwrap .card-wrapper .pack {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack {
    margin-bottom: 40px;
  }
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .logo-wrapper img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  object-fit: cover;
}.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .block-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .chapter-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .header-text,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .lead-h2,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .main-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .page-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .topic-title {
  margin-bottom: 0;
}
.headwrap .card-wrapper .pack .text-wrapper .domtrack {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack .text-wrapper .domtrack {
    width: 100%;
  }
}.headwrap .card-wrapper .pack .block-action,
.headwrap .card-wrapper .pack .cta-link,
.headwrap .card-wrapper .pack .lead-btn,
.headwrap .card-wrapper .pack .main-btn,
.headwrap .card-wrapper .pack .primary-cta,
.headwrap .card-wrapper .pack .section-action {
  margin-top: 10px;
}
.headwrap .card-wrapper .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
    margin-bottom: 12px;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  width: fit-content;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff8b39;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #ff8b39;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  opacity: 1;
  transform: translateY(0);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
    margin-bottom: 0;
  }
}
.headwrap .card-wrapper .copy-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.headwrap .card-wrapper .copy-wrap .flowbox {
  position: absolute;
  top: 0;
  width: 1000%;
  height: 1px;
  background-color: #ffd900;
}
.headwrap .card-wrapper .copy-wrap .pagebox {
  width: 100%;
  margin-bottom: 0;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title {
  color: #0f172a;
}
.headwrap .domtrack,
.headwrap .text-wrapper {
  color: #000000;
}
.headwrap .radio-list-title {
  color: #c5a800;
  text-align: left;
}
.headwrap .list {
  color: #0f172a;
}
.headwrap .pagebox {
  color: #0f172a;
  text-align: left;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title,
.headwrap .block-action,
.headwrap .cta-link,
.headwrap .lead-btn,
.headwrap .main-btn,
.headwrap .primary-cta,
.headwrap .section-action,
.headwrap .fieldsetwrap {
  color: #ff6900;
}
.headwrap .list,
.headwrap .item-wrap {
  color: #000000;
}
.holdlayer {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .holdlayer .navbar-toggler {
    transform: scale(0.8);
  }
}
.holdlayer .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.holdlayer .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.holdlayer .navbar-brand .stepunit {
  line-height: inherit !important;
}
.holdlayer .navbar-brand .stepbox a {
  outline: none;
}
.holdlayer .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.holdlayer .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 12px 0 !important;
  margin: 0 24px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 10px !important;
    margin: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 3px !important;
  width: 0;
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #ffd900, #ffa464, #ff6900);
}
.holdlayer .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
.holdlayer .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .holdlayer .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.holdlayer .nav-link {
  width: fit-content;
  position: relative;
}
.holdlayer .stepbox {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.holdlayer .stepunit {
  padding-left: 1rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .stepunit {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.holdlayer .container,
.holdlayer .container-fluid {
  display: flex;
  min-height: 77px;
  padding: 0 8px 0 24px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 14px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    width: 95%;
    min-height: 60px;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }
}
.holdlayer .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .holdlayer .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.holdlayer .shiftbox {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0 1px 6px #eeeeee;
}
.holdlayer .shiftbox:first-child {
  margin-left: 0;
}
.holdlayer .shiftbox .radio-iconfont {
  font-size: 22px;
  color: #1a0b54 !important;
  transition: all .3s ease;
}
.holdlayer .shiftbox:hover .radio-iconfont {
  opacity: .6;
}
.holdlayer .nav-item:focus,
.holdlayer .nav-link:focus {
  outline: none;
}
.holdlayer .navbar {
  min-height: 77px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.holdlayer .navbar .stepbox img {
  width: auto;
}
.holdlayer .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .holdlayer .navbar {
    min-height: 72px;
  }
  .holdlayer .navbar .stepbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .holdlayer .navbar .nav-item .nav-link::before {
    display: none;
  }
  .holdlayer .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .holdlayer .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.holdlayer .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.holdlayer ul.navbar-nav {
  flex-wrap: wrap;
}
.holdlayer .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .holdlayer .navbar-buttons {
    text-align: left;
  }
}
.holdlayer button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.holdlayer .top-nav {
  padding: 0 1rem;
}
.holdlayer a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .holdlayer .navbar {
    height: 77px;
  }
  .holdlayer .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.holdlayer .block-action,
.holdlayer .cta-link,
.holdlayer .lead-btn,
.holdlayer .main-btn,
.holdlayer .primary-cta,
.holdlayer .section-action {
  margin: -0.6rem -0.6rem;
}.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
  white-space: nowrap;
  width: auto;
}
@media (max-width: 575px) {.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
    width: auto !important;
  }
}
.holdlayer .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .holdlayer .navbar-brand {
    margin-right: auto;
  }
  .holdlayer .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    backdrop-filter: blur(8px);
  }
  .holdlayer .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .holdlayer .navbar-collapse {
    padding: 1rem;
  }
}
.elementbox {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.elementbox svg {
  fill: #fafafa !important;
  pointer-events: none;
}.elementbox .block-title.display-1,
.elementbox .chapter-title.display-1,
.elementbox .header-text.display-1,
.elementbox .lead-h2.display-1,
.elementbox .main-heading.display-1,
.elementbox .page-h.display-1,
.elementbox .section-h.display-1,
.elementbox .section-heading.display-1,
.elementbox .topic-title.display-1 {
  line-height: 1.24;
}
.elementbox .domtrack {
  font-weight: 300;
}
.elementbox .domtrack.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.elementbox .btn-white {
  color: #374151 !important;
}
.elementbox .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.elementbox .btn.display-4 .radio-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .elementbox .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .elementbox {
    padding: 30px;
  }
  .elementbox svg {
    display: none;
  }
}.elementbox .block-title,
.elementbox .chapter-title,
.elementbox .header-text,
.elementbox .lead-h2,
.elementbox .main-heading,
.elementbox .page-h,
.elementbox .section-h,
.elementbox .section-heading,
.elementbox .topic-title,
.elementbox .block-action,
.elementbox .cta-link,
.elementbox .lead-btn,
.elementbox .main-btn,
.elementbox .primary-cta,
.elementbox .section-action {
  color: #111111;
}.elementbox .domtrack,
.elementbox .block-action,
.elementbox .cta-link,
.elementbox .lead-btn,
.elementbox .main-btn,
.elementbox .primary-cta,
.elementbox .section-action {
  color: #000000;
}
.unitfield {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 992px) {
  .unitfield .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .unitfield .container {
    padding: 0 12px;
  }
}
.unitfield .row {
  justify-content: center;
}
.unitfield .fieldsetwrap .radio-card-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .unitfield .fieldsetwrap .radio-card-title {
    margin-bottom: 24px;
  }
}
.unitfield .card .card_1 .card-wrap::before {
  background-color: #ff6900;
}
.unitfield .card .card_2 .card-wrap::before {
  background-color: #111111;
}
.unitfield .card .card_3 .card-wrap::before {
  background-color: #c5a800;
}
.unitfield .card .card-wrapper {
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .unitfield .card .card-wrapper {
    padding: 40px 0;
  }
}
.unitfield .card .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 250px;
  height: 250px;
  padding: 0 5px;
}
@media (max-width: 1200px) {
  .unitfield .card .card-wrapper .card-wrap {
    width: 200px;
    height: 200px;
  }
}
.unitfield .card .card-wrapper .card-wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
  transform: rotate(45deg);
}
@media (max-width: 992px) {
  .unitfield .card .card-wrapper .card-wrap::before {
    border-radius: 24px;
  }
}
.unitfield .card .card-wrapper .card-wrap .radio-card-title {
  position: relative;
  margin-bottom: 0;
}.unitfield .block-title,
.unitfield .chapter-title,
.unitfield .header-text,
.unitfield .lead-h2,
.unitfield .main-heading,
.unitfield .page-h,
.unitfield .section-h,
.unitfield .section-heading,
.unitfield .topic-title {
  color: #111111;
  text-align: center;
}
.unitfield .radio-card-title {
  color: #ffffff;
  text-align: center;
}
.clusterunit {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.clusterunit img {
  width: 90%;
}
@media (max-width: 992px) {
  .clusterunit img {
    width: 100%;
  }
  .clusterunit .pb-5 {
    padding-bottom: 1rem!important;
  }
}
.clusterunit ul {
  padding-left: 2rem;
  margin-bottom: 0;
}
.clusterunit ul li {
  margin-bottom: 0.4rem;
  list-style: none;
  position: relative;
}
.clusterunit ul li:before {
  position: absolute;
  left: -2.6rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 10px 14px;
  line-height: 20px;
  transition: all .2s;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd900;
}
.clusterunit .text1 {
  color: #000000;
}
.clusterunit h3 {
  color: #ff6900;
}
.clusterunit .gridnode {
  color: #000000;
}
.clusterunit .text2 {
  color: #000000;
}
.tileunit {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.tileunit .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .tileunit .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .tileunit .container {
    padding: 0 25px;
  }
}.tileunit .fieldsetwrap .block-title,
.tileunit .fieldsetwrap .chapter-title,
.tileunit .fieldsetwrap .header-text,
.tileunit .fieldsetwrap .lead-h2,
.tileunit .fieldsetwrap .main-heading,
.tileunit .fieldsetwrap .page-h,
.tileunit .fieldsetwrap .section-h,
.tileunit .fieldsetwrap .section-heading,
.tileunit .fieldsetwrap .topic-title {
  margin-bottom: 50px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
@media (max-width: 992px) {.tileunit .fieldsetwrap .block-title,
.tileunit .fieldsetwrap .chapter-title,
.tileunit .fieldsetwrap .header-text,
.tileunit .fieldsetwrap .lead-h2,
.tileunit .fieldsetwrap .main-heading,
.tileunit .fieldsetwrap .page-h,
.tileunit .fieldsetwrap .section-h,
.tileunit .fieldsetwrap .section-heading,
.tileunit .fieldsetwrap .topic-title {
    margin-bottom: 25px;
  }
}
.tileunit .card-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0 50px;
  border-bottom: 1px solid #ff6900;
  position: relative;
}
.tileunit .card-wrap:hover img {
  opacity: 1;
  transform: rotate(15deg) translateY(0);
}
.tileunit .card-wrap:first-child {
  border-top: 1px solid #ff6900;
}
@media (max-width: 992px) {
  .tileunit .card-wrap {
    display: block;
    padding: 20px 0 30px;
  }
}
.tileunit .card-wrap .rootbox .radio-card-title {
  margin-bottom: 6px;
}
.tileunit .card-wrap .rootbox .partwrapbox {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tileunit .card-wrap .rootbox {
    margin-bottom: 20px;
  }
}
.tileunit .card-wrap img {
  position: absolute;
  right: 20%;
  opacity: 0;
  width: 250px;
  height: 350px;
  object-fit: cover;
  transform: rotate(15deg) translateY(10px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .tileunit .card-wrap img {
    display: none;
  }
}.tileunit .block-title,
.tileunit .chapter-title,
.tileunit .header-text,
.tileunit .lead-h2,
.tileunit .main-heading,
.tileunit .page-h,
.tileunit .section-h,
.tileunit .section-heading,
.tileunit .topic-title {
  color: #111827;
}
.tileunit .radio-card-title {
  color: #111827;
}
.tileunit .partwrapbox {
  color: #111827;
}.tileunit .block-title,
.tileunit .chapter-title,
.tileunit .header-text,
.tileunit .lead-h2,
.tileunit .main-heading,
.tileunit .page-h,
.tileunit .section-h,
.tileunit .section-heading,
.tileunit .topic-title,
.tileunit .icon-wrapper {
  color: #111111;
}
.patch {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.patch .shellwrap {
  margin: 0 -32px;
  justify-content: center;
}
.patch .shellwrap .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .patch .fieldsetwrap {
    margin-bottom: 48px;
  }
}.patch .fieldsetwrap .block-title,
.patch .fieldsetwrap .chapter-title,
.patch .fieldsetwrap .header-text,
.patch .fieldsetwrap .lead-h2,
.patch .fieldsetwrap .main-heading,
.patch .fieldsetwrap .page-h,
.patch .fieldsetwrap .section-h,
.patch .fieldsetwrap .section-heading,
.patch .fieldsetwrap .topic-title {
  margin-bottom: 24px;
}
.patch .fieldsetwrap .text-wrapper .domtrack {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .patch .fieldsetwrap .text-wrapper .domtrack {
    width: 100%;
  }
}
.patch .boxlayer img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .patch .boxlayer img {
    height: 350px;
  }
}.patch .block-title,
.patch .chapter-title,
.patch .header-text,
.patch .lead-h2,
.patch .main-heading,
.patch .page-h,
.patch .section-h,
.patch .section-heading,
.patch .topic-title {
  color: #374151;
}
.patch .domtrack,
.patch .text-wrapper {
  color: #000000;
}.patch .block-title,
.patch .chapter-title,
.patch .header-text,
.patch .lead-h2,
.patch .main-heading,
.patch .page-h,
.patch .section-h,
.patch .section-heading,
.patch .topic-title,
.patch .block-action,
.patch .cta-link,
.patch .lead-btn,
.patch .main-btn,
.patch .primary-cta,
.patch .section-action {
  text-align: left;
  color: #111111;
}
.headwrap {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.headwrap .card-wrapper {
  padding: 60px 60px 0 60px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff, 1px 0 10px -5px #6b7280;
  overflow: hidden;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper {
    padding: 20px 20px 0 20px;
  }
}
.headwrap .card-wrapper .pack {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack {
    margin-bottom: 40px;
  }
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .logo-wrapper img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  object-fit: cover;
}.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .block-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .chapter-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .header-text,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .lead-h2,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .main-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .page-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .topic-title {
  margin-bottom: 0;
}
.headwrap .card-wrapper .pack .text-wrapper .domtrack {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack .text-wrapper .domtrack {
    width: 100%;
  }
}.headwrap .card-wrapper .pack .block-action,
.headwrap .card-wrapper .pack .cta-link,
.headwrap .card-wrapper .pack .lead-btn,
.headwrap .card-wrapper .pack .main-btn,
.headwrap .card-wrapper .pack .primary-cta,
.headwrap .card-wrapper .pack .section-action {
  margin-top: 10px;
}
.headwrap .card-wrapper .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
    margin-bottom: 12px;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  width: fit-content;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff8b39;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #ff8b39;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  opacity: 1;
  transform: translateY(0);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
    margin-bottom: 0;
  }
}
.headwrap .card-wrapper .copy-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.headwrap .card-wrapper .copy-wrap .flowbox {
  position: absolute;
  top: 0;
  width: 1000%;
  height: 1px;
  background-color: #ffd900;
}
.headwrap .card-wrapper .copy-wrap .pagebox {
  width: 100%;
  margin-bottom: 0;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title {
  color: #0f172a;
}
.headwrap .domtrack,
.headwrap .text-wrapper {
  color: #000000;
}
.headwrap .radio-list-title {
  color: #c5a800;
  text-align: left;
}
.headwrap .list {
  color: #0f172a;
}
.headwrap .pagebox {
  color: #0f172a;
  text-align: left;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title,
.headwrap .block-action,
.headwrap .cta-link,
.headwrap .lead-btn,
.headwrap .main-btn,
.headwrap .primary-cta,
.headwrap .section-action,
.headwrap .fieldsetwrap {
  color: #ff6900;
}
.headwrap .list,
.headwrap .item-wrap {
  color: #000000;
}
.holdlayer {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .holdlayer .navbar-toggler {
    transform: scale(0.8);
  }
}
.holdlayer .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.holdlayer .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.holdlayer .navbar-brand .stepunit {
  line-height: inherit !important;
}
.holdlayer .navbar-brand .stepbox a {
  outline: none;
}
.holdlayer .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.holdlayer .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 12px 0 !important;
  margin: 0 24px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 10px !important;
    margin: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 3px !important;
  width: 0;
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #ffd900, #ffa464, #ff6900);
}
.holdlayer .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
.holdlayer .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .holdlayer .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.holdlayer .nav-link {
  width: fit-content;
  position: relative;
}
.holdlayer .stepbox {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.holdlayer .stepunit {
  padding-left: 1rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .stepunit {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.holdlayer .container,
.holdlayer .container-fluid {
  display: flex;
  min-height: 77px;
  padding: 0 8px 0 24px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 14px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    width: 95%;
    min-height: 60px;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }
}
.holdlayer .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .holdlayer .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.holdlayer .shiftbox {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0 1px 6px #eeeeee;
}
.holdlayer .shiftbox:first-child {
  margin-left: 0;
}
.holdlayer .shiftbox .radio-iconfont {
  font-size: 22px;
  color: #1a0b54 !important;
  transition: all .3s ease;
}
.holdlayer .shiftbox:hover .radio-iconfont {
  opacity: .6;
}
.holdlayer .nav-item:focus,
.holdlayer .nav-link:focus {
  outline: none;
}
.holdlayer .navbar {
  min-height: 77px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.holdlayer .navbar .stepbox img {
  width: auto;
}
.holdlayer .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .holdlayer .navbar {
    min-height: 72px;
  }
  .holdlayer .navbar .stepbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .holdlayer .navbar .nav-item .nav-link::before {
    display: none;
  }
  .holdlayer .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .holdlayer .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.holdlayer .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.holdlayer ul.navbar-nav {
  flex-wrap: wrap;
}
.holdlayer .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .holdlayer .navbar-buttons {
    text-align: left;
  }
}
.holdlayer button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.holdlayer .top-nav {
  padding: 0 1rem;
}
.holdlayer a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .holdlayer .navbar {
    height: 77px;
  }
  .holdlayer .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.holdlayer .block-action,
.holdlayer .cta-link,
.holdlayer .lead-btn,
.holdlayer .main-btn,
.holdlayer .primary-cta,
.holdlayer .section-action {
  margin: -0.6rem -0.6rem;
}.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
  white-space: nowrap;
  width: auto;
}
@media (max-width: 575px) {.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
    width: auto !important;
  }
}
.holdlayer .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .holdlayer .navbar-brand {
    margin-right: auto;
  }
  .holdlayer .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    backdrop-filter: blur(8px);
  }
  .holdlayer .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .holdlayer .navbar-collapse {
    padding: 1rem;
  }
}
.patternunit {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-color: #fafafa;
}
.patternunit .row {
  align-items: center;
}.patternunit .block-subtitle,
.patternunit .h-secondary,
.patternunit .lead-sub,
.patternunit .section-sub,
.patternunit .section-tag,
.patternunit .sub-heading,
.patternunit .subtitle-text,
.patternunit .tagline-h {
  color: #ff6900;
  padding-bottom: 18px;
  font-weight: 600;
  text-transform: uppercase;
}.patternunit .block-title,
.patternunit .chapter-title,
.patternunit .header-text,
.patternunit .lead-h2,
.patternunit .main-heading,
.patternunit .page-h,
.patternunit .section-h,
.patternunit .section-heading,
.patternunit .topic-title {
  padding-bottom: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #111111;
}
.patternunit .first {
  padding-bottom: 30px;
}
.patternunit .left-side {
  padding-left: 150px;
  z-index: 3;
}
.patternunit .nodemap {
  padding-right: 100px;
  margin-left: 50%;
  position: absolute;
}
.patternunit .domtrack {
  color: #374151;
}
.patternunit img {
  max-width: 500px;
}
@media (max-width: 750px) {
  .patternunit .left-side {
    padding-left: 15px;
    position: initial;
    width: 100%;
    z-index: 3;
    margin-bottom: 30px;
  }
  .patternunit .nodemap {
    padding-right: 15px;
    margin-left: 0%;
    position: initial;
  }
}
.patternunit .domtrack {
  color: #000000;
}
.levelwrap {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.levelwrap .img-wrap {
  position: relative;
}
.levelwrap .img-wrap img {
  width: 100%;
}
.levelwrap .img-wrap .icon-label {
  padding: 19px;
  left: auto;
  top: 0;
  right: 0;
  bottom: auto;
  background-color: #ffffff;
  z-index: 100;
  position: absolute;
}
.levelwrap .img-wrap .icon-label .radio-iconfont {
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}
@media (max-width: 768px) {
  .levelwrap .img-wrap .icon-label {
    left: 0;
    top: auto;
    right: auto;
    bottom: 0;
  }
}.levelwrap .block-title,
.levelwrap .chapter-title,
.levelwrap .header-text,
.levelwrap .lead-h2,
.levelwrap .main-heading,
.levelwrap .page-h,
.levelwrap .section-h,
.levelwrap .section-heading,
.levelwrap .topic-title {
  color: #ffffff;
}.levelwrap .block-title span,
.levelwrap .chapter-title span,
.levelwrap .header-text span,
.levelwrap .lead-h2 span,
.levelwrap .main-heading span,
.levelwrap .page-h span,
.levelwrap .section-h span,
.levelwrap .section-heading span,
.levelwrap .topic-title span {
  line-height: 1;
  color: #111111;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ffffff;
  background: linear-gradient(#ffffff 0%, #ffd900 69%, #ff6900 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}.levelwrap .block-subtitle,
.levelwrap .h-secondary,
.levelwrap .lead-sub,
.levelwrap .section-sub,
.levelwrap .section-tag,
.levelwrap .sub-heading,
.levelwrap .subtitle-text,
.levelwrap .tagline-h {
  color: #000000;
}.levelwrap .block-subtitle.domlayer,
.levelwrap .h-secondary.domlayer,
.levelwrap .lead-sub.domlayer,
.levelwrap .section-sub.domlayer,
.levelwrap .section-tag.domlayer,
.levelwrap .sub-heading.domlayer,
.levelwrap .subtitle-text.domlayer,
.levelwrap .tagline-h.domlayer {
  letter-spacing: 0;
}
.levelwrap .text-blocks .domtrack {
  color: #ffffff;
}
.levelwrap a:not([href]):not([tabindex]) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .levelwrap h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .levelwrap .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .levelwrap .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}.levelwrap .block-title,
.levelwrap .chapter-title,
.levelwrap .header-text,
.levelwrap .lead-h2,
.levelwrap .main-heading,
.levelwrap .page-h,
.levelwrap .section-h,
.levelwrap .section-heading,
.levelwrap .topic-title {
  color: #111111;
}
.levelwrap .text-blocks .domtrack {
  text-align: justify;
  color: #000000;
}
.gridblock {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.gridblock .card-wrapper {
  background-color: #ffffff;
  padding: 1rem 2rem;
}
.gridblock .foldbox {
  max-width: 800px;
}
.gridblock .card-title,
.gridblock .shiftbox {
  color: #ff6900;
}.gridblock .card-text,
.gridblock .block-action,
.gridblock .cta-link,
.gridblock .lead-btn,
.gridblock .main-btn,
.gridblock .primary-cta,
.gridblock .section-action {
  color: #374151;
}
.gridblock .partwrapbox {
  color: #374151;
}.gridblock .block-title,
.gridblock .chapter-title,
.gridblock .header-text,
.gridblock .lead-h2,
.gridblock .main-heading,
.gridblock .page-h,
.gridblock .section-h,
.gridblock .section-heading,
.gridblock .topic-title {
  color: #111111;
}
.headwrap {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.headwrap .card-wrapper {
  padding: 60px 60px 0 60px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff, 1px 0 10px -5px #6b7280;
  overflow: hidden;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper {
    padding: 20px 20px 0 20px;
  }
}
.headwrap .card-wrapper .pack {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack {
    margin-bottom: 40px;
  }
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .logo-wrapper img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  object-fit: cover;
}.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .block-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .chapter-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .header-text,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .lead-h2,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .main-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .page-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .topic-title {
  margin-bottom: 0;
}
.headwrap .card-wrapper .pack .text-wrapper .domtrack {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack .text-wrapper .domtrack {
    width: 100%;
  }
}.headwrap .card-wrapper .pack .block-action,
.headwrap .card-wrapper .pack .cta-link,
.headwrap .card-wrapper .pack .lead-btn,
.headwrap .card-wrapper .pack .main-btn,
.headwrap .card-wrapper .pack .primary-cta,
.headwrap .card-wrapper .pack .section-action {
  margin-top: 10px;
}
.headwrap .card-wrapper .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
    margin-bottom: 12px;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  width: fit-content;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff8b39;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #ff8b39;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  opacity: 1;
  transform: translateY(0);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
    margin-bottom: 0;
  }
}
.headwrap .card-wrapper .copy-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.headwrap .card-wrapper .copy-wrap .flowbox {
  position: absolute;
  top: 0;
  width: 1000%;
  height: 1px;
  background-color: #ffd900;
}
.headwrap .card-wrapper .copy-wrap .pagebox {
  width: 100%;
  margin-bottom: 0;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title {
  color: #0f172a;
}
.headwrap .domtrack,
.headwrap .text-wrapper {
  color: #000000;
}
.headwrap .radio-list-title {
  color: #c5a800;
  text-align: left;
}
.headwrap .list {
  color: #0f172a;
}
.headwrap .pagebox {
  color: #0f172a;
  text-align: left;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title,
.headwrap .block-action,
.headwrap .cta-link,
.headwrap .lead-btn,
.headwrap .main-btn,
.headwrap .primary-cta,
.headwrap .section-action,
.headwrap .fieldsetwrap {
  color: #ff6900;
}
.headwrap .list,
.headwrap .item-wrap {
  color: #000000;
}
.holdlayer {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .holdlayer .navbar-toggler {
    transform: scale(0.8);
  }
}
.holdlayer .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.holdlayer .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.holdlayer .navbar-brand .stepunit {
  line-height: inherit !important;
}
.holdlayer .navbar-brand .stepbox a {
  outline: none;
}
.holdlayer .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.holdlayer .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 12px 0 !important;
  margin: 0 24px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 10px !important;
    margin: 0 !important;
  }
}
.holdlayer .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 3px !important;
  width: 0;
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #ffd900, #ffa464, #ff6900);
}
.holdlayer .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
.holdlayer .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .holdlayer .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.holdlayer .nav-link {
  width: fit-content;
  position: relative;
}
.holdlayer .stepbox {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.holdlayer .stepunit {
  padding-left: 1rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .holdlayer .stepunit {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.holdlayer .container,
.holdlayer .container-fluid {
  display: flex;
  min-height: 77px;
  padding: 0 8px 0 24px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 14px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .holdlayer .container,
  .holdlayer .container-fluid {
    width: 95%;
    min-height: 60px;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }
}
.holdlayer .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .holdlayer .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.holdlayer .shiftbox {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0 1px 6px #eeeeee;
}
.holdlayer .shiftbox:first-child {
  margin-left: 0;
}
.holdlayer .shiftbox .radio-iconfont {
  font-size: 22px;
  color: #1a0b54 !important;
  transition: all .3s ease;
}
.holdlayer .shiftbox:hover .radio-iconfont {
  opacity: .6;
}
.holdlayer .nav-item:focus,
.holdlayer .nav-link:focus {
  outline: none;
}
.holdlayer .navbar {
  min-height: 77px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.holdlayer .navbar .stepbox img {
  width: auto;
}
.holdlayer .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .holdlayer .navbar {
    min-height: 72px;
  }
  .holdlayer .navbar .stepbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .holdlayer .navbar .nav-item .nav-link::before {
    display: none;
  }
  .holdlayer .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .holdlayer .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.holdlayer .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.holdlayer ul.navbar-nav {
  flex-wrap: wrap;
}
.holdlayer .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .holdlayer .navbar-buttons {
    text-align: left;
  }
}
.holdlayer button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.holdlayer .top-nav {
  padding: 0 1rem;
}
.holdlayer a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .holdlayer .navbar {
    height: 77px;
  }
  .holdlayer .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.holdlayer .block-action,
.holdlayer .cta-link,
.holdlayer .lead-btn,
.holdlayer .main-btn,
.holdlayer .primary-cta,
.holdlayer .section-action {
  margin: -0.6rem -0.6rem;
}.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
  white-space: nowrap;
  width: auto;
}
@media (max-width: 575px) {.holdlayer .block-action .btn,
.holdlayer .cta-link .btn,
.holdlayer .lead-btn .btn,
.holdlayer .main-btn .btn,
.holdlayer .primary-cta .btn,
.holdlayer .section-action .btn {
    width: auto !important;
  }
}
.holdlayer .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .holdlayer .navbar-brand {
    margin-right: auto;
  }
  .holdlayer .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    backdrop-filter: blur(8px);
  }
  .holdlayer .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .holdlayer .navbar-collapse {
    padding: 1rem;
  }
}
.colbox {
  padding-top: 8rem;
  background-color: #fafafa;
}
.colbox .pack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;
}
.colbox .pack .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .colbox .pack .icon-wrapper {
    margin-bottom: 20px;
  }
}
.colbox .pack .icon-wrapper .radio-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6900;
  box-shadow: inset 0 2px 10px 0 #ffffff, 0 10px 10px -2px #c55200;
}.colbox .pack .fieldsetwrap .block-title,
.colbox .pack .fieldsetwrap .chapter-title,
.colbox .pack .fieldsetwrap .header-text,
.colbox .pack .fieldsetwrap .lead-h2,
.colbox .pack .fieldsetwrap .main-heading,
.colbox .pack .fieldsetwrap .page-h,
.colbox .pack .fieldsetwrap .section-h,
.colbox .pack .fieldsetwrap .section-heading,
.colbox .pack .fieldsetwrap .topic-title {
  margin-bottom: 16px;
}
.colbox .pack .fieldsetwrap .text-wrapper .domtrack {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .colbox .pack .fieldsetwrap .text-wrapper .domtrack {
    width: 100%;
  }
}.colbox .pack .fieldsetwrap .block-action,
.colbox .pack .fieldsetwrap .cta-link,
.colbox .pack .fieldsetwrap .lead-btn,
.colbox .pack .fieldsetwrap .main-btn,
.colbox .pack .fieldsetwrap .primary-cta,
.colbox .pack .fieldsetwrap .section-action {
  margin-top: 30px;
}
@media (max-width: 992px) {.colbox .pack .fieldsetwrap .block-action,
.colbox .pack .fieldsetwrap .cta-link,
.colbox .pack .fieldsetwrap .lead-btn,
.colbox .pack .fieldsetwrap .main-btn,
.colbox .pack .fieldsetwrap .primary-cta,
.colbox .pack .fieldsetwrap .section-action {
    margin-top: 10px;
  }
}.colbox .block-title,
.colbox .chapter-title,
.colbox .header-text,
.colbox .lead-h2,
.colbox .main-heading,
.colbox .page-h,
.colbox .section-h,
.colbox .section-heading,
.colbox .topic-title {
  color: #0f172a;
  text-align: center;
}
.colbox .domtrack,
.colbox .text-wrapper {
  color: #000000;
  text-align: center;
}.colbox .block-action,
.colbox .cta-link,
.colbox .lead-btn,
.colbox .main-btn,
.colbox .primary-cta,
.colbox .section-action,
.colbox .block-title,
.colbox .chapter-title,
.colbox .header-text,
.colbox .lead-h2,
.colbox .main-heading,
.colbox .page-h,
.colbox .section-h,
.colbox .section-heading,
.colbox .topic-title,
.colbox .icon-wrapper {
  text-align: center;
}.colbox .block-title,
.colbox .chapter-title,
.colbox .header-text,
.colbox .lead-h2,
.colbox .main-heading,
.colbox .page-h,
.colbox .section-h,
.colbox .section-heading,
.colbox .topic-title,
.colbox .block-action,
.colbox .cta-link,
.colbox .lead-btn,
.colbox .main-btn,
.colbox .primary-cta,
.colbox .section-action,
.colbox .icon-wrapper {
  color: #111111;
}
.band {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.band .right {
  display: flex;
  flex-direction: column;
}
.band .p {
  padding-bottom: 30px;
  color: #272727;
}
.band .row {
  justify-content: center;
}
.band a {
  font-weight: 600;
}
.band .quote {
  padding: 5px 0 5px 28px;
  color: #272727;
  border-left: 2px solid #111827;
}
.topbox {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.topbox .right {
  display: flex;
  flex-direction: column;
}
.topbox .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.topbox .row {
  justify-content: center;
}
.topbox a {
  font-weight: 600;
}
.topbox .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #ffffff;
}
@media (max-width: 760px) {
  .topbox .quote {
    padding: 15px;
  }
}
.headwrap {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.headwrap .card-wrapper {
  padding: 60px 60px 0 60px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff, 1px 0 10px -5px #6b7280;
  overflow: hidden;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper {
    padding: 20px 20px 0 20px;
  }
}
.headwrap .card-wrapper .pack {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack {
    margin-bottom: 40px;
  }
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .logo-wrapper img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  object-fit: cover;
}.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .block-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .chapter-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .header-text,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .lead-h2,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .main-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .page-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .topic-title {
  margin-bottom: 0;
}
.headwrap .card-wrapper .pack .text-wrapper .domtrack {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack .text-wrapper .domtrack {
    width: 100%;
  }
}.headwrap .card-wrapper .pack .block-action,
.headwrap .card-wrapper .pack .cta-link,
.headwrap .card-wrapper .pack .lead-btn,
.headwrap .card-wrapper .pack .main-btn,
.headwrap .card-wrapper .pack .primary-cta,
.headwrap .card-wrapper .pack .section-action {
  margin-top: 10px;
}
.headwrap .card-wrapper .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
    margin-bottom: 12px;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  width: fit-content;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff8b39;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #ff8b39;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  opacity: 1;
  transform: translateY(0);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
    margin-bottom: 0;
  }
}
.headwrap .card-wrapper .copy-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.headwrap .card-wrapper .copy-wrap .flowbox {
  position: absolute;
  top: 0;
  width: 1000%;
  height: 1px;
  background-color: #ffd900;
}
.headwrap .card-wrapper .copy-wrap .pagebox {
  width: 100%;
  margin-bottom: 0;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title {
  color: #0f172a;
}
.headwrap .domtrack,
.headwrap .text-wrapper {
  color: #000000;
}
.headwrap .radio-list-title {
  color: #c5a800;
  text-align: left;
}
.headwrap .list {
  color: #0f172a;
}
.headwrap .pagebox {
  color: #0f172a;
  text-align: left;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title,
.headwrap .block-action,
.headwrap .cta-link,
.headwrap .lead-btn,
.headwrap .main-btn,
.headwrap .primary-cta,
.headwrap .section-action,
.headwrap .fieldsetwrap {
  color: #ff6900;
}
.headwrap .list,
.headwrap .item-wrap {
  color: #000000;
}
.stagewrap {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .stagewrap .navbar-toggler {
    transform: scale(0.8);
  }
}
.stagewrap .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.stagewrap .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.stagewrap .navbar-brand .stepunit {
  line-height: inherit !important;
}
.stagewrap .navbar-brand .stepbox a {
  outline: none;
}
.stagewrap .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.stagewrap .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .stagewrap .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.stagewrap .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 12px 0 !important;
  margin: 0 24px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .stagewrap .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 10px !important;
    margin: 0 !important;
  }
}
.stagewrap .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 3px !important;
  width: 0;
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #ffd900, #ffa464, #ff6900);
}
.stagewrap .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
.stagewrap .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .stagewrap .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.stagewrap .nav-link {
  width: fit-content;
  position: relative;
}
.stagewrap .stepbox {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.stagewrap .stepunit {
  padding-left: 1rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .stagewrap .stepunit {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .stagewrap .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.stagewrap .container,
.stagewrap .container-fluid {
  display: flex;
  min-height: 77px;
  padding: 0 8px 0 24px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 14px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .stagewrap .container,
  .stagewrap .container-fluid {
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .stagewrap .container,
  .stagewrap .container-fluid {
    width: 95%;
    min-height: 60px;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }
}
.stagewrap .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .stagewrap .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.stagewrap .shiftbox {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0 1px 6px #eeeeee;
}
.stagewrap .shiftbox:first-child {
  margin-left: 0;
}
.stagewrap .shiftbox .radio-iconfont {
  font-size: 22px;
  color: #1a0b54 !important;
  transition: all .3s ease;
}
.stagewrap .shiftbox:hover .radio-iconfont {
  opacity: .6;
}
.stagewrap .nav-item:focus,
.stagewrap .nav-link:focus {
  outline: none;
}
.stagewrap .navbar {
  min-height: 77px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.stagewrap .navbar .stepbox img {
  width: auto;
}
.stagewrap .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .stagewrap .navbar {
    min-height: 72px;
  }
  .stagewrap .navbar .stepbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .stagewrap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .stagewrap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .stagewrap .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.stagewrap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.stagewrap ul.navbar-nav {
  flex-wrap: wrap;
}
.stagewrap .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .stagewrap .navbar-buttons {
    text-align: left;
  }
}
.stagewrap button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.stagewrap .top-nav {
  padding: 0 1rem;
}
.stagewrap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .stagewrap .navbar {
    height: 77px;
  }
  .stagewrap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.stagewrap .block-action,
.stagewrap .cta-link,
.stagewrap .lead-btn,
.stagewrap .main-btn,
.stagewrap .primary-cta,
.stagewrap .section-action {
  margin: -0.6rem -0.6rem;
}.stagewrap .block-action .btn,
.stagewrap .cta-link .btn,
.stagewrap .lead-btn .btn,
.stagewrap .main-btn .btn,
.stagewrap .primary-cta .btn,
.stagewrap .section-action .btn {
  white-space: nowrap;
  width: auto;
}
@media (max-width: 575px) {.stagewrap .block-action .btn,
.stagewrap .cta-link .btn,
.stagewrap .lead-btn .btn,
.stagewrap .main-btn .btn,
.stagewrap .primary-cta .btn,
.stagewrap .section-action .btn {
    width: auto !important;
  }
}
.stagewrap .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .stagewrap .navbar-brand {
    margin-right: auto;
  }
  .stagewrap .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    backdrop-filter: blur(8px);
  }
  .stagewrap .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .stagewrap .navbar-collapse {
    padding: 1rem;
  }
}
.bodyunit {
  padding-top: 8rem;
  background-color: #fafafa;
}
.bodyunit .pack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;
}
.bodyunit .pack .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .bodyunit .pack .icon-wrapper {
    margin-bottom: 20px;
  }
}
.bodyunit .pack .icon-wrapper .radio-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6900;
  box-shadow: inset 0 2px 10px 0 #ffffff, 0 10px 10px -2px #c55200;
}.bodyunit .pack .fieldsetwrap .block-title,
.bodyunit .pack .fieldsetwrap .chapter-title,
.bodyunit .pack .fieldsetwrap .header-text,
.bodyunit .pack .fieldsetwrap .lead-h2,
.bodyunit .pack .fieldsetwrap .main-heading,
.bodyunit .pack .fieldsetwrap .page-h,
.bodyunit .pack .fieldsetwrap .section-h,
.bodyunit .pack .fieldsetwrap .section-heading,
.bodyunit .pack .fieldsetwrap .topic-title {
  margin-bottom: 16px;
}
.bodyunit .pack .fieldsetwrap .text-wrapper .domtrack {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .bodyunit .pack .fieldsetwrap .text-wrapper .domtrack {
    width: 100%;
  }
}.bodyunit .pack .fieldsetwrap .block-action,
.bodyunit .pack .fieldsetwrap .cta-link,
.bodyunit .pack .fieldsetwrap .lead-btn,
.bodyunit .pack .fieldsetwrap .main-btn,
.bodyunit .pack .fieldsetwrap .primary-cta,
.bodyunit .pack .fieldsetwrap .section-action {
  margin-top: 30px;
}
@media (max-width: 992px) {.bodyunit .pack .fieldsetwrap .block-action,
.bodyunit .pack .fieldsetwrap .cta-link,
.bodyunit .pack .fieldsetwrap .lead-btn,
.bodyunit .pack .fieldsetwrap .main-btn,
.bodyunit .pack .fieldsetwrap .primary-cta,
.bodyunit .pack .fieldsetwrap .section-action {
    margin-top: 10px;
  }
}.bodyunit .block-title,
.bodyunit .chapter-title,
.bodyunit .header-text,
.bodyunit .lead-h2,
.bodyunit .main-heading,
.bodyunit .page-h,
.bodyunit .section-h,
.bodyunit .section-heading,
.bodyunit .topic-title {
  color: #0f172a;
  text-align: center;
}
.bodyunit .domtrack,
.bodyunit .text-wrapper {
  color: #000000;
  text-align: center;
}.bodyunit .block-action,
.bodyunit .cta-link,
.bodyunit .lead-btn,
.bodyunit .main-btn,
.bodyunit .primary-cta,
.bodyunit .section-action,
.bodyunit .block-title,
.bodyunit .chapter-title,
.bodyunit .header-text,
.bodyunit .lead-h2,
.bodyunit .main-heading,
.bodyunit .page-h,
.bodyunit .section-h,
.bodyunit .section-heading,
.bodyunit .topic-title,
.bodyunit .icon-wrapper {
  text-align: center;
}.bodyunit .block-title,
.bodyunit .chapter-title,
.bodyunit .header-text,
.bodyunit .lead-h2,
.bodyunit .main-heading,
.bodyunit .page-h,
.bodyunit .section-h,
.bodyunit .section-heading,
.bodyunit .topic-title,
.bodyunit .block-action,
.bodyunit .cta-link,
.bodyunit .lead-btn,
.bodyunit .main-btn,
.bodyunit .primary-cta,
.bodyunit .section-action,
.bodyunit .icon-wrapper {
  color: #111111;
}
.areawrap {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.areawrap .right {
  display: flex;
  flex-direction: column;
}
.areawrap .p {
  padding-bottom: 30px;
  color: #272727;
}
.areawrap .row {
  justify-content: center;
}
.areawrap a {
  font-weight: 600;
}
.areawrap .quote {
  padding: 5px 0 5px 28px;
  color: #272727;
  border-left: 2px solid #111827;
}
.tailbox {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.tailbox .right {
  display: flex;
  flex-direction: column;
}
.tailbox .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.tailbox .row {
  justify-content: center;
}
.tailbox a {
  font-weight: 600;
}
.tailbox .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #ffffff;
}
@media (max-width: 760px) {
  .tailbox .quote {
    padding: 15px;
  }
}
.headwrap {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.headwrap .card-wrapper {
  padding: 60px 60px 0 60px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff, 1px 0 10px -5px #6b7280;
  overflow: hidden;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper {
    padding: 20px 20px 0 20px;
  }
}
.headwrap .card-wrapper .pack {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack {
    margin-bottom: 40px;
  }
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .logo-wrapper img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  object-fit: cover;
}.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .block-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .chapter-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .header-text,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .lead-h2,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .main-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .page-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .topic-title {
  margin-bottom: 0;
}
.headwrap .card-wrapper .pack .text-wrapper .domtrack {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack .text-wrapper .domtrack {
    width: 100%;
  }
}.headwrap .card-wrapper .pack .block-action,
.headwrap .card-wrapper .pack .cta-link,
.headwrap .card-wrapper .pack .lead-btn,
.headwrap .card-wrapper .pack .main-btn,
.headwrap .card-wrapper .pack .primary-cta,
.headwrap .card-wrapper .pack .section-action {
  margin-top: 10px;
}
.headwrap .card-wrapper .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
    margin-bottom: 12px;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  width: fit-content;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff8b39;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #ff8b39;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  opacity: 1;
  transform: translateY(0);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
    margin-bottom: 0;
  }
}
.headwrap .card-wrapper .copy-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.headwrap .card-wrapper .copy-wrap .flowbox {
  position: absolute;
  top: 0;
  width: 1000%;
  height: 1px;
  background-color: #ffd900;
}
.headwrap .card-wrapper .copy-wrap .pagebox {
  width: 100%;
  margin-bottom: 0;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title {
  color: #0f172a;
}
.headwrap .domtrack,
.headwrap .text-wrapper {
  color: #000000;
}
.headwrap .radio-list-title {
  color: #c5a800;
  text-align: left;
}
.headwrap .list {
  color: #0f172a;
}
.headwrap .pagebox {
  color: #0f172a;
  text-align: left;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title,
.headwrap .block-action,
.headwrap .cta-link,
.headwrap .lead-btn,
.headwrap .main-btn,
.headwrap .primary-cta,
.headwrap .section-action,
.headwrap .fieldsetwrap {
  color: #ff6900;
}
.headwrap .list,
.headwrap .item-wrap {
  color: #000000;
}
.zonecore {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .zonecore .navbar-toggler {
    transform: scale(0.8);
  }
}
.zonecore .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.zonecore .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.zonecore .navbar-brand .stepunit {
  line-height: inherit !important;
}
.zonecore .navbar-brand .stepbox a {
  outline: none;
}
.zonecore .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.zonecore .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .zonecore .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.zonecore .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 12px 0 !important;
  margin: 0 24px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .zonecore .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 10px !important;
    margin: 0 !important;
  }
}
.zonecore .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 3px !important;
  width: 0;
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #ffd900, #ffa464, #ff6900);
}
.zonecore .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
.zonecore .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .zonecore .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.zonecore .nav-link {
  width: fit-content;
  position: relative;
}
.zonecore .stepbox {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.zonecore .stepunit {
  padding-left: 1rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .zonecore .stepunit {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .zonecore .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.zonecore .container,
.zonecore .container-fluid {
  display: flex;
  min-height: 77px;
  padding: 0 8px 0 24px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 14px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .zonecore .container,
  .zonecore .container-fluid {
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .zonecore .container,
  .zonecore .container-fluid {
    width: 95%;
    min-height: 60px;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }
}
.zonecore .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .zonecore .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.zonecore .shiftbox {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0 1px 6px #eeeeee;
}
.zonecore .shiftbox:first-child {
  margin-left: 0;
}
.zonecore .shiftbox .radio-iconfont {
  font-size: 22px;
  color: #1a0b54 !important;
  transition: all .3s ease;
}
.zonecore .shiftbox:hover .radio-iconfont {
  opacity: .6;
}
.zonecore .nav-item:focus,
.zonecore .nav-link:focus {
  outline: none;
}
.zonecore .navbar {
  min-height: 77px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.zonecore .navbar .stepbox img {
  width: auto;
}
.zonecore .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .zonecore .navbar {
    min-height: 72px;
  }
  .zonecore .navbar .stepbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .zonecore .navbar .nav-item .nav-link::before {
    display: none;
  }
  .zonecore .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .zonecore .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.zonecore .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.zonecore ul.navbar-nav {
  flex-wrap: wrap;
}
.zonecore .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .zonecore .navbar-buttons {
    text-align: left;
  }
}
.zonecore button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.zonecore .top-nav {
  padding: 0 1rem;
}
.zonecore a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .zonecore .navbar {
    height: 77px;
  }
  .zonecore .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.zonecore .block-action,
.zonecore .cta-link,
.zonecore .lead-btn,
.zonecore .main-btn,
.zonecore .primary-cta,
.zonecore .section-action {
  margin: -0.6rem -0.6rem;
}.zonecore .block-action .btn,
.zonecore .cta-link .btn,
.zonecore .lead-btn .btn,
.zonecore .main-btn .btn,
.zonecore .primary-cta .btn,
.zonecore .section-action .btn {
  white-space: nowrap;
  width: auto;
}
@media (max-width: 575px) {.zonecore .block-action .btn,
.zonecore .cta-link .btn,
.zonecore .lead-btn .btn,
.zonecore .main-btn .btn,
.zonecore .primary-cta .btn,
.zonecore .section-action .btn {
    width: auto !important;
  }
}
.zonecore .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .zonecore .navbar-brand {
    margin-right: auto;
  }
  .zonecore .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    backdrop-filter: blur(8px);
  }
  .zonecore .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .zonecore .navbar-collapse {
    padding: 1rem;
  }
}
.flexunit {
  padding-top: 8rem;
  background-color: #fafafa;
}
.flexunit .pack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;
}
.flexunit .pack .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .flexunit .pack .icon-wrapper {
    margin-bottom: 20px;
  }
}
.flexunit .pack .icon-wrapper .radio-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6900;
  box-shadow: inset 0 2px 10px 0 #ffffff, 0 10px 10px -2px #c55200;
}.flexunit .pack .fieldsetwrap .block-title,
.flexunit .pack .fieldsetwrap .chapter-title,
.flexunit .pack .fieldsetwrap .header-text,
.flexunit .pack .fieldsetwrap .lead-h2,
.flexunit .pack .fieldsetwrap .main-heading,
.flexunit .pack .fieldsetwrap .page-h,
.flexunit .pack .fieldsetwrap .section-h,
.flexunit .pack .fieldsetwrap .section-heading,
.flexunit .pack .fieldsetwrap .topic-title {
  margin-bottom: 16px;
}
.flexunit .pack .fieldsetwrap .text-wrapper .domtrack {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .flexunit .pack .fieldsetwrap .text-wrapper .domtrack {
    width: 100%;
  }
}.flexunit .pack .fieldsetwrap .block-action,
.flexunit .pack .fieldsetwrap .cta-link,
.flexunit .pack .fieldsetwrap .lead-btn,
.flexunit .pack .fieldsetwrap .main-btn,
.flexunit .pack .fieldsetwrap .primary-cta,
.flexunit .pack .fieldsetwrap .section-action {
  margin-top: 30px;
}
@media (max-width: 992px) {.flexunit .pack .fieldsetwrap .block-action,
.flexunit .pack .fieldsetwrap .cta-link,
.flexunit .pack .fieldsetwrap .lead-btn,
.flexunit .pack .fieldsetwrap .main-btn,
.flexunit .pack .fieldsetwrap .primary-cta,
.flexunit .pack .fieldsetwrap .section-action {
    margin-top: 10px;
  }
}.flexunit .block-title,
.flexunit .chapter-title,
.flexunit .header-text,
.flexunit .lead-h2,
.flexunit .main-heading,
.flexunit .page-h,
.flexunit .section-h,
.flexunit .section-heading,
.flexunit .topic-title {
  color: #0f172a;
  text-align: center;
}
.flexunit .domtrack,
.flexunit .text-wrapper {
  color: #000000;
  text-align: center;
}.flexunit .block-action,
.flexunit .cta-link,
.flexunit .lead-btn,
.flexunit .main-btn,
.flexunit .primary-cta,
.flexunit .section-action,
.flexunit .block-title,
.flexunit .chapter-title,
.flexunit .header-text,
.flexunit .lead-h2,
.flexunit .main-heading,
.flexunit .page-h,
.flexunit .section-h,
.flexunit .section-heading,
.flexunit .topic-title,
.flexunit .icon-wrapper {
  text-align: center;
}.flexunit .block-title,
.flexunit .chapter-title,
.flexunit .header-text,
.flexunit .lead-h2,
.flexunit .main-heading,
.flexunit .page-h,
.flexunit .section-h,
.flexunit .section-heading,
.flexunit .topic-title,
.flexunit .block-action,
.flexunit .cta-link,
.flexunit .lead-btn,
.flexunit .main-btn,
.flexunit .primary-cta,
.flexunit .section-action,
.flexunit .icon-wrapper {
  color: #111111;
}
.boxbridge {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.boxbridge .right {
  display: flex;
  flex-direction: column;
}
.boxbridge .p {
  padding-bottom: 30px;
  color: #272727;
}
.boxbridge .row {
  justify-content: center;
}
.boxbridge a {
  font-weight: 600;
}
.boxbridge .quote {
  padding: 5px 0 5px 28px;
  color: #272727;
  border-left: 2px solid #111827;
}
.domwrap {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.domwrap .right {
  display: flex;
  flex-direction: column;
}
.domwrap .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.domwrap .row {
  justify-content: center;
}
.domwrap a {
  font-weight: 600;
}
.domwrap .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #ffffff;
}
@media (max-width: 760px) {
  .domwrap .quote {
    padding: 15px;
  }
}
.headwrap {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.headwrap .card-wrapper {
  padding: 60px 60px 0 60px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff, 1px 0 10px -5px #6b7280;
  overflow: hidden;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper {
    padding: 20px 20px 0 20px;
  }
}
.headwrap .card-wrapper .pack {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack {
    margin-bottom: 40px;
  }
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .logo-wrapper img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  object-fit: cover;
}.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .block-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .chapter-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .header-text,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .lead-h2,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .main-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .page-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .topic-title {
  margin-bottom: 0;
}
.headwrap .card-wrapper .pack .text-wrapper .domtrack {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack .text-wrapper .domtrack {
    width: 100%;
  }
}.headwrap .card-wrapper .pack .block-action,
.headwrap .card-wrapper .pack .cta-link,
.headwrap .card-wrapper .pack .lead-btn,
.headwrap .card-wrapper .pack .main-btn,
.headwrap .card-wrapper .pack .primary-cta,
.headwrap .card-wrapper .pack .section-action {
  margin-top: 10px;
}
.headwrap .card-wrapper .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
    margin-bottom: 12px;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  width: fit-content;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff8b39;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #ff8b39;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  opacity: 1;
  transform: translateY(0);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
    margin-bottom: 0;
  }
}
.headwrap .card-wrapper .copy-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.headwrap .card-wrapper .copy-wrap .flowbox {
  position: absolute;
  top: 0;
  width: 1000%;
  height: 1px;
  background-color: #ffd900;
}
.headwrap .card-wrapper .copy-wrap .pagebox {
  width: 100%;
  margin-bottom: 0;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title {
  color: #0f172a;
}
.headwrap .domtrack,
.headwrap .text-wrapper {
  color: #000000;
}
.headwrap .radio-list-title {
  color: #c5a800;
  text-align: left;
}
.headwrap .list {
  color: #0f172a;
}
.headwrap .pagebox {
  color: #0f172a;
  text-align: left;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title,
.headwrap .block-action,
.headwrap .cta-link,
.headwrap .lead-btn,
.headwrap .main-btn,
.headwrap .primary-cta,
.headwrap .section-action,
.headwrap .fieldsetwrap {
  color: #ff6900;
}
.headwrap .list,
.headwrap .item-wrap {
  color: #000000;
}
.rowgrid {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .rowgrid .navbar-toggler {
    transform: scale(0.8);
  }
}
.rowgrid .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.rowgrid .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.rowgrid .navbar-brand .stepunit {
  line-height: inherit !important;
}
.rowgrid .navbar-brand .stepbox a {
  outline: none;
}
.rowgrid .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.rowgrid .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .rowgrid .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.rowgrid .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 12px 0 !important;
  margin: 0 24px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .rowgrid .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 10px !important;
    margin: 0 !important;
  }
}
.rowgrid .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 3px !important;
  width: 0;
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #ffd900, #ffa464, #ff6900);
}
.rowgrid .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
.rowgrid .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .rowgrid .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.rowgrid .nav-link {
  width: fit-content;
  position: relative;
}
.rowgrid .stepbox {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.rowgrid .stepunit {
  padding-left: 1rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .rowgrid .stepunit {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .rowgrid .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.rowgrid .container,
.rowgrid .container-fluid {
  display: flex;
  min-height: 77px;
  padding: 0 8px 0 24px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 14px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .rowgrid .container,
  .rowgrid .container-fluid {
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .rowgrid .container,
  .rowgrid .container-fluid {
    width: 95%;
    min-height: 60px;
    padding-right: 1rem;
    margin-top: 0.5rem;
  }
}
.rowgrid .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .rowgrid .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.rowgrid .shiftbox {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0 1px 6px #eeeeee;
}
.rowgrid .shiftbox:first-child {
  margin-left: 0;
}
.rowgrid .shiftbox .radio-iconfont {
  font-size: 22px;
  color: #1a0b54 !important;
  transition: all .3s ease;
}
.rowgrid .shiftbox:hover .radio-iconfont {
  opacity: .6;
}
.rowgrid .nav-item:focus,
.rowgrid .nav-link:focus {
  outline: none;
}
.rowgrid .navbar {
  min-height: 77px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.rowgrid .navbar .stepbox img {
  width: auto;
}
.rowgrid .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .rowgrid .navbar {
    min-height: 72px;
  }
  .rowgrid .navbar .stepbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .rowgrid .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rowgrid .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .rowgrid .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rowgrid .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rowgrid ul.navbar-nav {
  flex-wrap: wrap;
}
.rowgrid .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .rowgrid .navbar-buttons {
    text-align: left;
  }
}
.rowgrid button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.rowgrid .top-nav {
  padding: 0 1rem;
}
.rowgrid a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rowgrid .navbar {
    height: 77px;
  }
  .rowgrid .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.rowgrid .block-action,
.rowgrid .cta-link,
.rowgrid .lead-btn,
.rowgrid .main-btn,
.rowgrid .primary-cta,
.rowgrid .section-action {
  margin: -0.6rem -0.6rem;
}.rowgrid .block-action .btn,
.rowgrid .cta-link .btn,
.rowgrid .lead-btn .btn,
.rowgrid .main-btn .btn,
.rowgrid .primary-cta .btn,
.rowgrid .section-action .btn {
  white-space: nowrap;
  width: auto;
}
@media (max-width: 575px) {.rowgrid .block-action .btn,
.rowgrid .cta-link .btn,
.rowgrid .lead-btn .btn,
.rowgrid .main-btn .btn,
.rowgrid .primary-cta .btn,
.rowgrid .section-action .btn {
    width: auto !important;
  }
}
.rowgrid .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .rowgrid .navbar-brand {
    margin-right: auto;
  }
  .rowgrid .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    backdrop-filter: blur(8px);
  }
  .rowgrid .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .rowgrid .navbar-collapse {
    padding: 1rem;
  }
}
.slotwrap {
  padding-top: 8rem;
  background-color: #fafafa;
}
.slotwrap .pack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;
}
.slotwrap .pack .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .slotwrap .pack .icon-wrapper {
    margin-bottom: 20px;
  }
}
.slotwrap .pack .icon-wrapper .radio-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6900;
  box-shadow: inset 0 2px 10px 0 #ffffff, 0 10px 10px -2px #c55200;
}.slotwrap .pack .fieldsetwrap .block-title,
.slotwrap .pack .fieldsetwrap .chapter-title,
.slotwrap .pack .fieldsetwrap .header-text,
.slotwrap .pack .fieldsetwrap .lead-h2,
.slotwrap .pack .fieldsetwrap .main-heading,
.slotwrap .pack .fieldsetwrap .page-h,
.slotwrap .pack .fieldsetwrap .section-h,
.slotwrap .pack .fieldsetwrap .section-heading,
.slotwrap .pack .fieldsetwrap .topic-title {
  margin-bottom: 16px;
}
.slotwrap .pack .fieldsetwrap .text-wrapper .domtrack {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .slotwrap .pack .fieldsetwrap .text-wrapper .domtrack {
    width: 100%;
  }
}.slotwrap .pack .fieldsetwrap .block-action,
.slotwrap .pack .fieldsetwrap .cta-link,
.slotwrap .pack .fieldsetwrap .lead-btn,
.slotwrap .pack .fieldsetwrap .main-btn,
.slotwrap .pack .fieldsetwrap .primary-cta,
.slotwrap .pack .fieldsetwrap .section-action {
  margin-top: 30px;
}
@media (max-width: 992px) {.slotwrap .pack .fieldsetwrap .block-action,
.slotwrap .pack .fieldsetwrap .cta-link,
.slotwrap .pack .fieldsetwrap .lead-btn,
.slotwrap .pack .fieldsetwrap .main-btn,
.slotwrap .pack .fieldsetwrap .primary-cta,
.slotwrap .pack .fieldsetwrap .section-action {
    margin-top: 10px;
  }
}.slotwrap .block-title,
.slotwrap .chapter-title,
.slotwrap .header-text,
.slotwrap .lead-h2,
.slotwrap .main-heading,
.slotwrap .page-h,
.slotwrap .section-h,
.slotwrap .section-heading,
.slotwrap .topic-title {
  color: #0f172a;
  text-align: center;
}
.slotwrap .domtrack,
.slotwrap .text-wrapper {
  color: #000000;
  text-align: center;
}.slotwrap .block-action,
.slotwrap .cta-link,
.slotwrap .lead-btn,
.slotwrap .main-btn,
.slotwrap .primary-cta,
.slotwrap .section-action,
.slotwrap .block-title,
.slotwrap .chapter-title,
.slotwrap .header-text,
.slotwrap .lead-h2,
.slotwrap .main-heading,
.slotwrap .page-h,
.slotwrap .section-h,
.slotwrap .section-heading,
.slotwrap .topic-title,
.slotwrap .icon-wrapper {
  text-align: center;
}.slotwrap .block-title,
.slotwrap .chapter-title,
.slotwrap .header-text,
.slotwrap .lead-h2,
.slotwrap .main-heading,
.slotwrap .page-h,
.slotwrap .section-h,
.slotwrap .section-heading,
.slotwrap .topic-title,
.slotwrap .block-action,
.slotwrap .cta-link,
.slotwrap .lead-btn,
.slotwrap .main-btn,
.slotwrap .primary-cta,
.slotwrap .section-action,
.slotwrap .icon-wrapper {
  color: #111111;
}
.alignbox {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.alignbox .right {
  display: flex;
  flex-direction: column;
}
.alignbox .p {
  padding-bottom: 30px;
  color: #272727;
}
.alignbox .row {
  justify-content: center;
}
.alignbox a {
  font-weight: 600;
}
.alignbox .quote {
  padding: 5px 0 5px 28px;
  color: #272727;
  border-left: 2px solid #111827;
}
.routebox {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.routebox .right {
  display: flex;
  flex-direction: column;
}
.routebox .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.routebox .row {
  justify-content: center;
}
.routebox a {
  font-weight: 600;
}
.routebox .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #ffffff;
}
@media (max-width: 760px) {
  .routebox .quote {
    padding: 15px;
  }
}
.headwrap {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.headwrap .card-wrapper {
  padding: 60px 60px 0 60px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff, 1px 0 10px -5px #6b7280;
  overflow: hidden;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper {
    padding: 20px 20px 0 20px;
  }
}
.headwrap .card-wrapper .pack {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack {
    margin-bottom: 40px;
  }
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .logo-wrapper img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  object-fit: cover;
}.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .block-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .chapter-title,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .header-text,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .lead-h2,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .main-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .page-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-h,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .section-heading,
.headwrap .card-wrapper .pack .fieldsetwrap .rootbox .topic-title {
  margin-bottom: 0;
}
.headwrap .card-wrapper .pack .text-wrapper .domtrack {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .pack .text-wrapper .domtrack {
    width: 100%;
  }
}.headwrap .card-wrapper .pack .block-action,
.headwrap .card-wrapper .pack .cta-link,
.headwrap .card-wrapper .pack .lead-btn,
.headwrap .card-wrapper .pack .main-btn,
.headwrap .card-wrapper .pack .primary-cta,
.headwrap .card-wrapper .pack .section-action {
  margin-top: 10px;
}
.headwrap .card-wrapper .nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .headwrap .card-wrapper .nav-wrapper {
    grid-template-columns: 1fr;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .radio-list-title {
    margin-bottom: 12px;
  }
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  width: fit-content;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff8b39;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #ff8b39;
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  opacity: 1;
  transform: translateY(0);
}
.headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
  .headwrap .card-wrapper .nav-wrapper .nav-wrap .list .item-wrap:last-child {
    margin-bottom: 0;
  }
}
.headwrap .card-wrapper .copy-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.headwrap .card-wrapper .copy-wrap .flowbox {
  position: absolute;
  top: 0;
  width: 1000%;
  height: 1px;
  background-color: #ffd900;
}
.headwrap .card-wrapper .copy-wrap .pagebox {
  width: 100%;
  margin-bottom: 0;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title {
  color: #0f172a;
}
.headwrap .domtrack,
.headwrap .text-wrapper {
  color: #000000;
}
.headwrap .radio-list-title {
  color: #c5a800;
  text-align: left;
}
.headwrap .list {
  color: #0f172a;
}
.headwrap .pagebox {
  color: #0f172a;
  text-align: left;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title,
.headwrap .block-action,
.headwrap .cta-link,
.headwrap .lead-btn,
.headwrap .main-btn,
.headwrap .primary-cta,
.headwrap .section-action,
.headwrap .fieldsetwrap {
  color: #ff6900;
}
.headwrap .list,
.headwrap .item-wrap {
  color: #000000;
}

.subunit {
  position: fixed;
  left: max(12px, calc(50vw - 520px));
  right: max(12px, calc(50vw - 520px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.subunit *,
.subunit *::before,
.subunit *::after {
  box-sizing: border-box;
}

.tile {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 220px;
  gap: 0;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #f8f7f4;
  border: 1px solid #d9ddd7;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.fieldnode {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #eef2ec 0%, #e7ece7 100%);
  border-right: 1px solid #d9ddd7;
}

.dockband {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #dce4db;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(86, 108, 94, 0.08);
}

.field {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.cookie-rail-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-rail-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d7ddd6;
  color: #59695d;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-rail-text {
  color: #5e6b61;
  font-size: 13px;
  line-height: 1.45;
}

.gridlayer {
  position: relative;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  background: linear-gradient(180deg, #fffefb 0%, #f8f7f4 100%);
}

.gridlayer::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #556b5d 0%, #8aa17f 50%, #c4b07d 100%);
}

.slot {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.linedockbox {
  margin: 0;
  color: #28312a;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 600;
}

.wrapperunit {
  color: #6f7b72;
  font-size: 13px;
  line-height: 1.45;
}

.partunit {
  margin: 0;
  color: #39433b;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.7;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.blocklayer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.doc-links-note {
  color: #738177;
  font-size: 12px;
  line-height: 1.4;
}

.detail-links-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.detail-links-list a {
  display: inline-block;
  color: #4f775d;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(79, 119, 93, 0.36);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.detail-links-list a:hover {
  color: #365342;
  border-bottom-color: #365342;
}

.detail-links-list span {
  color: #738177;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.gridrowunit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #f1f3ef 0%, #ecefe9 100%);
  border-left: 1px solid #d9ddd7;
  justify-content: center;
}

#acknowledgeBtn {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: #2f3a33;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(47, 58, 51, 0.16);
}

#acknowledgeBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .subunit {
    left: 12px;
    right: 12px;
  }

  .tile {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .gridrowunit {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid #d9ddd7;
    flex-direction: row;
    padding: 16px 18px 18px;
  }

  #acknowledgeBtn {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .subunit {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .tile {
    grid-template-columns: 1fr;
    border-radius: 22px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fieldnode {
    padding: 16px;
    align-items: center;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #d9ddd7;
  }

  .cookie-rail-copy {
    align-items: center;
  }

  .cookie-rail-label {
    align-self: center;
  }

  .gridlayer {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .gridlayer::before {
    left: 16px;
    right: 16px;
  }

  .slot {
    align-items: center;
  }

  .linedockbox {
    font-size: 19px;
    text-align: center;
  }

  .wrapperunit {
    text-align: center;
  }

  .partunit {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .blocklayer {
    align-items: center;
    text-align: center;
  }

  .detail-links-list {
    justify-content: center;
  }

  .gridrowunit {
    padding: 16px;
    flex-direction: column;
  }

  #acknowledgeBtn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .subunit {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .tile {
    border-radius: 18px;
  }

  .dockband {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .field {
    width: 38px;
    height: 38px;
  }

  .linedockbox {
    font-size: 17px;
  }

  .cookie-rail-text,
  .wrapperunit,
  .doc-links-note,
  .detail-links-list a,
  .detail-links-list span,
  #acknowledgeBtn {
    font-size: 12px;
  }
}

.field-pro-footer {
  padding: 0 !important;
  background: transparent;
}
.field-pro-footer .colpad {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #111827;
  border-radius: 12px;
  box-shadow: 12px 12px 0 rgba(17, 24, 39, 0.08);
  overflow: hidden;
}
.field-pro-footer .flowunit {
  padding: 40px 40px 32px;
  background: #f9fafb;
  border-bottom: 2px solid #111827;
  text-align: center;
}
.field-pro-footer .contentrow {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field-pro-footer .tag-area {
  margin: 18px 0 10px;
  color: #111827;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
}
.field-pro-footer .card-title {
  margin: 0 auto;
  max-width: 520px;
  color: #374151;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.field-pro-footer .nest {
  padding: 32px 40px 40px;
  color: #111827;
}
.field-pro-footer .nest *,
.field-pro-footer .nest *::before,
.field-pro-footer .nest *::after {
  box-sizing: border-box;
}
.field-pro-footer .nest [hidden] {
  display: none !important;
}
.field-pro-footer .interfacerow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.field-pro-footer .contentwrap {
  display: flex;
  flex-direction: column;
}
.field-pro-footer .outer-front-alert {
  grid-column: 1 / -1;
}
.field-pro-footer .dompart {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
}
.field-pro-footer .bar-main {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #111827 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 15px;
  box-shadow: none !important;
  text-align: center;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.field-pro-footer .bar-main::placeholder {
  color: #6b7280;
  opacity: 1;
  text-align: center;
}
.field-pro-footer .bar-main:focus {
  outline: none;
  background: #f9fafb !important;
  box-shadow: 4px 4px 0 rgba(17, 24, 39, 0.12) !important;
}
.field-pro-footer select.bar-main {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px !important;
  padding-right: 44px !important;
}
.field-pro-footer select.bar-main option {
  background: #ffffff;
  color: #111827;
}
.field-pro-footer textarea.bar-main {
  min-height: 190px;
  resize: vertical;
  text-align: left;
}
.field-pro-footer textarea.bar-main::placeholder {
  text-align: left;
}
.field-pro-footer .outer-round-flag {
  padding: 18px 22px;
  border: 2px solid #111827;
  border-radius: 12px;
  background: #f9fafb;
}
.field-pro-footer .hint-large-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.field-pro-footer .top-last-zone {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
  accent-color: #111827;
  cursor: pointer;
}
.field-pro-footer .shell-lite-group {
  color: #374151;
  font-size: 14px;
  line-height: 1.75;
  cursor: pointer;
}
.field-pro-footer .shell-lite-group a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
  transition: color 0.2s ease;
}
.field-pro-footer .shell-lite-group a:hover {
  color: #000000;
}
.field-pro-footer .item-check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.field-pro-footer .neutralbox {
  min-width: 260px;
  padding: 15px 36px;
  border: 2px solid #111827;
  border-radius: 12px !important;
  background: #111827;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 6px 6px 0 rgba(17, 24, 39, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.field-pro-footer .neutralbox:hover {
  transform: translateY(-1px);
  box-shadow: 8px 8px 0 rgba(17, 24, 39, 0.14);
}
.field-pro-footer .neutralbox:active {
  transform: translateY(0);
  box-shadow: 4px 4px 0 rgba(17, 24, 39, 0.10);
}
.field-pro-footer .neutralbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.15), 6px 6px 0 rgba(17, 24, 39, 0.12);
}
.field-pro-footer .alt-button {
  margin: 0;
  color: #4b5563;
  font-size: 12.5px;
  line-height: 1.8;
  text-align: center;
  padding: 0 8px;
}
.field-pro-footer .neat-chip {
  margin-bottom: 20px;
  padding: 14px 18px;
  border: 2px solid #111827;
  border-radius: 12px;
  text-align: center;
}
.field-pro-footer .menu-secondary-badge {
  background: #ecfdf5;
  color: #166534;
}
.field-pro-footer .card-alt-footer {
  background: #fef2f2;
  color: #991b1b;
}
@media (max-width: 767px) {
  .field-pro-footer {
    padding: 0 12px !important;
  }
  .field-pro-footer .flowunit {
    padding: 28px 20px 24px;
  }
  .field-pro-footer .nest {
    padding: 24px 20px 28px;
  }
  .field-pro-footer .tag-area {
    font-size: 26px;
  }
  .field-pro-footer .neutralbox {
    width: 100%;
    min-width: 0;
  }
}

.subunit {
  position: fixed;
  left: max(12px, calc(50vw - 520px));
  right: max(12px, calc(50vw - 520px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.subunit *,
.subunit *::before,
.subunit *::after {
  box-sizing: border-box;
}

.subunit.revealed {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.subunit.faded {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.tile {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 220px;
  gap: 0;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #f8f7f4;
  border: 1px solid #d9ddd7;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.fieldnode {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #eef2ec 0%, #e7ece7 100%);
  border-right: 1px solid #d9ddd7;
}

.dockband {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #dce4db;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(86, 108, 94, 0.08);
}

.field {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.cookie-rail-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-rail-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d7ddd6;
  color: #59695d;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-rail-text {
  color: #5e6b61;
  font-size: 13px;
  line-height: 1.45;
}

.gridlayer {
  position: relative;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  background: linear-gradient(180deg, #fffefb 0%, #f8f7f4 100%);
}

.gridlayer::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #556b5d 0%, #8aa17f 50%, #c4b07d 100%);
}

.slot {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.linedockbox {
  margin: 0;
  color: #28312a;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 600;
}

.wrapperunit {
  color: #6f7b72;
  font-size: 13px;
  line-height: 1.45;
}

.partunit {
  margin: 0;
  color: #39433b;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.7;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.blocklayer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.doc-links-note {
  color: #738177;
  font-size: 12px;
  line-height: 1.4;
}

.detail-links-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.detail-links-list a {
  display: inline-block;
  color: #4f775d;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(79, 119, 93, 0.36);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.detail-links-list a:hover {
  color: #365342;
  border-bottom-color: #365342;
}

.detail-links-list span {
  color: #738177;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.gridrowunit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #f1f3ef 0%, #ecefe9 100%);
  border-left: 1px solid #d9ddd7;
  justify-content: center;
}

#acknowledgeBtn {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: #2f3a33;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(47, 58, 51, 0.16);
}

#acknowledgeBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .subunit {
    left: 12px;
    right: 12px;
  }

  .tile {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .gridrowunit {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid #d9ddd7;
    flex-direction: row;
    padding: 16px 18px 18px;
  }

  #acknowledgeBtn {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .subunit {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .tile {
    grid-template-columns: 1fr;
    border-radius: 22px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fieldnode {
    padding: 16px;
    align-items: center;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #d9ddd7;
  }

  .cookie-rail-copy {
    align-items: center;
  }

  .cookie-rail-label {
    align-self: center;
  }

  .gridlayer {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .gridlayer::before {
    left: 16px;
    right: 16px;
  }

  .slot {
    align-items: center;
  }

  .linedockbox {
    font-size: 19px;
    text-align: center;
  }

  .wrapperunit {
    text-align: center;
  }

  .partunit {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .blocklayer {
    align-items: center;
    text-align: center;
  }

  .detail-links-list {
    justify-content: center;
  }

  .gridrowunit {
    padding: 16px;
    flex-direction: column;
  }

  #acknowledgeBtn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .subunit {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .tile {
    border-radius: 18px;
  }

  .dockband {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .field {
    width: 38px;
    height: 38px;
  }

  .linedockbox {
    font-size: 17px;
  }

  .cookie-rail-text,
  .wrapperunit,
  .doc-links-note,
  .detail-links-list a,
  .detail-links-list span,
  #acknowledgeBtn {
    font-size: 12px;
  }
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
