:root {

  --site-primary-rgb: 13, 110, 253;
  --site-black-rgb: 0, 0, 0;
  --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-rgb: 0, 0, 0;
  --site-secondary-color: rgba(33, 37, 41, 0.75);
  --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-border-width: 1px;
  --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);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--site-border-width) solid;
  opacity: 0.25;
}

 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;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

strong {
  font-weight: bolder;
}

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;
}

img {
  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] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]: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;
}

::-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-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;
}

.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 > hr {
  margin-right: 0;
  margin-left: 0;
}

.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%;
  }
}

.mainbox {
  box-shadow: none !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.m-auto {
  margin: auto !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.text-center {
  text-align: center !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-black {
  --site-text-opacity: 1;
  color: rgba(var(--site-black-rgb), var(--site-text-opacity)) !important;
}

.primary-nav {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .primary-nav .flexunit {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .primary-nav .flexunit img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
    .primary-nav .flexunit.identity-iconfont {
      font-size: 3.125rem;
      line-height: 3.125rem; }
  .primary-nav .wrapperbox {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .primary-nav .wrapperbox, .primary-nav .wrapperbox:hover {
      color: inherit;
      text-decoration: none; }
  .primary-nav .identity-iconfont + .wrapperbox {
    vertical-align: -1px; }
  .primary-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/social2.woff2') format('woff2'), url('fonts/social2.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.identity-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-heading,
.topic-title {
  font-style: normal;
  line-height: 1.3;
}.block-subtitle,
.h-secondary,
.lead-sub,
.section-sub,
.section-tag,
.sub-heading,
.tagline-h {
  line-height: 1.3;
}

.modwrap {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-5,
.holdwrap,
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;
}

.stepbox {
  color: #111111;
}

.edgebox {
  text-align: left;
}

.innerpad {
  font-weight: 300;
}

.framegrid {
  font-weight: 400;
}

.fieldset {
  font-weight: 700;
}

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}.block-action,
.cta-link,
.lead-btn,
.page-btn,
.primary-cta,
.section-action,
.section-cta {
  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 .page-btn,
nav .primary-cta,
nav .section-action,
nav .section-cta {
  margin-left: 0rem;
  margin-right: 0rem;
}

.btn .identity-iconfont,
.btn.btn-sm .identity-iconfont {
  order: 1;
  cursor: pointer;
  margin-left: 0.5rem;
  vertical-align: sub;
}

.btn.btn-md .identity-iconfont,
.btn.btn-md .identity-iconfont {
  margin-left: 0.8rem;
}

.framegrid {
  font-weight: 400;
}

.fieldset {
  font-weight: 700;
}

@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 .flexunit 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 .identity-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 .page-btn,
form .primary-cta,
form .section-action,
form .section-cta {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .btn {
  min-height: 48px;
}

.drawunit {
  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;
}

.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: 56px;
    padding-right: 56px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media (max-width: 991px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

.item {
  position: relative;
}
@font-face {
  font-family: 'tracking-icons-bold';
  font-display: swap;
  src: url('fonts/tracking-icons-bold.woff2') format('woff2'), url('fonts/tracking-icons-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'animation2';
  font-display: swap;
  src: url('fonts/tracking2.woff2') format('woff2'), url('fonts/tracking2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="preview-"], [class*=" preview-"] {
  
  font-family: 'animation2' !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;
}
.preview-menu-edit:before {
  content: "\e92b";
}
.preview-menu-info:before {
  content: "\e93e";
}

.btn {
  border-width: 2px;
}
body {
  font-family: Rethink Sans;
}
.display-1 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 3.25rem;
  line-height: 1;
}
.display-1 > .identity-iconfont {
  font-size: 4.0625rem;
}
.display-2 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.17;
}
.display-2 > .identity-iconfont {
  font-size: 3.75rem;
}
.display-5 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 2.25rem;
  line-height: 1.2;
}
.display-5 > .identity-iconfont {
  font-size: 2.8125rem;
}
.holdwrap {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 1.21rem;
  line-height: 1.286;
}
.holdwrap > .identity-iconfont {
  font-size: 1.5125rem;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.275rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .holdwrap {
    font-size: 0.968rem;
    font-size: calc( 1.0735rem + (1.21 - 1.0735) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0735rem + (1.21 - 1.0735) * ((100vw - 20rem) / (48 - 20))));
  }
}

.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 {
  background: linear-gradient(90deg, #060606, #060606 65%, #393939) !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #060606 !important;
  border-color: #060606 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  color: inherit;
  background-color: #202020 !important;
  border-color: #202020 !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #202020 !important;
  border-color: #202020 !important;
}
.btn-secondary {
  background: linear-gradient(90deg, #17cfbc, #17cfbc 65%, #5fedde) !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #17cfbc !important;
  border-color: #17cfbc !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  color: inherit;
  background-color: #31e8d5 !important;
  border-color: #31e8d5 !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #31e8d5 !important;
  border-color: #31e8d5 !important;
}
.btn-info {
  background: linear-gradient(90deg, #ffffff, #ffffff 65%, #ffffff) !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success {
  background: linear-gradient(90deg, #1bdee7, #1bdee7 65%, #77ebf1) !important;
}
.btn-success,
.btn-success:active {
  background-color: #1bdee7 !important;
  border-color: #1bdee7 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  color: inherit;
  background-color: #49e5ec !important;
  border-color: #49e5ec !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #ffffff !important;
  background-color: #49e5ec !important;
  border-color: #49e5ec !important;
}
.btn-warning {
  background: linear-gradient(90deg, #f7f7f7, #f7f7f7 65%, #ffffff) !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f7f7f7 !important;
  border-color: #f7f7f7 !important;
  color: #787878 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #787878 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger {
  background: linear-gradient(90deg, #dc5400, #dc5400 65%, #ff8b43) !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #dc5400 !important;
  border-color: #dc5400 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  color: inherit;
  background-color: #ff6b10 !important;
  border-color: #ff6b10 !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff6b10 !important;
  border-color: #ff6b10 !important;
}
.btn-white {
  background: linear-gradient(90deg, #ffffff, #ffffff 65%, #ffffff) !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  background: linear-gradient(90deg, #232323, #232323 65%, #565656) !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}

.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #060606;
  color: #060606;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #060606 !important;
  border-color: #060606 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #17cfbc;
  color: #17cfbc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.active {
  color: #0e8175 !important;
  background-color: transparent !important;
  border-color: #0e8175 !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #17cfbc !important;
  border-color: #17cfbc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !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: #1bdee7;
  color: #1bdee7;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.active {
  color: #10959b !important;
  background-color: transparent !important;
  border-color: #10959b !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1bdee7 !important;
  border-color: #1bdee7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #f7f7f7;
  color: #f7f7f7;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.active {
  color: #cccccc !important;
  background-color: transparent !important;
  border-color: #cccccc !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #787878 !important;
  background-color: #f7f7f7 !important;
  border-color: #f7f7f7 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #dc5400;
  color: #dc5400;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.active {
  color: #853300 !important;
  background-color: transparent !important;
  border-color: #853300 !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #dc5400 !important;
  border-color: #dc5400 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}

.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #060606 !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !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;
}.block-action .btn:not(.btn-form),
.cta-link .btn:not(.btn-form),
.lead-btn .btn:not(.btn-form),
.page-btn .btn:not(.btn-form),
.primary-cta .btn:not(.btn-form),
.section-action .btn:not(.btn-form),
.section-cta .btn:not(.btn-form) {
  border-radius: 100px;
}
a,
a:hover {
  color: #060606;
}

body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}.block-action .btn,
.cta-link .btn,
.lead-btn .btn,
.page-btn .btn,
.primary-cta .btn,
.section-action .btn,
.section-cta .btn {
  padding: 8px 16px;
  border-radius: 50px !important;
  font-weight: 400 !important;
}.block-action .btn .identity-iconfont,
.cta-link .btn .identity-iconfont,
.lead-btn .btn .identity-iconfont,
.page-btn .btn .identity-iconfont,
.primary-cta .btn .identity-iconfont,
.section-action .btn .identity-iconfont,
.section-cta .btn .identity-iconfont {
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
  font-size: 85%;
}.block-action .btn:hover,
.cta-link .btn:hover,
.lead-btn .btn:hover,
.page-btn .btn:hover,
.primary-cta .btn:hover,
.section-action .btn:hover,
.section-cta .btn:hover,
.block-action .btn:focus,
.cta-link .btn:focus,
.lead-btn .btn:focus,
.page-btn .btn:focus,
.primary-cta .btn:focus,
.section-action .btn:focus,
.section-cta .btn:focus {
  transform: scale(1.04);
}.block-action .btn:hover .identity-iconfont,
.cta-link .btn:hover .identity-iconfont,
.lead-btn .btn:hover .identity-iconfont,
.page-btn .btn:hover .identity-iconfont,
.primary-cta .btn:hover .identity-iconfont,
.section-action .btn:hover .identity-iconfont,
.section-cta .btn:hover .identity-iconfont,
.block-action .btn:focus .identity-iconfont,
.cta-link .btn:focus .identity-iconfont,
.lead-btn .btn:focus .identity-iconfont,
.page-btn .btn:focus .identity-iconfont,
.primary-cta .btn:focus .identity-iconfont,
.section-action .btn:focus .identity-iconfont,
.section-cta .btn:focus .identity-iconfont {
  transform: translateX(2px);
}.block-action .btn-primary,
.cta-link .btn-primary,
.lead-btn .btn-primary,
.page-btn .btn-primary,
.primary-cta .btn-primary,
.section-action .btn-primary,
.section-cta .btn-primary,
.block-action .btn-secondary,
.cta-link .btn-secondary,
.lead-btn .btn-secondary,
.page-btn .btn-secondary,
.primary-cta .btn-secondary,
.section-action .btn-secondary,
.section-cta .btn-secondary,
.block-action .btn-success,
.cta-link .btn-success,
.lead-btn .btn-success,
.page-btn .btn-success,
.primary-cta .btn-success,
.section-action .btn-success,
.section-cta .btn-success,
.block-action .btn-info,
.cta-link .btn-info,
.lead-btn .btn-info,
.page-btn .btn-info,
.primary-cta .btn-info,
.section-action .btn-info,
.section-cta .btn-info,
.block-action .btn-warning,
.cta-link .btn-warning,
.lead-btn .btn-warning,
.page-btn .btn-warning,
.primary-cta .btn-warning,
.section-action .btn-warning,
.section-cta .btn-warning,
.block-action .btn-danger,
.cta-link .btn-danger,
.lead-btn .btn-danger,
.page-btn .btn-danger,
.primary-cta .btn-danger,
.section-action .btn-danger,
.section-cta .btn-danger,
.block-action .btn-black,
.cta-link .btn-black,
.lead-btn .btn-black,
.page-btn .btn-black,
.primary-cta .btn-black,
.section-action .btn-black,
.section-cta .btn-black,
.block-action .btn-white,
.cta-link .btn-white,
.lead-btn .btn-white,
.page-btn .btn-white,
.primary-cta .btn-white,
.section-action .btn-white,
.section-cta .btn-white {
  border: none !important;
}.block-action .btn-primary-outline,
.cta-link .btn-primary-outline,
.lead-btn .btn-primary-outline,
.page-btn .btn-primary-outline,
.primary-cta .btn-primary-outline,
.section-action .btn-primary-outline,
.section-cta .btn-primary-outline,
.block-action .btn-secondary-outline,
.cta-link .btn-secondary-outline,
.lead-btn .btn-secondary-outline,
.page-btn .btn-secondary-outline,
.primary-cta .btn-secondary-outline,
.section-action .btn-secondary-outline,
.section-cta .btn-secondary-outline,
.block-action .btn-success-outline,
.cta-link .btn-success-outline,
.lead-btn .btn-success-outline,
.page-btn .btn-success-outline,
.primary-cta .btn-success-outline,
.section-action .btn-success-outline,
.section-cta .btn-success-outline,
.block-action .btn-info-outline,
.cta-link .btn-info-outline,
.lead-btn .btn-info-outline,
.page-btn .btn-info-outline,
.primary-cta .btn-info-outline,
.section-action .btn-info-outline,
.section-cta .btn-info-outline,
.block-action .btn-warning-outline,
.cta-link .btn-warning-outline,
.lead-btn .btn-warning-outline,
.page-btn .btn-warning-outline,
.primary-cta .btn-warning-outline,
.section-action .btn-warning-outline,
.section-cta .btn-warning-outline,
.block-action .btn-danger-outline,
.cta-link .btn-danger-outline,
.lead-btn .btn-danger-outline,
.page-btn .btn-danger-outline,
.primary-cta .btn-danger-outline,
.section-action .btn-danger-outline,
.section-cta .btn-danger-outline,
.block-action .btn-black-outline,
.cta-link .btn-black-outline,
.lead-btn .btn-black-outline,
.page-btn .btn-black-outline,
.primary-cta .btn-black-outline,
.section-action .btn-black-outline,
.section-cta .btn-black-outline,
.block-action .btn-white-outline,
.cta-link .btn-white-outline,
.lead-btn .btn-white-outline,
.page-btn .btn-white-outline,
.primary-cta .btn-white-outline,
.section-action .btn-white-outline,
.section-cta .btn-white-outline {
  border-width: 1px !important;
}
img,
.card-wrap,
.card-wrapper,
.card,
.item-wrapper,
.item-wrap {
  border-radius: 24px !important;
}
.domtrack {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .domtrack .navbar-toggler {
    transform: scale(0.8);
  }
}
.domtrack .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.domtrack .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .domtrack .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.domtrack .navbar-brand .wrapperbox {
  line-height: inherit !important;
}
.domtrack .navbar-brand .flexunit a {
  outline: none;
}
.domtrack .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.domtrack .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.domtrack .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::before {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::after {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.domtrack .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.domtrack .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.domtrack .nav-link {
  width: fit-content;
  position: relative;
}
.domtrack .flexunit {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.domtrack .wrapperbox {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .wrapperbox {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .domtrack .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.domtrack .container,
.domtrack .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #1bdee7;
  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: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .domtrack .container,
  .domtrack .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .domtrack .container,
  .domtrack .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.domtrack .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .domtrack .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .domtrack .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.domtrack .boxcore {
  color: #e6eddc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.domtrack .boxcore:hover {
  opacity: .6;
}
.domtrack .nav-item:focus,
.domtrack .nav-link:focus {
  outline: none;
}
.domtrack .navbar {
  min-height: 90px;
  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;
}
.domtrack .navbar .flexunit img {
  width: auto;
}
.domtrack .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .domtrack .navbar {
    min-height: 72px;
  }
  .domtrack .navbar .flexunit img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .domtrack .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domtrack .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .domtrack .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domtrack .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domtrack ul.navbar-nav {
  flex-wrap: wrap;
}
.domtrack .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .domtrack .navbar-buttons {
    text-align: left;
  }
}
.domtrack button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.domtrack .primary-nav {
  padding: 0 1rem;
}
.domtrack a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domtrack .navbar {
    height: 70px;
  }
  .domtrack .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.domtrack .block-action,
.domtrack .cta-link,
.domtrack .lead-btn,
.domtrack .page-btn,
.domtrack .primary-cta,
.domtrack .section-action,
.domtrack .section-cta {
  margin: -0.6rem -0.6rem;
}.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
    width: auto !important;
  }
}
.domtrack .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .domtrack .navbar-brand {
    margin-right: auto;
  }
  .domtrack .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);
  }
  .domtrack .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .domtrack .navbar-collapse {
    padding: 1rem;
  }
}
.domtrack .bodybox {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .domtrack .bodybox {
    display: block;
  }
}
.docklayer {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #c6fcff;
}
.docklayer .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .docklayer .group {
    margin-bottom: 32px;
  }
}.docklayer .group .block-title,
.docklayer .group .chapter-title,
.docklayer .group .header-text,
.docklayer .group .lead-h2,
.docklayer .group .main-heading,
.docklayer .group .page-h,
.docklayer .group .section-heading,
.docklayer .group .topic-title {
  margin-bottom: 32px;
}
.docklayer .group .text-wrapper .modwrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .docklayer .group .text-wrapper .modwrap {
    width: 100%;
  }
}
.docklayer .group .box {
  margin-bottom: 32px;
}
.docklayer .group .box .fieldnode {
  display: inline-grid;
  grid-template-columns: 6px 1fr;
  gap: 24px;
  padding: 16px 40px 16px 10px;
  background-color: #ffffff;
  box-shadow: 0 19px 45px 0 #0000001a;
}
@media (max-width: 992px) {
  .docklayer .group .box .fieldnode {
    padding: 10px 20px 10px 10px;
    gap: 16px;
  }
}
.docklayer .group .box .fieldnode .line-wrap {
  width: 6px;
  height: 100%;
  border-radius: 10px;
  background-color: #1bdee7;
}
@media (max-width: 992px) {
  .docklayer .group .box .fieldnode .line-wrap {
    width: 4px;
  }
}
.docklayer .group .box .fieldnode .text-wrap {
  padding: 10px 0;
}.docklayer .group .box .fieldnode .text-wrap .block-subtitle,
.docklayer .group .box .fieldnode .text-wrap .h-secondary,
.docklayer .group .box .fieldnode .text-wrap .lead-sub,
.docklayer .group .box .fieldnode .text-wrap .section-sub,
.docklayer .group .box .fieldnode .text-wrap .section-tag,
.docklayer .group .box .fieldnode .text-wrap .sub-heading,
.docklayer .group .box .fieldnode .text-wrap .tagline-h {
  margin-bottom: 4px;
}
.docklayer .navwrap {
  position: relative;
}
.docklayer .navwrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1bdee7;
  pointer-events: none;
  transform: rotate(5deg);
  z-index: 2;
  box-shadow: 0 35px 50px 0 #0000001a;
}
.docklayer .navwrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1bdee7;
  pointer-events: none;
  transform: rotate(2deg);
  z-index: 1;
  box-shadow: 0 35px 50px 0 #0000001a;
}
.docklayer .navwrap img {
  position: relative;
  height: 500px;
  object-fit: cover;
  z-index: 3;
}
@media (max-width: 992px) {
  .docklayer .navwrap img {
    height: 300px;
  }
}.docklayer .block-title,
.docklayer .chapter-title,
.docklayer .header-text,
.docklayer .lead-h2,
.docklayer .main-heading,
.docklayer .page-h,
.docklayer .section-heading,
.docklayer .topic-title {
  color: #000c3f;
}
.docklayer .modwrap,
.docklayer .text-wrapper {
  color: #000000;
  text-align: center;
}.docklayer .block-subtitle,
.docklayer .h-secondary,
.docklayer .lead-sub,
.docklayer .section-sub,
.docklayer .section-tag,
.docklayer .sub-heading,
.docklayer .tagline-h {
  color: #000000;
  text-align: left;
}.docklayer .block-title,
.docklayer .chapter-title,
.docklayer .header-text,
.docklayer .lead-h2,
.docklayer .main-heading,
.docklayer .page-h,
.docklayer .section-heading,
.docklayer .topic-title,
.docklayer .block-action,
.docklayer .cta-link,
.docklayer .lead-btn,
.docklayer .page-btn,
.docklayer .primary-cta,
.docklayer .section-action,
.docklayer .section-cta {
  text-align: center;
  color: #000000;
}
.mapwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/narrow1.jpg");
}
.mapwrap .row {
  flex-direction: row-reverse;
}
.mapwrap .row {
  align-items: center;
}
@media (max-width: 767px) {
  .mapwrap .row {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .mapwrap .col-text {
    padding: 0 30px;
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  .mapwrap .col-text {
    margin-bottom: 3rem;
  }
}
.mapwrap .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .mapwrap .text-wrapper {
    text-align: center !important;
  }
}
.mapwrap .gridcell {
  width: 100%;
  margin-bottom: 16px;
  color: #1bdee7;
}
@media (max-width: 767px) {
  .mapwrap .gridcell {
    text-align: center !important;
  }
}.mapwrap .block-title,
.mapwrap .chapter-title,
.mapwrap .header-text,
.mapwrap .lead-h2,
.mapwrap .main-heading,
.mapwrap .page-h,
.mapwrap .section-heading,
.mapwrap .topic-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
}
@media (max-width: 767px) {.mapwrap .block-title,
.mapwrap .chapter-title,
.mapwrap .header-text,
.mapwrap .lead-h2,
.mapwrap .main-heading,
.mapwrap .page-h,
.mapwrap .section-heading,
.mapwrap .topic-title {
    text-align: center !important;
  }
}
.mapwrap .modwrap {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .mapwrap .modwrap {
    text-align: center !important;
  }
}
.mapwrap .btn-container {
  width: 100%;
  margin-top: 8px;
}.mapwrap .block-action .btn,
.mapwrap .cta-link .btn,
.mapwrap .lead-btn .btn,
.mapwrap .page-btn .btn,
.mapwrap .primary-cta .btn,
.mapwrap .section-action .btn,
.mapwrap .section-cta .btn {
  padding: 0;
}.mapwrap .block-action .btn span,
.mapwrap .cta-link .btn span,
.mapwrap .lead-btn .btn span,
.mapwrap .page-btn .btn span,
.mapwrap .primary-cta .btn span,
.mapwrap .section-action .btn span,
.mapwrap .section-cta .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}.mapwrap .block-action .btn:hover span,
.mapwrap .cta-link .btn:hover span,
.mapwrap .lead-btn .btn:hover span,
.mapwrap .page-btn .btn:hover span,
.mapwrap .primary-cta .btn:hover span,
.mapwrap .section-action .btn:hover span,
.mapwrap .section-cta .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.mapwrap .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.mapwrap .card {
  padding: 0 12px 30px 12px;
}
@media (min-width: 992px) {
  .mapwrap .card {
    padding: 0 30px 30px 30px;
  }
}
.mapwrap .card-wrap {
  display: flex;
  flex-direction: column;
}
.mapwrap .card-title {
  color: #000000;
  margin-bottom: 1rem;
}
.mapwrap .card-inside-border {
  width: 100%;
  height: 1px;
  margin-bottom: 1rem;
  background-color: #1bdee7;
}
.mapwrap .card-text {
  color: #000000;
  margin-bottom: 24px;
}
.fieldsetwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.fieldsetwrap .row {
  flex-direction: row-reverse;
}
.fieldsetwrap .navwrap {
  display: flex;
}
@media (max-width: 991px) {
  .fieldsetwrap .navwrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .fieldsetwrap .navwrap {
    padding: 30px;
    padding-right: 3rem;
  }
}
.fieldsetwrap .navwrap .img-caption-container {
  position: relative;
  display: flex;
}
.fieldsetwrap .navwrap img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .fieldsetwrap .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .fieldsetwrap .col-text {
    padding: 30px;
    padding-left: 3rem;
  }
}
@media (max-width: 767px) {
  .fieldsetwrap .col-text {
    text-align: center;
  }
}
.fieldsetwrap .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fieldsetwrap .gridcell {
  width: 100%;
  margin-bottom: 16px;
  color: #1bdee7;
}
@media (max-width: 767px) {
  .fieldsetwrap .gridcell {
    text-align: center !important;
  }
}.fieldsetwrap .block-title,
.fieldsetwrap .chapter-title,
.fieldsetwrap .header-text,
.fieldsetwrap .lead-h2,
.fieldsetwrap .main-heading,
.fieldsetwrap .page-h,
.fieldsetwrap .section-heading,
.fieldsetwrap .topic-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.fieldsetwrap .modwrap {
  color: #000000;
  width: 100%;
  margin-bottom: 1.5rem;
}
.fieldsetwrap .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {.fieldsetwrap .block-action,
.fieldsetwrap .cta-link,
.fieldsetwrap .lead-btn,
.fieldsetwrap .page-btn,
.fieldsetwrap .primary-cta,
.fieldsetwrap .section-action,
.fieldsetwrap .section-cta {
    display: flex;
    flex-wrap: wrap;
  }.fieldsetwrap .block-action .btn,
.fieldsetwrap .cta-link .btn,
.fieldsetwrap .lead-btn .btn,
.fieldsetwrap .page-btn .btn,
.fieldsetwrap .primary-cta .btn,
.fieldsetwrap .section-action .btn,
.fieldsetwrap .section-cta .btn {
    width: 100%;
  }
}
.wrapsegment {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c6fcff;
}
.wrapsegment .card {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .wrapsegment .card {
    margin-bottom: 40px;
  }
}
.wrapsegment .tileunit .slotunit {
  margin-bottom: 20px;
}.wrapsegment .tileunit .block-title,
.wrapsegment .tileunit .chapter-title,
.wrapsegment .tileunit .header-text,
.wrapsegment .tileunit .lead-h2,
.wrapsegment .tileunit .main-heading,
.wrapsegment .tileunit .page-h,
.wrapsegment .tileunit .section-heading,
.wrapsegment .tileunit .topic-title {
  margin-bottom: 20px;
}.wrapsegment .block-action .btn,
.wrapsegment .cta-link .btn,
.wrapsegment .lead-btn .btn,
.wrapsegment .page-btn .btn,
.wrapsegment .primary-cta .btn,
.wrapsegment .section-action .btn,
.wrapsegment .section-cta .btn {
  margin-bottom: 0;
}
.wrapsegment .text-wrapper .modwrap {
  margin-bottom: 0;
}
.wrapsegment .slotunit {
  color: #000000;
}.wrapsegment .block-title,
.wrapsegment .chapter-title,
.wrapsegment .header-text,
.wrapsegment .lead-h2,
.wrapsegment .main-heading,
.wrapsegment .page-h,
.wrapsegment .section-heading,
.wrapsegment .topic-title {
  color: #000000;
}
.wrapsegment .modwrap {
  color: #000000;
}
.noteunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.noteunit .row {
  margin: 0 -40px;
}
.noteunit .row .card {
  padding: 0 40px;
  justify-content: center;
}
@media (max-width: 992px) {
  .noteunit .group {
    margin-bottom: 40px;
  }
}.noteunit .group .block-title,
.noteunit .group .chapter-title,
.noteunit .group .header-text,
.noteunit .group .lead-h2,
.noteunit .group .main-heading,
.noteunit .group .page-h,
.noteunit .group .section-heading,
.noteunit .group .topic-title {
  margin-bottom: 16px;
}
.noteunit .group .modwrap {
  margin-bottom: 0;
}.noteunit .group .block-action,
.noteunit .group .cta-link,
.noteunit .group .lead-btn,
.noteunit .group .page-btn,
.noteunit .group .primary-cta,
.noteunit .group .section-action,
.noteunit .group .section-cta {
  margin-top: 24px;
}.noteunit .group .block-action .btn,
.noteunit .group .cta-link .btn,
.noteunit .group .lead-btn .btn,
.noteunit .group .page-btn .btn,
.noteunit .group .primary-cta .btn,
.noteunit .group .section-action .btn,
.noteunit .group .section-cta .btn {
  margin-bottom: 0;
}
.noteunit .navwrap {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1px;
}
.noteunit .navwrap .gridcore {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1bdee7;
  pointer-events: none;
}
.noteunit .navwrap .corefield {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 100px;
  width: 100%;
  background-image: linear-gradient(180deg, transparent 0, #1bdee7 100%);
  pointer-events: none;
  z-index: 2;
}
.noteunit .navwrap .stage {
  position: relative;
  z-index: 1;
  background-color: #f7f7f7;
  padding: 48px 0 0 48px;
  width: 100%;
}
@media (max-width: 992px) {
  .noteunit .navwrap .stage {
    padding: 16px;
  }
}
.noteunit .navwrap .stage img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .noteunit .navwrap .stage img {
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
@media (max-width: 992px) {
  .noteunit .navwrap .stage img {
    height: 300px;
  }
}.noteunit .block-title,
.noteunit .chapter-title,
.noteunit .header-text,
.noteunit .lead-h2,
.noteunit .main-heading,
.noteunit .page-h,
.noteunit .section-heading,
.noteunit .topic-title {
  color: #ffffff;
}
.noteunit .modwrap,
.noteunit .text-wrapper {
  color: #000000;
}.noteunit .block-title,
.noteunit .chapter-title,
.noteunit .header-text,
.noteunit .lead-h2,
.noteunit .main-heading,
.noteunit .page-h,
.noteunit .section-heading,
.noteunit .topic-title,
.noteunit .block-action,
.noteunit .cta-link,
.noteunit .lead-btn,
.noteunit .page-btn,
.noteunit .primary-cta,
.noteunit .section-action,
.noteunit .section-cta {
  color: #000000;
}
.sublayer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c6fcff;
}
.sublayer .row {
  margin: 0 -6px;
}
.sublayer .card {
  padding: 0 6px;
}
.sublayer .card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 48px 100px;
  background-color: #ffffff;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 1440px) {
  .sublayer .card-wrapper {
    padding: 48px 64px;
  }
}
@media (max-width: 992px) {
  .sublayer .card-wrapper {
    padding: 48px 24px;
    margin-top: 3px;
    margin-bottom: 3px;
  }
}
.sublayer .card-wrapper .tileunit .slotunit {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .sublayer .card-wrapper .tileunit .slotunit {
    margin-bottom: 24px;
  }
}.sublayer .card-wrapper .tileunit .block-title,
.sublayer .card-wrapper .tileunit .chapter-title,
.sublayer .card-wrapper .tileunit .header-text,
.sublayer .card-wrapper .tileunit .lead-h2,
.sublayer .card-wrapper .tileunit .main-heading,
.sublayer .card-wrapper .tileunit .page-h,
.sublayer .card-wrapper .tileunit .section-heading,
.sublayer .card-wrapper .tileunit .topic-title {
  margin-bottom: 24px;
}
.sublayer .card-wrapper .logo-wrapper {
  margin: 84px 0;
}
@media (max-width: 1440px) {
  .sublayer .card-wrapper .logo-wrapper {
    margin: 24px 0;
  }
}
.sublayer .card-wrapper .logo-wrapper img {
  width: 290px;
  height: 290px;
  object-fit: cover;
  display: inline-flex;
}
@media (max-width: 992px) {
  .sublayer .card-wrapper .logo-wrapper img {
    width: 180px;
    height: 180px;
  }
}.sublayer .card-wrapper .block-action .btn,
.sublayer .card-wrapper .cta-link .btn,
.sublayer .card-wrapper .lead-btn .btn,
.sublayer .card-wrapper .page-btn .btn,
.sublayer .card-wrapper .primary-cta .btn,
.sublayer .card-wrapper .section-action .btn,
.sublayer .card-wrapper .section-cta .btn {
  margin-bottom: 0;
}
.sublayer .card-wrapper .item {
  margin-bottom: 24px;
}
.sublayer .card-wrapper .item:first-child .item-wrapper {
  border-top: 1px solid #1bdee7;
  padding-top: 24px;
}
.sublayer .card-wrapper .item .item-wrapper {
  padding-bottom: 24px;
  border-bottom: 1px solid #1bdee7;
  display: flex;
  justify-content: space-between;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .sublayer .card-wrapper .item .item-wrapper {
    display: block;
  }
}
.sublayer .card-wrapper .item .item-wrapper .card-title {
  width: 50%;
  margin-bottom: 0;
  padding-right: 24px;
}
@media (max-width: 1440px) {
  .sublayer .card-wrapper .item .item-wrapper .card-title {
    width: 35%;
  }
}
@media (max-width: 992px) {
  .sublayer .card-wrapper .item .item-wrapper .card-title {
    width: 100% !important;
    padding-right: 0;
    margin-bottom: 24px;
  }
}
.sublayer .card-wrapper .item .item-wrapper .card-text {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .sublayer .card-wrapper .item .item-wrapper .card-text {
    width: 65%;
  }
}
@media (max-width: 992px) {
  .sublayer .card-wrapper .item .item-wrapper .card-text {
    width: 100% !important;
  }
}
.sublayer .slotunit {
  color: #000000;
  text-align: center;
}.sublayer .block-title,
.sublayer .chapter-title,
.sublayer .header-text,
.sublayer .lead-h2,
.sublayer .main-heading,
.sublayer .page-h,
.sublayer .section-heading,
.sublayer .topic-title {
  color: #f5f8ff;
}
.sublayer .card-title {
  color: #f5f8ff;
}
.sublayer .card-text {
  color: #000000;
}.sublayer .block-title,
.sublayer .chapter-title,
.sublayer .header-text,
.sublayer .lead-h2,
.sublayer .main-heading,
.sublayer .page-h,
.sublayer .section-heading,
.sublayer .topic-title,
.sublayer .block-action,
.sublayer .cta-link,
.sublayer .lead-btn,
.sublayer .page-btn,
.sublayer .primary-cta,
.sublayer .section-action,
.sublayer .section-cta,
.sublayer .logo-wrapper {
  text-align: center;
  color: #000000;
}.sublayer .card-title,
.sublayer .block-action,
.sublayer .cta-link,
.sublayer .lead-btn,
.sublayer .page-btn,
.sublayer .primary-cta,
.sublayer .section-action,
.sublayer .section-cta {
  color: #000000;
}
.boxwrap {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.boxwrap .identity-iconfont {
  color: #1bdee7;
  font-size: 5rem;
  width: 5rem;
}
.boxwrap .boxcore {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}.boxwrap .block-subtitle,
.boxwrap .h-secondary,
.boxwrap .lead-sub,
.boxwrap .section-sub,
.boxwrap .section-tag,
.boxwrap .sub-heading,
.boxwrap .tagline-h,
.boxwrap .block-action,
.boxwrap .cta-link,
.boxwrap .lead-btn,
.boxwrap .page-btn,
.boxwrap .primary-cta,
.boxwrap .section-action,
.boxwrap .section-cta {
  color: #060606;
}
.nodemodule {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #c6fcff;
}
.nodemodule .bodybox {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .nodemodule .bodybox {
    padding: 30px 20px;
  }
}
.nodemodule .bodybox .row {
  justify-content: center;
}
.nodemodule .tileunit {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .tileunit {
    margin-bottom: 40px;
  }
}
.nodemodule .tileunit .zonecore {
  display: inline-flex;
  align-items: center;
}
.nodemodule .tileunit .zonecore .logo-wrapper {
  margin-right: 8px;
}
.nodemodule .tileunit .zonecore .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}.nodemodule .tileunit .zonecore .block-title,
.nodemodule .tileunit .zonecore .chapter-title,
.nodemodule .tileunit .zonecore .header-text,
.nodemodule .tileunit .zonecore .lead-h2,
.nodemodule .tileunit .zonecore .main-heading,
.nodemodule .tileunit .zonecore .page-h,
.nodemodule .tileunit .zonecore .section-heading,
.nodemodule .tileunit .zonecore .topic-title {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .nav-wrapper {
    margin-bottom: 40px;
  }
}.nodemodule .nav-wrapper .block-subtitle,
.nodemodule .nav-wrapper .h-secondary,
.nodemodule .nav-wrapper .lead-sub,
.nodemodule .nav-wrapper .section-sub,
.nodemodule .nav-wrapper .section-tag,
.nodemodule .nav-wrapper .sub-heading,
.nodemodule .nav-wrapper .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper .list .item-wrap:hover,
.nodemodule .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .view {
    margin-bottom: 40px;
  }
}.nodemodule .view .block-subtitle,
.nodemodule .view .h-secondary,
.nodemodule .view .lead-sub,
.nodemodule .view .section-sub,
.nodemodule .view .section-tag,
.nodemodule .view .sub-heading,
.nodemodule .view .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .view .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .view .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .view .list .item-wrap:hover,
.nodemodule .view .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .coretrack {
  margin-bottom: 0;
  opacity: .6;
  color: #060606;
  text-align: center;
}.nodemodule .block-title,
.nodemodule .chapter-title,
.nodemodule .header-text,
.nodemodule .lead-h2,
.nodemodule .main-heading,
.nodemodule .page-h,
.nodemodule .section-heading,
.nodemodule .topic-title {
  color: #ed463f;
}.nodemodule .block-subtitle,
.nodemodule .h-secondary,
.nodemodule .lead-sub,
.nodemodule .section-sub,
.nodemodule .section-tag,
.nodemodule .sub-heading,
.nodemodule .tagline-h {
  color: #404349;
}
.nodemodule .list {
  color: #404349;
}
.nodemodule .list,
.nodemodule .item-wrap {
  color: #060606;
}
.domtrack {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .domtrack .navbar-toggler {
    transform: scale(0.8);
  }
}
.domtrack .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.domtrack .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .domtrack .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.domtrack .navbar-brand .wrapperbox {
  line-height: inherit !important;
}
.domtrack .navbar-brand .flexunit a {
  outline: none;
}
.domtrack .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.domtrack .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.domtrack .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::before {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::after {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.domtrack .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.domtrack .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.domtrack .nav-link {
  width: fit-content;
  position: relative;
}
.domtrack .flexunit {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.domtrack .wrapperbox {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .wrapperbox {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .domtrack .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.domtrack .container,
.domtrack .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #1bdee7;
  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: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .domtrack .container,
  .domtrack .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .domtrack .container,
  .domtrack .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.domtrack .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .domtrack .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .domtrack .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.domtrack .boxcore {
  color: #e6eddc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.domtrack .boxcore:hover {
  opacity: .6;
}
.domtrack .nav-item:focus,
.domtrack .nav-link:focus {
  outline: none;
}
.domtrack .navbar {
  min-height: 90px;
  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;
}
.domtrack .navbar .flexunit img {
  width: auto;
}
.domtrack .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .domtrack .navbar {
    min-height: 72px;
  }
  .domtrack .navbar .flexunit img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .domtrack .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domtrack .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .domtrack .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domtrack .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domtrack ul.navbar-nav {
  flex-wrap: wrap;
}
.domtrack .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .domtrack .navbar-buttons {
    text-align: left;
  }
}
.domtrack button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.domtrack .primary-nav {
  padding: 0 1rem;
}
.domtrack a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domtrack .navbar {
    height: 70px;
  }
  .domtrack .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.domtrack .block-action,
.domtrack .cta-link,
.domtrack .lead-btn,
.domtrack .page-btn,
.domtrack .primary-cta,
.domtrack .section-action,
.domtrack .section-cta {
  margin: -0.6rem -0.6rem;
}.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
    width: auto !important;
  }
}
.domtrack .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .domtrack .navbar-brand {
    margin-right: auto;
  }
  .domtrack .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);
  }
  .domtrack .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .domtrack .navbar-collapse {
    padding: 1rem;
  }
}
.domtrack .bodybox {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .domtrack .bodybox {
    display: block;
  }
}
.tilegrid {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-color: #c6fcff;
}
.tilegrid .text-wrapper {
  padding: 5rem;
}
@media (max-width: 767px) {
  .tilegrid .text-wrapper {
    padding: 3rem 1rem;
  }
}
.tilegrid .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.tilegrid .navwrap {
  padding: 0;
}
.tilegrid .navwrap img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-heading,
.tilegrid .topic-title {
  text-align: center;
  color: #060606;
}.tilegrid .modwrap,
.tilegrid .block-action,
.tilegrid .cta-link,
.tilegrid .lead-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-action,
.tilegrid .section-cta {
  text-align: center;
  color: #000000;
}
.rowset {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.rowset .container,
.rowset .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .rowset .container,
  .rowset .container-fluid {
    padding: 0 20px;
  }
}
.rowset .tileunit {
  padding: 50px 0;
  border-top: 1px solid #1bdee7;
  border-bottom: 1px solid #1bdee7;
}
@media (max-width: 992px) {
  .rowset .tileunit {
    padding: 25px 0;
  }
}
.rowset .tileunit .zonecore {
  padding: 60px 90px 30px;
  background-color: #c6fcff;
  border-radius: 24px;
}
@media (max-width: 992px) {
  .rowset .tileunit .zonecore {
    padding: 50px 20px;
  }
}.rowset .tileunit .zonecore .block-title,
.rowset .tileunit .zonecore .chapter-title,
.rowset .tileunit .zonecore .header-text,
.rowset .tileunit .zonecore .lead-h2,
.rowset .tileunit .zonecore .main-heading,
.rowset .tileunit .zonecore .page-h,
.rowset .tileunit .zonecore .section-heading,
.rowset .tileunit .zonecore .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.rowset .tileunit .zonecore .block-title,
.rowset .tileunit .zonecore .chapter-title,
.rowset .tileunit .zonecore .header-text,
.rowset .tileunit .zonecore .lead-h2,
.rowset .tileunit .zonecore .main-heading,
.rowset .tileunit .zonecore .page-h,
.rowset .tileunit .zonecore .section-heading,
.rowset .tileunit .zonecore .topic-title {
    margin-bottom: 20px;
  }
}
.rowset .tileunit .zonecore .modwrap {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .rowset .tileunit .zonecore .modwrap {
    margin-bottom: 20px;
  }
}.rowset .block-title,
.rowset .chapter-title,
.rowset .header-text,
.rowset .lead-h2,
.rowset .main-heading,
.rowset .page-h,
.rowset .section-heading,
.rowset .topic-title {
  color: #3d4045;
}
.rowset .modwrap {
  color: #060606;
}.rowset .block-action,
.rowset .cta-link,
.rowset .lead-btn,
.rowset .page-btn,
.rowset .primary-cta,
.rowset .section-action,
.rowset .section-cta {
  text-align: right;
}.rowset .block-title,
.rowset .chapter-title,
.rowset .header-text,
.rowset .lead-h2,
.rowset .main-heading,
.rowset .page-h,
.rowset .section-heading,
.rowset .topic-title,
.rowset .block-action,
.rowset .cta-link,
.rowset .lead-btn,
.rowset .page-btn,
.rowset .primary-cta,
.rowset .section-action,
.rowset .section-cta {
  color: #000000;
  text-align: center;
}
.floatbox {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.floatbox img {
  width: 90%;
}.floatbox .modwrap,
.floatbox .block-action,
.floatbox .cta-link,
.floatbox .lead-btn,
.floatbox .page-btn,
.floatbox .primary-cta,
.floatbox .section-action,
.floatbox .section-cta {
  color: #060606;
}
@media (max-width: 992px) {
  .floatbox img {
    width: 100%;
  }
  .floatbox .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.flowunit {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #c6fcff;
}
.flowunit .block__inner {
  padding: 65px 20px 75px;
  border-radius: 10px;
  border: 2px solid #1bdee7;
}
.flowunit .identity-iconfont {
  font-size: 62px;
  color: #ebeaed;
}.flowunit .block-title,
.flowunit .chapter-title,
.flowunit .header-text,
.flowunit .lead-h2,
.flowunit .main-heading,
.flowunit .page-h,
.flowunit .section-heading,
.flowunit .topic-title {
  margin-top: 25px;
  margin-bottom: 0;
  text-align: center;
  color: #060606;
}
.flowunit .modwrap {
  margin-top: 25px;
  margin-bottom: 0;
  color: #000000;
}.flowunit .block-action,
.flowunit .cta-link,
.flowunit .lead-btn,
.flowunit .page-btn,
.flowunit .primary-cta,
.flowunit .section-action,
.flowunit .section-cta {
  margin-top: 40px;
}.flowunit .block-action .btn,
.flowunit .cta-link .btn,
.flowunit .lead-btn .btn,
.flowunit .page-btn .btn,
.flowunit .primary-cta .btn,
.flowunit .section-action .btn,
.flowunit .section-cta .btn {
  height: 50px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .flowunit .modwrap {
    margin-top: 10px;
  }.flowunit .block-title,
.flowunit .chapter-title,
.flowunit .header-text,
.flowunit .lead-h2,
.flowunit .main-heading,
.flowunit .page-h,
.flowunit .section-heading,
.flowunit .topic-title {
    margin-top: 10px;
  }
  .flowunit .block__inner {
    padding: 30px 20px 40px;
  }
}
.formcore {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.formcore .identity-iconfont {
  color: #1bdee7;
  font-size: 5rem;
  width: 5rem;
}
.formcore .boxcore {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}.formcore .block-subtitle,
.formcore .h-secondary,
.formcore .lead-sub,
.formcore .section-sub,
.formcore .section-tag,
.formcore .sub-heading,
.formcore .tagline-h,
.formcore .block-action,
.formcore .cta-link,
.formcore .lead-btn,
.formcore .page-btn,
.formcore .primary-cta,
.formcore .section-action,
.formcore .section-cta {
  color: #060606;
}
.nodemodule {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #c6fcff;
}
.nodemodule .bodybox {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .nodemodule .bodybox {
    padding: 30px 20px;
  }
}
.nodemodule .bodybox .row {
  justify-content: center;
}
.nodemodule .tileunit {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .tileunit {
    margin-bottom: 40px;
  }
}
.nodemodule .tileunit .zonecore {
  display: inline-flex;
  align-items: center;
}
.nodemodule .tileunit .zonecore .logo-wrapper {
  margin-right: 8px;
}
.nodemodule .tileunit .zonecore .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}.nodemodule .tileunit .zonecore .block-title,
.nodemodule .tileunit .zonecore .chapter-title,
.nodemodule .tileunit .zonecore .header-text,
.nodemodule .tileunit .zonecore .lead-h2,
.nodemodule .tileunit .zonecore .main-heading,
.nodemodule .tileunit .zonecore .page-h,
.nodemodule .tileunit .zonecore .section-heading,
.nodemodule .tileunit .zonecore .topic-title {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .nav-wrapper {
    margin-bottom: 40px;
  }
}.nodemodule .nav-wrapper .block-subtitle,
.nodemodule .nav-wrapper .h-secondary,
.nodemodule .nav-wrapper .lead-sub,
.nodemodule .nav-wrapper .section-sub,
.nodemodule .nav-wrapper .section-tag,
.nodemodule .nav-wrapper .sub-heading,
.nodemodule .nav-wrapper .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper .list .item-wrap:hover,
.nodemodule .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .view {
    margin-bottom: 40px;
  }
}.nodemodule .view .block-subtitle,
.nodemodule .view .h-secondary,
.nodemodule .view .lead-sub,
.nodemodule .view .section-sub,
.nodemodule .view .section-tag,
.nodemodule .view .sub-heading,
.nodemodule .view .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .view .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .view .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .view .list .item-wrap:hover,
.nodemodule .view .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .coretrack {
  margin-bottom: 0;
  opacity: .6;
  color: #060606;
  text-align: center;
}.nodemodule .block-title,
.nodemodule .chapter-title,
.nodemodule .header-text,
.nodemodule .lead-h2,
.nodemodule .main-heading,
.nodemodule .page-h,
.nodemodule .section-heading,
.nodemodule .topic-title {
  color: #ed463f;
}.nodemodule .block-subtitle,
.nodemodule .h-secondary,
.nodemodule .lead-sub,
.nodemodule .section-sub,
.nodemodule .section-tag,
.nodemodule .sub-heading,
.nodemodule .tagline-h {
  color: #404349;
}
.nodemodule .list {
  color: #404349;
}
.nodemodule .list,
.nodemodule .item-wrap {
  color: #060606;
}
.domtrack {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .domtrack .navbar-toggler {
    transform: scale(0.8);
  }
}
.domtrack .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.domtrack .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .domtrack .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.domtrack .navbar-brand .wrapperbox {
  line-height: inherit !important;
}
.domtrack .navbar-brand .flexunit a {
  outline: none;
}
.domtrack .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.domtrack .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.domtrack .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::before {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::after {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.domtrack .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.domtrack .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.domtrack .nav-link {
  width: fit-content;
  position: relative;
}
.domtrack .flexunit {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.domtrack .wrapperbox {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .wrapperbox {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .domtrack .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.domtrack .container,
.domtrack .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #1bdee7;
  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: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .domtrack .container,
  .domtrack .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .domtrack .container,
  .domtrack .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.domtrack .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .domtrack .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .domtrack .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.domtrack .boxcore {
  color: #e6eddc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.domtrack .boxcore:hover {
  opacity: .6;
}
.domtrack .nav-item:focus,
.domtrack .nav-link:focus {
  outline: none;
}
.domtrack .navbar {
  min-height: 90px;
  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;
}
.domtrack .navbar .flexunit img {
  width: auto;
}
.domtrack .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .domtrack .navbar {
    min-height: 72px;
  }
  .domtrack .navbar .flexunit img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .domtrack .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domtrack .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .domtrack .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domtrack .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domtrack ul.navbar-nav {
  flex-wrap: wrap;
}
.domtrack .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .domtrack .navbar-buttons {
    text-align: left;
  }
}
.domtrack button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.domtrack .primary-nav {
  padding: 0 1rem;
}
.domtrack a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domtrack .navbar {
    height: 70px;
  }
  .domtrack .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.domtrack .block-action,
.domtrack .cta-link,
.domtrack .lead-btn,
.domtrack .page-btn,
.domtrack .primary-cta,
.domtrack .section-action,
.domtrack .section-cta {
  margin: -0.6rem -0.6rem;
}.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
    width: auto !important;
  }
}
.domtrack .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .domtrack .navbar-brand {
    margin-right: auto;
  }
  .domtrack .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);
  }
  .domtrack .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .domtrack .navbar-collapse {
    padding: 1rem;
  }
}
.domtrack .bodybox {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .domtrack .bodybox {
    display: block;
  }
}
.hold {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #c6fcff;
}
.hold .stack {
  justify-content: space-between;
}
.hold .stack .card {
  justify-content: center;
}.hold .tileunit .block-title,
.hold .tileunit .chapter-title,
.hold .tileunit .header-text,
.hold .tileunit .lead-h2,
.hold .tileunit .main-heading,
.hold .tileunit .page-h,
.hold .tileunit .section-heading,
.hold .tileunit .topic-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {.hold .tileunit .block-title,
.hold .tileunit .chapter-title,
.hold .tileunit .header-text,
.hold .tileunit .lead-h2,
.hold .tileunit .main-heading,
.hold .tileunit .page-h,
.hold .tileunit .section-heading,
.hold .tileunit .topic-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .hold .group {
    margin-bottom: 32px;
  }
}
.hold .group .modwrap {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .hold .group .modwrap {
    margin-bottom: 22px;
  }
}
@media (max-width: 992px) {
  .hold .navwrap {
    margin-bottom: 32px;
  }
}
.hold .navwrap img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hold .navwrap img {
    height: 350px;
  }
}.hold .block-title,
.hold .chapter-title,
.hold .header-text,
.hold .lead-h2,
.hold .main-heading,
.hold .page-h,
.hold .section-heading,
.hold .topic-title {
  color: #000000;
  text-align: justify;
}
.hold .modwrap {
  color: #000000;
}
.tile {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.tile .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .tile .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .tile .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .tile .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .tile .container {
    padding: 0 16px;
  }
}
.tile .row {
  justify-content: center;
}.tile .group .block-subtitle,
.tile .group .h-secondary,
.tile .group .lead-sub,
.tile .group .section-sub,
.tile .group .section-tag,
.tile .group .sub-heading,
.tile .group .tagline-h {
  margin-bottom: 32px;
}.tile .group .block-title,
.tile .group .chapter-title,
.tile .group .header-text,
.tile .group .lead-h2,
.tile .group .main-heading,
.tile .group .page-h,
.tile .group .section-heading,
.tile .group .topic-title {
  margin-bottom: 16px;
}
.tile .group .modwrap {
  margin-bottom: 0;
}.tile .block-title,
.tile .chapter-title,
.tile .header-text,
.tile .lead-h2,
.tile .main-heading,
.tile .page-h,
.tile .section-heading,
.tile .topic-title {
  color: #000000;
  text-align: center;
}.tile .block-subtitle,
.tile .h-secondary,
.tile .lead-sub,
.tile .section-sub,
.tile .section-tag,
.tile .sub-heading,
.tile .tagline-h {
  color: #000000;
  text-align: center;
}
.tile .modwrap {
  color: #000000;
  text-align: center;
}
.clipwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.clipwrap .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .clipwrap .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .clipwrap .container {
    padding: 0 24px;
  }
}
.clipwrap .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.clipwrap .navwrap {
  height: 100%;
}
.clipwrap .navwrap img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .clipwrap .navwrap img {
    height: 350px;
  }
}
.clipwrap .group {
  display: flex;
  align-items: center;
  background-color: #c6fcff;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .clipwrap .group {
    padding: 24px;
  }
}
.clipwrap .group .bodybox {
  width: 100%;
}.clipwrap .group .bodybox .block-title,
.clipwrap .group .bodybox .chapter-title,
.clipwrap .group .bodybox .header-text,
.clipwrap .group .bodybox .lead-h2,
.clipwrap .group .bodybox .main-heading,
.clipwrap .group .bodybox .page-h,
.clipwrap .group .bodybox .section-heading,
.clipwrap .group .bodybox .topic-title {
  margin-bottom: 32px;
}
.clipwrap .group .bodybox .modwrap {
  margin-bottom: 16px;
}.clipwrap .group .bodybox .block-action .btn::before,
.clipwrap .group .bodybox .cta-link .btn::before,
.clipwrap .group .bodybox .lead-btn .btn::before,
.clipwrap .group .bodybox .page-btn .btn::before,
.clipwrap .group .bodybox .primary-cta .btn::before,
.clipwrap .group .bodybox .section-action .btn::before,
.clipwrap .group .bodybox .section-cta .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}.clipwrap .group .bodybox .block-action .btn:hover,
.clipwrap .group .bodybox .cta-link .btn:hover,
.clipwrap .group .bodybox .lead-btn .btn:hover,
.clipwrap .group .bodybox .page-btn .btn:hover,
.clipwrap .group .bodybox .primary-cta .btn:hover,
.clipwrap .group .bodybox .section-action .btn:hover,
.clipwrap .group .bodybox .section-cta .btn:hover,
.clipwrap .group .bodybox .block-action .btn:focus,
.clipwrap .group .bodybox .cta-link .btn:focus,
.clipwrap .group .bodybox .lead-btn .btn:focus,
.clipwrap .group .bodybox .page-btn .btn:focus,
.clipwrap .group .bodybox .primary-cta .btn:focus,
.clipwrap .group .bodybox .section-action .btn:focus,
.clipwrap .group .bodybox .section-cta .btn:focus {
  box-shadow: inset 250px 10px 5px #1bdee7 !important;
  border-color: #1bdee7 !important;
}.clipwrap .block-title,
.clipwrap .chapter-title,
.clipwrap .header-text,
.clipwrap .lead-h2,
.clipwrap .main-heading,
.clipwrap .page-h,
.clipwrap .section-heading,
.clipwrap .topic-title {
  color: #141414;
}
.clipwrap .modwrap {
  color: #141414;
}
.modlayer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c6fcff;
}.modlayer .block-title,
.modlayer .chapter-title,
.modlayer .header-text,
.modlayer .lead-h2,
.modlayer .main-heading,
.modlayer .page-h,
.modlayer .section-heading,
.modlayer .topic-title {
  color: #000000;
}.modlayer .block-subtitle,
.modlayer .h-secondary,
.modlayer .lead-sub,
.modlayer .section-sub,
.modlayer .section-tag,
.modlayer .sub-heading,
.modlayer .tagline-h {
  color: #000000;
}
.modlayer .modwrap {
  color: #000000;
  padding: 2rem;
}
@media (max-width: 992px) {
  .modlayer .modwrap {
    padding: 0;
    margin-top: 2rem;
  }
}
.modlayer .line {
  height: 2px;
  background: currentColor;
  margin-bottom: 1.5rem;
}.modlayer .block-title,
.modlayer .chapter-title,
.modlayer .header-text,
.modlayer .lead-h2,
.modlayer .main-heading,
.modlayer .page-h,
.modlayer .section-heading,
.modlayer .topic-title,
.modlayer .line {
  color: #000000;
}
.partgrid {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.partgrid .identity-iconfont {
  color: #1bdee7;
  font-size: 5rem;
  width: 5rem;
}
.partgrid .boxcore {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}.partgrid .block-subtitle,
.partgrid .h-secondary,
.partgrid .lead-sub,
.partgrid .section-sub,
.partgrid .section-tag,
.partgrid .sub-heading,
.partgrid .tagline-h,
.partgrid .block-action,
.partgrid .cta-link,
.partgrid .lead-btn,
.partgrid .page-btn,
.partgrid .primary-cta,
.partgrid .section-action,
.partgrid .section-cta {
  color: #060606;
}
.nodemodule {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #c6fcff;
}
.nodemodule .bodybox {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .nodemodule .bodybox {
    padding: 30px 20px;
  }
}
.nodemodule .bodybox .row {
  justify-content: center;
}
.nodemodule .tileunit {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .tileunit {
    margin-bottom: 40px;
  }
}
.nodemodule .tileunit .zonecore {
  display: inline-flex;
  align-items: center;
}
.nodemodule .tileunit .zonecore .logo-wrapper {
  margin-right: 8px;
}
.nodemodule .tileunit .zonecore .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}.nodemodule .tileunit .zonecore .block-title,
.nodemodule .tileunit .zonecore .chapter-title,
.nodemodule .tileunit .zonecore .header-text,
.nodemodule .tileunit .zonecore .lead-h2,
.nodemodule .tileunit .zonecore .main-heading,
.nodemodule .tileunit .zonecore .page-h,
.nodemodule .tileunit .zonecore .section-heading,
.nodemodule .tileunit .zonecore .topic-title {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .nav-wrapper {
    margin-bottom: 40px;
  }
}.nodemodule .nav-wrapper .block-subtitle,
.nodemodule .nav-wrapper .h-secondary,
.nodemodule .nav-wrapper .lead-sub,
.nodemodule .nav-wrapper .section-sub,
.nodemodule .nav-wrapper .section-tag,
.nodemodule .nav-wrapper .sub-heading,
.nodemodule .nav-wrapper .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper .list .item-wrap:hover,
.nodemodule .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .view {
    margin-bottom: 40px;
  }
}.nodemodule .view .block-subtitle,
.nodemodule .view .h-secondary,
.nodemodule .view .lead-sub,
.nodemodule .view .section-sub,
.nodemodule .view .section-tag,
.nodemodule .view .sub-heading,
.nodemodule .view .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .view .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .view .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .view .list .item-wrap:hover,
.nodemodule .view .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .coretrack {
  margin-bottom: 0;
  opacity: .6;
  color: #060606;
  text-align: center;
}.nodemodule .block-title,
.nodemodule .chapter-title,
.nodemodule .header-text,
.nodemodule .lead-h2,
.nodemodule .main-heading,
.nodemodule .page-h,
.nodemodule .section-heading,
.nodemodule .topic-title {
  color: #ed463f;
}.nodemodule .block-subtitle,
.nodemodule .h-secondary,
.nodemodule .lead-sub,
.nodemodule .section-sub,
.nodemodule .section-tag,
.nodemodule .sub-heading,
.nodemodule .tagline-h {
  color: #404349;
}
.nodemodule .list {
  color: #404349;
}
.nodemodule .list,
.nodemodule .item-wrap {
  color: #060606;
}
.domtrack {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .domtrack .navbar-toggler {
    transform: scale(0.8);
  }
}
.domtrack .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.domtrack .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .domtrack .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.domtrack .navbar-brand .wrapperbox {
  line-height: inherit !important;
}
.domtrack .navbar-brand .flexunit a {
  outline: none;
}
.domtrack .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.domtrack .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.domtrack .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::before {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::after {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.domtrack .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.domtrack .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.domtrack .nav-link {
  width: fit-content;
  position: relative;
}
.domtrack .flexunit {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.domtrack .wrapperbox {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .wrapperbox {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .domtrack .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.domtrack .container,
.domtrack .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #1bdee7;
  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: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .domtrack .container,
  .domtrack .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .domtrack .container,
  .domtrack .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.domtrack .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .domtrack .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .domtrack .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.domtrack .boxcore {
  color: #e6eddc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.domtrack .boxcore:hover {
  opacity: .6;
}
.domtrack .nav-item:focus,
.domtrack .nav-link:focus {
  outline: none;
}
.domtrack .navbar {
  min-height: 90px;
  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;
}
.domtrack .navbar .flexunit img {
  width: auto;
}
.domtrack .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .domtrack .navbar {
    min-height: 72px;
  }
  .domtrack .navbar .flexunit img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .domtrack .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domtrack .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .domtrack .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domtrack .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domtrack ul.navbar-nav {
  flex-wrap: wrap;
}
.domtrack .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .domtrack .navbar-buttons {
    text-align: left;
  }
}
.domtrack button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.domtrack .primary-nav {
  padding: 0 1rem;
}
.domtrack a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domtrack .navbar {
    height: 70px;
  }
  .domtrack .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.domtrack .block-action,
.domtrack .cta-link,
.domtrack .lead-btn,
.domtrack .page-btn,
.domtrack .primary-cta,
.domtrack .section-action,
.domtrack .section-cta {
  margin: -0.6rem -0.6rem;
}.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
    width: auto !important;
  }
}
.domtrack .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .domtrack .navbar-brand {
    margin-right: auto;
  }
  .domtrack .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);
  }
  .domtrack .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .domtrack .navbar-collapse {
    padding: 1rem;
  }
}
.domtrack .bodybox {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .domtrack .bodybox {
    display: block;
  }
}
.shellcell {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #c6fcff;
  overflow: hidden;
}
.shellcell .group {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .shellcell .group {
    padding: 0 16px;
  }
}
.shellcell .group::before,
.shellcell .group::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 1000vh;
  background-color: #1bdee7;
}
.shellcell .group::before {
  left: 0;
}
.shellcell .group::after {
  right: 0;
}
.shellcell .bodybox {
  width: -webkit-fill-available;
  min-width: -moz-available;
  align-items: center;
}.shellcell .block-title,
.shellcell .chapter-title,
.shellcell .header-text,
.shellcell .lead-h2,
.shellcell .main-heading,
.shellcell .page-h,
.shellcell .section-heading,
.shellcell .topic-title {
  margin-bottom: 32px;
  color: #0a0a0a;
}
.shellcell .text-wrapper .modwrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .shellcell .text-wrapper .modwrap {
    width: 100%;
  }
}.shellcell .block-action,
.shellcell .cta-link,
.shellcell .lead-btn,
.shellcell .page-btn,
.shellcell .primary-cta,
.shellcell .section-action,
.shellcell .section-cta {
  margin-top: 24px;
}
.shellcell .navwrap {
  position: relative;
}
@media (max-width: 992px) {
  .shellcell .navwrap {
    margin-top: 32px;
  }
}
.shellcell .navwrap .tilenode {
  display: grid;
  position: absolute;
  grid-template-rows: repeat(3, 28px);
  grid-template-columns: repeat(3, minmax(28px, 1fr));
  grid-auto-rows: 28px;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  will-change: transform;
  animation: none !important;
}
.shellcell .navwrap .tilenode .item-decor {
  width: 100%;
  height: 100%;
  background-color: #c6fcff;
  box-shadow: 0 -28px 0 #c6fcff;
  transform: none;
}
.shellcell .navwrap .tilenode .zonepad {
  background-color: transparent;
  box-shadow: none;
}
.shellcell .navwrap .decor_1 {
  top: -1px;
  left: -1px;
}
.shellcell .navwrap .decor_2 {
  grid-template-rows: none;
  top: -1px;
  right: -1px;
}
.shellcell .navwrap .stage img {
  height: 575px;
  width: 100%;
  object-fit: cover;
  animation: none;
}
@media (max-width: 992px) {
  .shellcell .navwrap .stage img {
    height: 300px;
  }
}
.shellcell .modwrap {
  color: #0a0a0a;
}.shellcell .block-title,
.shellcell .chapter-title,
.shellcell .header-text,
.shellcell .lead-h2,
.shellcell .main-heading,
.shellcell .page-h,
.shellcell .section-heading,
.shellcell .topic-title,
.shellcell .block-action,
.shellcell .cta-link,
.shellcell .lead-btn,
.shellcell .page-btn,
.shellcell .primary-cta,
.shellcell .section-action,
.shellcell .section-cta,
.shellcell .tileunit {
  color: #060606;
  text-align: center;
}
.shellcell .modwrap,
.shellcell .text-wrapper {
  text-align: center;
}
.alignbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.alignbox .bodybox {
  margin: 0 -25px;
}
.alignbox .bodybox .card {
  padding: 0 25px;
}
@media (max-width: 992px) {
  .alignbox .tileunit {
    margin-bottom: 50px;
  }
}.alignbox .tileunit .zonecore .block-title,
.alignbox .tileunit .zonecore .chapter-title,
.alignbox .tileunit .zonecore .header-text,
.alignbox .tileunit .zonecore .lead-h2,
.alignbox .tileunit .zonecore .main-heading,
.alignbox .tileunit .zonecore .page-h,
.alignbox .tileunit .zonecore .section-heading,
.alignbox .tileunit .zonecore .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 25px;
}
@media (max-width: 1440px) {.alignbox .tileunit .zonecore .block-title,
.alignbox .tileunit .zonecore .chapter-title,
.alignbox .tileunit .zonecore .header-text,
.alignbox .tileunit .zonecore .lead-h2,
.alignbox .tileunit .zonecore .main-heading,
.alignbox .tileunit .zonecore .page-h,
.alignbox .tileunit .zonecore .section-heading,
.alignbox .tileunit .zonecore .topic-title {
    width: 100%;
  }
}
.alignbox .tileunit .navwrap img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .alignbox .tileunit .navwrap img {
    height: 300px;
  }
}.alignbox .fieldnode .block-subtitle,
.alignbox .fieldnode .h-secondary,
.alignbox .fieldnode .lead-sub,
.alignbox .fieldnode .section-sub,
.alignbox .fieldnode .section-tag,
.alignbox .fieldnode .sub-heading,
.alignbox .fieldnode .tagline-h {
  margin-bottom: 25px;
}
.alignbox .slotunit {
  color: #000000;
}.alignbox .block-title,
.alignbox .chapter-title,
.alignbox .header-text,
.alignbox .lead-h2,
.alignbox .main-heading,
.alignbox .page-h,
.alignbox .section-heading,
.alignbox .topic-title {
  color: #000000;
}.alignbox .block-subtitle,
.alignbox .h-secondary,
.alignbox .lead-sub,
.alignbox .section-sub,
.alignbox .section-tag,
.alignbox .sub-heading,
.alignbox .tagline-h {
  color: #000000;
}
.alignbox label {
  color: #000000;
}
.scaffold {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c6fcff;
}
.scaffold .row {
  margin: 0 -6px;
}
.scaffold .card {
  padding: 0 6px;
}
.scaffold .card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 48px 100px;
  background-color: #ffffff;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 1440px) {
  .scaffold .card-wrapper {
    padding: 48px 64px;
  }
}
@media (max-width: 992px) {
  .scaffold .card-wrapper {
    padding: 48px 24px;
    margin-top: 3px;
    margin-bottom: 3px;
  }
}
.scaffold .card-wrapper .tileunit .slotunit {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .scaffold .card-wrapper .tileunit .slotunit {
    margin-bottom: 24px;
  }
}.scaffold .card-wrapper .tileunit .block-title,
.scaffold .card-wrapper .tileunit .chapter-title,
.scaffold .card-wrapper .tileunit .header-text,
.scaffold .card-wrapper .tileunit .lead-h2,
.scaffold .card-wrapper .tileunit .main-heading,
.scaffold .card-wrapper .tileunit .page-h,
.scaffold .card-wrapper .tileunit .section-heading,
.scaffold .card-wrapper .tileunit .topic-title {
  margin-bottom: 24px;
}
.scaffold .card-wrapper .logo-wrapper {
  margin: 84px 0;
}
@media (max-width: 1440px) {
  .scaffold .card-wrapper .logo-wrapper {
    margin: 24px 0;
  }
}
.scaffold .card-wrapper .logo-wrapper img {
  width: 290px;
  height: 290px;
  object-fit: cover;
  display: inline-flex;
}
@media (max-width: 992px) {
  .scaffold .card-wrapper .logo-wrapper img {
    width: 180px;
    height: 180px;
  }
}.scaffold .card-wrapper .block-action .btn,
.scaffold .card-wrapper .cta-link .btn,
.scaffold .card-wrapper .lead-btn .btn,
.scaffold .card-wrapper .page-btn .btn,
.scaffold .card-wrapper .primary-cta .btn,
.scaffold .card-wrapper .section-action .btn,
.scaffold .card-wrapper .section-cta .btn {
  margin-bottom: 0;
}
.scaffold .card-wrapper .item {
  margin-bottom: 24px;
}
.scaffold .card-wrapper .item:first-child .item-wrapper {
  border-top: 1px solid #1bdee7;
  padding-top: 24px;
}
.scaffold .card-wrapper .item .item-wrapper {
  padding-bottom: 24px;
  border-bottom: 1px solid #1bdee7;
  display: flex;
  justify-content: space-between;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .scaffold .card-wrapper .item .item-wrapper {
    display: block;
  }
}
.scaffold .card-wrapper .item .item-wrapper .card-title {
  width: 50%;
  margin-bottom: 0;
  padding-right: 24px;
}
@media (max-width: 1440px) {
  .scaffold .card-wrapper .item .item-wrapper .card-title {
    width: 35%;
  }
}
@media (max-width: 992px) {
  .scaffold .card-wrapper .item .item-wrapper .card-title {
    width: 100% !important;
    padding-right: 0;
    margin-bottom: 24px;
  }
}
.scaffold .card-wrapper .item .item-wrapper .card-text {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .scaffold .card-wrapper .item .item-wrapper .card-text {
    width: 65%;
  }
}
@media (max-width: 992px) {
  .scaffold .card-wrapper .item .item-wrapper .card-text {
    width: 100% !important;
  }
}
.scaffold .slotunit {
  color: #000000;
  text-align: center;
}.scaffold .block-title,
.scaffold .chapter-title,
.scaffold .header-text,
.scaffold .lead-h2,
.scaffold .main-heading,
.scaffold .page-h,
.scaffold .section-heading,
.scaffold .topic-title {
  color: #f5f8ff;
}
.scaffold .card-title {
  color: #f5f8ff;
}
.scaffold .card-text {
  color: #000000;
}.scaffold .block-title,
.scaffold .chapter-title,
.scaffold .header-text,
.scaffold .lead-h2,
.scaffold .main-heading,
.scaffold .page-h,
.scaffold .section-heading,
.scaffold .topic-title,
.scaffold .block-action,
.scaffold .cta-link,
.scaffold .lead-btn,
.scaffold .page-btn,
.scaffold .primary-cta,
.scaffold .section-action,
.scaffold .section-cta,
.scaffold .logo-wrapper {
  text-align: center;
  color: #000000;
}.scaffold .card-title,
.scaffold .block-action,
.scaffold .cta-link,
.scaffold .lead-btn,
.scaffold .page-btn,
.scaffold .primary-cta,
.scaffold .section-action,
.scaffold .section-cta {
  color: #000000;
}
.borderbox {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.borderbox .identity-iconfont {
  color: #1bdee7;
  font-size: 5rem;
  width: 5rem;
}
.borderbox .boxcore {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}.borderbox .block-subtitle,
.borderbox .h-secondary,
.borderbox .lead-sub,
.borderbox .section-sub,
.borderbox .section-tag,
.borderbox .sub-heading,
.borderbox .tagline-h,
.borderbox .block-action,
.borderbox .cta-link,
.borderbox .lead-btn,
.borderbox .page-btn,
.borderbox .primary-cta,
.borderbox .section-action,
.borderbox .section-cta {
  color: #060606;
}
.nodemodule {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #c6fcff;
}
.nodemodule .bodybox {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .nodemodule .bodybox {
    padding: 30px 20px;
  }
}
.nodemodule .bodybox .row {
  justify-content: center;
}
.nodemodule .tileunit {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .tileunit {
    margin-bottom: 40px;
  }
}
.nodemodule .tileunit .zonecore {
  display: inline-flex;
  align-items: center;
}
.nodemodule .tileunit .zonecore .logo-wrapper {
  margin-right: 8px;
}
.nodemodule .tileunit .zonecore .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}.nodemodule .tileunit .zonecore .block-title,
.nodemodule .tileunit .zonecore .chapter-title,
.nodemodule .tileunit .zonecore .header-text,
.nodemodule .tileunit .zonecore .lead-h2,
.nodemodule .tileunit .zonecore .main-heading,
.nodemodule .tileunit .zonecore .page-h,
.nodemodule .tileunit .zonecore .section-heading,
.nodemodule .tileunit .zonecore .topic-title {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .nav-wrapper {
    margin-bottom: 40px;
  }
}.nodemodule .nav-wrapper .block-subtitle,
.nodemodule .nav-wrapper .h-secondary,
.nodemodule .nav-wrapper .lead-sub,
.nodemodule .nav-wrapper .section-sub,
.nodemodule .nav-wrapper .section-tag,
.nodemodule .nav-wrapper .sub-heading,
.nodemodule .nav-wrapper .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper .list .item-wrap:hover,
.nodemodule .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .view {
    margin-bottom: 40px;
  }
}.nodemodule .view .block-subtitle,
.nodemodule .view .h-secondary,
.nodemodule .view .lead-sub,
.nodemodule .view .section-sub,
.nodemodule .view .section-tag,
.nodemodule .view .sub-heading,
.nodemodule .view .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .view .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .view .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .view .list .item-wrap:hover,
.nodemodule .view .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .coretrack {
  margin-bottom: 0;
  opacity: .6;
  color: #060606;
  text-align: center;
}.nodemodule .block-title,
.nodemodule .chapter-title,
.nodemodule .header-text,
.nodemodule .lead-h2,
.nodemodule .main-heading,
.nodemodule .page-h,
.nodemodule .section-heading,
.nodemodule .topic-title {
  color: #ed463f;
}.nodemodule .block-subtitle,
.nodemodule .h-secondary,
.nodemodule .lead-sub,
.nodemodule .section-sub,
.nodemodule .section-tag,
.nodemodule .sub-heading,
.nodemodule .tagline-h {
  color: #404349;
}
.nodemodule .list {
  color: #404349;
}
.nodemodule .list,
.nodemodule .item-wrap {
  color: #060606;
}
.domtrack {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .domtrack .navbar-toggler {
    transform: scale(0.8);
  }
}
.domtrack .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.domtrack .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .domtrack .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.domtrack .navbar-brand .wrapperbox {
  line-height: inherit !important;
}
.domtrack .navbar-brand .flexunit a {
  outline: none;
}
.domtrack .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.domtrack .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.domtrack .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::before {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item::after {
    display: none;
  }
}
.domtrack .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.domtrack .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.domtrack .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.domtrack .nav-link {
  width: fit-content;
  position: relative;
}
.domtrack .flexunit {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.domtrack .wrapperbox {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .domtrack .wrapperbox {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .domtrack .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.domtrack .container,
.domtrack .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #1bdee7;
  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: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .domtrack .container,
  .domtrack .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .domtrack .container,
  .domtrack .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.domtrack .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .domtrack .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .domtrack .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.domtrack .boxcore {
  color: #e6eddc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.domtrack .boxcore:hover {
  opacity: .6;
}
.domtrack .nav-item:focus,
.domtrack .nav-link:focus {
  outline: none;
}
.domtrack .navbar {
  min-height: 90px;
  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;
}
.domtrack .navbar .flexunit img {
  width: auto;
}
.domtrack .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .domtrack .navbar {
    min-height: 72px;
  }
  .domtrack .navbar .flexunit img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .domtrack .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domtrack .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .domtrack .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domtrack .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domtrack ul.navbar-nav {
  flex-wrap: wrap;
}
.domtrack .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .domtrack .navbar-buttons {
    text-align: left;
  }
}
.domtrack button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.domtrack .primary-nav {
  padding: 0 1rem;
}
.domtrack a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domtrack .navbar {
    height: 70px;
  }
  .domtrack .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.domtrack .block-action,
.domtrack .cta-link,
.domtrack .lead-btn,
.domtrack .page-btn,
.domtrack .primary-cta,
.domtrack .section-action,
.domtrack .section-cta {
  margin: -0.6rem -0.6rem;
}.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {.domtrack .block-action .btn,
.domtrack .cta-link .btn,
.domtrack .lead-btn .btn,
.domtrack .page-btn .btn,
.domtrack .primary-cta .btn,
.domtrack .section-action .btn,
.domtrack .section-cta .btn {
    width: auto !important;
  }
}
.domtrack .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .domtrack .navbar-brand {
    margin-right: auto;
  }
  .domtrack .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);
  }
  .domtrack .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .domtrack .navbar-collapse {
    padding: 1rem;
  }
}
.domtrack .bodybox {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .domtrack .bodybox {
    display: block;
  }
}
.blocklayer {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #c6fcff;
}
@media (max-width: 992px) {
  .blocklayer .container {
    padding: 0 30px;
  }
}
.blocklayer .row {
  justify-content: center;
}
.blocklayer .tileunit {
  margin: 0 12%;
  border-bottom: 1px solid #1bdee7;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .blocklayer .tileunit {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 992px) {
  .blocklayer .tileunit {
    margin: 0;
  }
}.blocklayer .tileunit .block-subtitle,
.blocklayer .tileunit .h-secondary,
.blocklayer .tileunit .lead-sub,
.blocklayer .tileunit .section-sub,
.blocklayer .tileunit .section-tag,
.blocklayer .tileunit .sub-heading,
.blocklayer .tileunit .tagline-h {
  margin-bottom: 30px;
}.blocklayer .tileunit .block-title,
.blocklayer .tileunit .chapter-title,
.blocklayer .tileunit .header-text,
.blocklayer .tileunit .lead-h2,
.blocklayer .tileunit .main-heading,
.blocklayer .tileunit .page-h,
.blocklayer .tileunit .section-heading,
.blocklayer .tileunit .topic-title {
  margin-bottom: 50px;
}
.blocklayer .text-wrapper .modwrap {
  margin-bottom: 16px;
}.blocklayer .block-subtitle,
.blocklayer .h-secondary,
.blocklayer .lead-sub,
.blocklayer .section-sub,
.blocklayer .section-tag,
.blocklayer .sub-heading,
.blocklayer .tagline-h {
  color: #f1f4e9;
  text-align: center;
}.blocklayer .block-title,
.blocklayer .chapter-title,
.blocklayer .header-text,
.blocklayer .lead-h2,
.blocklayer .main-heading,
.blocklayer .page-h,
.blocklayer .section-heading,
.blocklayer .topic-title {
  color: #000000;
  text-align: center;
}
.blocklayer .modwrap {
  color: #000000;
}
.patternbox {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #c6fcff;
}
.patternbox .modwrap {
  color: #060606;
}
.unitrow {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.unitrow .identity-iconfont {
  color: #1bdee7;
  font-size: 5rem;
  width: 5rem;
}
.unitrow .boxcore {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}.unitrow .block-subtitle,
.unitrow .h-secondary,
.unitrow .lead-sub,
.unitrow .section-sub,
.unitrow .section-tag,
.unitrow .sub-heading,
.unitrow .tagline-h,
.unitrow .block-action,
.unitrow .cta-link,
.unitrow .lead-btn,
.unitrow .page-btn,
.unitrow .primary-cta,
.unitrow .section-action,
.unitrow .section-cta {
  color: #060606;
}
.nodemodule {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #c6fcff;
}
.nodemodule .bodybox {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .nodemodule .bodybox {
    padding: 30px 20px;
  }
}
.nodemodule .bodybox .row {
  justify-content: center;
}
.nodemodule .tileunit {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .tileunit {
    margin-bottom: 40px;
  }
}
.nodemodule .tileunit .zonecore {
  display: inline-flex;
  align-items: center;
}
.nodemodule .tileunit .zonecore .logo-wrapper {
  margin-right: 8px;
}
.nodemodule .tileunit .zonecore .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}.nodemodule .tileunit .zonecore .block-title,
.nodemodule .tileunit .zonecore .chapter-title,
.nodemodule .tileunit .zonecore .header-text,
.nodemodule .tileunit .zonecore .lead-h2,
.nodemodule .tileunit .zonecore .main-heading,
.nodemodule .tileunit .zonecore .page-h,
.nodemodule .tileunit .zonecore .section-heading,
.nodemodule .tileunit .zonecore .topic-title {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .nav-wrapper {
    margin-bottom: 40px;
  }
}.nodemodule .nav-wrapper .block-subtitle,
.nodemodule .nav-wrapper .h-secondary,
.nodemodule .nav-wrapper .lead-sub,
.nodemodule .nav-wrapper .section-sub,
.nodemodule .nav-wrapper .section-tag,
.nodemodule .nav-wrapper .sub-heading,
.nodemodule .nav-wrapper .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper .list .item-wrap:hover,
.nodemodule .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .view {
    margin-bottom: 40px;
  }
}.nodemodule .view .block-subtitle,
.nodemodule .view .h-secondary,
.nodemodule .view .lead-sub,
.nodemodule .view .section-sub,
.nodemodule .view .section-tag,
.nodemodule .view .sub-heading,
.nodemodule .view .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .view .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .view .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .view .list .item-wrap:hover,
.nodemodule .view .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .coretrack {
  margin-bottom: 0;
  opacity: .6;
  color: #060606;
  text-align: center;
}.nodemodule .block-title,
.nodemodule .chapter-title,
.nodemodule .header-text,
.nodemodule .lead-h2,
.nodemodule .main-heading,
.nodemodule .page-h,
.nodemodule .section-heading,
.nodemodule .topic-title {
  color: #ed463f;
}.nodemodule .block-subtitle,
.nodemodule .h-secondary,
.nodemodule .lead-sub,
.nodemodule .section-sub,
.nodemodule .section-tag,
.nodemodule .sub-heading,
.nodemodule .tagline-h {
  color: #404349;
}
.nodemodule .list {
  color: #404349;
}
.nodemodule .list,
.nodemodule .item-wrap {
  color: #060606;
}
.foldbox {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .foldbox .navbar-toggler {
    transform: scale(0.8);
  }
}
.foldbox .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.foldbox .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .foldbox .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.foldbox .navbar-brand .wrapperbox {
  line-height: inherit !important;
}
.foldbox .navbar-brand .flexunit a {
  outline: none;
}
.foldbox .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.foldbox .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .foldbox .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.foldbox .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .foldbox .navbar-nav .nav-item::before {
    display: none;
  }
}
.foldbox .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .foldbox .navbar-nav .nav-item::after {
    display: none;
  }
}
.foldbox .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.foldbox .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.foldbox .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .foldbox .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.foldbox .nav-link {
  width: fit-content;
  position: relative;
}
.foldbox .flexunit {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.foldbox .wrapperbox {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .foldbox .wrapperbox {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .foldbox .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.foldbox .container,
.foldbox .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #1bdee7;
  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: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .foldbox .container,
  .foldbox .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .foldbox .container,
  .foldbox .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.foldbox .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .foldbox .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .foldbox .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.foldbox .boxcore {
  color: #e6eddc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.foldbox .boxcore:hover {
  opacity: .6;
}
.foldbox .nav-item:focus,
.foldbox .nav-link:focus {
  outline: none;
}
.foldbox .navbar {
  min-height: 90px;
  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;
}
.foldbox .navbar .flexunit img {
  width: auto;
}
.foldbox .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .foldbox .navbar {
    min-height: 72px;
  }
  .foldbox .navbar .flexunit img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .foldbox .navbar .nav-item .nav-link::before {
    display: none;
  }
  .foldbox .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .foldbox .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.foldbox .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.foldbox ul.navbar-nav {
  flex-wrap: wrap;
}
.foldbox .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .foldbox .navbar-buttons {
    text-align: left;
  }
}
.foldbox button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.foldbox .primary-nav {
  padding: 0 1rem;
}
.foldbox a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .foldbox .navbar {
    height: 70px;
  }
  .foldbox .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.foldbox .block-action,
.foldbox .cta-link,
.foldbox .lead-btn,
.foldbox .page-btn,
.foldbox .primary-cta,
.foldbox .section-action,
.foldbox .section-cta {
  margin: -0.6rem -0.6rem;
}.foldbox .block-action .btn,
.foldbox .cta-link .btn,
.foldbox .lead-btn .btn,
.foldbox .page-btn .btn,
.foldbox .primary-cta .btn,
.foldbox .section-action .btn,
.foldbox .section-cta .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {.foldbox .block-action .btn,
.foldbox .cta-link .btn,
.foldbox .lead-btn .btn,
.foldbox .page-btn .btn,
.foldbox .primary-cta .btn,
.foldbox .section-action .btn,
.foldbox .section-cta .btn {
    width: auto !important;
  }
}
.foldbox .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .foldbox .navbar-brand {
    margin-right: auto;
  }
  .foldbox .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);
  }
  .foldbox .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .foldbox .navbar-collapse {
    padding: 1rem;
  }
}
.foldbox .bodybox {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .foldbox .bodybox {
    display: block;
  }
}
.buildbox {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #c6fcff;
}
@media (max-width: 992px) {
  .buildbox .container {
    padding: 0 30px;
  }
}
.buildbox .row {
  justify-content: center;
}
.buildbox .tileunit {
  margin: 0 12%;
  border-bottom: 1px solid #1bdee7;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .buildbox .tileunit {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 992px) {
  .buildbox .tileunit {
    margin: 0;
  }
}.buildbox .tileunit .block-subtitle,
.buildbox .tileunit .h-secondary,
.buildbox .tileunit .lead-sub,
.buildbox .tileunit .section-sub,
.buildbox .tileunit .section-tag,
.buildbox .tileunit .sub-heading,
.buildbox .tileunit .tagline-h {
  margin-bottom: 30px;
}.buildbox .tileunit .block-title,
.buildbox .tileunit .chapter-title,
.buildbox .tileunit .header-text,
.buildbox .tileunit .lead-h2,
.buildbox .tileunit .main-heading,
.buildbox .tileunit .page-h,
.buildbox .tileunit .section-heading,
.buildbox .tileunit .topic-title {
  margin-bottom: 50px;
}
.buildbox .text-wrapper .modwrap {
  margin-bottom: 16px;
}.buildbox .block-subtitle,
.buildbox .h-secondary,
.buildbox .lead-sub,
.buildbox .section-sub,
.buildbox .section-tag,
.buildbox .sub-heading,
.buildbox .tagline-h {
  color: #f1f4e9;
  text-align: center;
}.buildbox .block-title,
.buildbox .chapter-title,
.buildbox .header-text,
.buildbox .lead-h2,
.buildbox .main-heading,
.buildbox .page-h,
.buildbox .section-heading,
.buildbox .topic-title {
  color: #000000;
  text-align: center;
}
.buildbox .modwrap {
  color: #000000;
}
.tilecell {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #c6fcff;
}
.tilecell .modwrap {
  color: #060606;
}
.coreunit {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.coreunit .identity-iconfont {
  color: #1bdee7;
  font-size: 5rem;
  width: 5rem;
}
.coreunit .boxcore {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}.coreunit .block-subtitle,
.coreunit .h-secondary,
.coreunit .lead-sub,
.coreunit .section-sub,
.coreunit .section-tag,
.coreunit .sub-heading,
.coreunit .tagline-h,
.coreunit .block-action,
.coreunit .cta-link,
.coreunit .lead-btn,
.coreunit .page-btn,
.coreunit .primary-cta,
.coreunit .section-action,
.coreunit .section-cta {
  color: #060606;
}
.nodemodule {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #c6fcff;
}
.nodemodule .bodybox {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .nodemodule .bodybox {
    padding: 30px 20px;
  }
}
.nodemodule .bodybox .row {
  justify-content: center;
}
.nodemodule .tileunit {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .tileunit {
    margin-bottom: 40px;
  }
}
.nodemodule .tileunit .zonecore {
  display: inline-flex;
  align-items: center;
}
.nodemodule .tileunit .zonecore .logo-wrapper {
  margin-right: 8px;
}
.nodemodule .tileunit .zonecore .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}.nodemodule .tileunit .zonecore .block-title,
.nodemodule .tileunit .zonecore .chapter-title,
.nodemodule .tileunit .zonecore .header-text,
.nodemodule .tileunit .zonecore .lead-h2,
.nodemodule .tileunit .zonecore .main-heading,
.nodemodule .tileunit .zonecore .page-h,
.nodemodule .tileunit .zonecore .section-heading,
.nodemodule .tileunit .zonecore .topic-title {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .nav-wrapper {
    margin-bottom: 40px;
  }
}.nodemodule .nav-wrapper .block-subtitle,
.nodemodule .nav-wrapper .h-secondary,
.nodemodule .nav-wrapper .lead-sub,
.nodemodule .nav-wrapper .section-sub,
.nodemodule .nav-wrapper .section-tag,
.nodemodule .nav-wrapper .sub-heading,
.nodemodule .nav-wrapper .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper .list .item-wrap:hover,
.nodemodule .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .view {
    margin-bottom: 40px;
  }
}.nodemodule .view .block-subtitle,
.nodemodule .view .h-secondary,
.nodemodule .view .lead-sub,
.nodemodule .view .section-sub,
.nodemodule .view .section-tag,
.nodemodule .view .sub-heading,
.nodemodule .view .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .view .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .view .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .view .list .item-wrap:hover,
.nodemodule .view .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .coretrack {
  margin-bottom: 0;
  opacity: .6;
  color: #060606;
  text-align: center;
}.nodemodule .block-title,
.nodemodule .chapter-title,
.nodemodule .header-text,
.nodemodule .lead-h2,
.nodemodule .main-heading,
.nodemodule .page-h,
.nodemodule .section-heading,
.nodemodule .topic-title {
  color: #ed463f;
}.nodemodule .block-subtitle,
.nodemodule .h-secondary,
.nodemodule .lead-sub,
.nodemodule .section-sub,
.nodemodule .section-tag,
.nodemodule .sub-heading,
.nodemodule .tagline-h {
  color: #404349;
}
.nodemodule .list {
  color: #404349;
}
.nodemodule .list,
.nodemodule .item-wrap {
  color: #060606;
}
.splitlayer {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .splitlayer .navbar-toggler {
    transform: scale(0.8);
  }
}
.splitlayer .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.splitlayer .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .splitlayer .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.splitlayer .navbar-brand .wrapperbox {
  line-height: inherit !important;
}
.splitlayer .navbar-brand .flexunit a {
  outline: none;
}
.splitlayer .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.splitlayer .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .splitlayer .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.splitlayer .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .splitlayer .navbar-nav .nav-item::before {
    display: none;
  }
}
.splitlayer .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .splitlayer .navbar-nav .nav-item::after {
    display: none;
  }
}
.splitlayer .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.splitlayer .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.splitlayer .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .splitlayer .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.splitlayer .nav-link {
  width: fit-content;
  position: relative;
}
.splitlayer .flexunit {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.splitlayer .wrapperbox {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .splitlayer .wrapperbox {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .splitlayer .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.splitlayer .container,
.splitlayer .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #1bdee7;
  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: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .splitlayer .container,
  .splitlayer .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .splitlayer .container,
  .splitlayer .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.splitlayer .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .splitlayer .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .splitlayer .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.splitlayer .boxcore {
  color: #e6eddc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.splitlayer .boxcore:hover {
  opacity: .6;
}
.splitlayer .nav-item:focus,
.splitlayer .nav-link:focus {
  outline: none;
}
.splitlayer .navbar {
  min-height: 90px;
  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;
}
.splitlayer .navbar .flexunit img {
  width: auto;
}
.splitlayer .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .splitlayer .navbar {
    min-height: 72px;
  }
  .splitlayer .navbar .flexunit img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .splitlayer .navbar .nav-item .nav-link::before {
    display: none;
  }
  .splitlayer .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .splitlayer .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.splitlayer .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.splitlayer ul.navbar-nav {
  flex-wrap: wrap;
}
.splitlayer .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .splitlayer .navbar-buttons {
    text-align: left;
  }
}
.splitlayer button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.splitlayer .primary-nav {
  padding: 0 1rem;
}
.splitlayer a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .splitlayer .navbar {
    height: 70px;
  }
  .splitlayer .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.splitlayer .block-action,
.splitlayer .cta-link,
.splitlayer .lead-btn,
.splitlayer .page-btn,
.splitlayer .primary-cta,
.splitlayer .section-action,
.splitlayer .section-cta {
  margin: -0.6rem -0.6rem;
}.splitlayer .block-action .btn,
.splitlayer .cta-link .btn,
.splitlayer .lead-btn .btn,
.splitlayer .page-btn .btn,
.splitlayer .primary-cta .btn,
.splitlayer .section-action .btn,
.splitlayer .section-cta .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {.splitlayer .block-action .btn,
.splitlayer .cta-link .btn,
.splitlayer .lead-btn .btn,
.splitlayer .page-btn .btn,
.splitlayer .primary-cta .btn,
.splitlayer .section-action .btn,
.splitlayer .section-cta .btn {
    width: auto !important;
  }
}
.splitlayer .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .splitlayer .navbar-brand {
    margin-right: auto;
  }
  .splitlayer .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);
  }
  .splitlayer .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .splitlayer .navbar-collapse {
    padding: 1rem;
  }
}
.splitlayer .bodybox {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .splitlayer .bodybox {
    display: block;
  }
}
.docksegment {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #c6fcff;
}
@media (max-width: 992px) {
  .docksegment .container {
    padding: 0 30px;
  }
}
.docksegment .row {
  justify-content: center;
}
.docksegment .tileunit {
  margin: 0 12%;
  border-bottom: 1px solid #1bdee7;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .docksegment .tileunit {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 992px) {
  .docksegment .tileunit {
    margin: 0;
  }
}.docksegment .tileunit .block-subtitle,
.docksegment .tileunit .h-secondary,
.docksegment .tileunit .lead-sub,
.docksegment .tileunit .section-sub,
.docksegment .tileunit .section-tag,
.docksegment .tileunit .sub-heading,
.docksegment .tileunit .tagline-h {
  margin-bottom: 30px;
}.docksegment .tileunit .block-title,
.docksegment .tileunit .chapter-title,
.docksegment .tileunit .header-text,
.docksegment .tileunit .lead-h2,
.docksegment .tileunit .main-heading,
.docksegment .tileunit .page-h,
.docksegment .tileunit .section-heading,
.docksegment .tileunit .topic-title {
  margin-bottom: 50px;
}
.docksegment .text-wrapper .modwrap {
  margin-bottom: 16px;
}.docksegment .block-subtitle,
.docksegment .h-secondary,
.docksegment .lead-sub,
.docksegment .section-sub,
.docksegment .section-tag,
.docksegment .sub-heading,
.docksegment .tagline-h {
  color: #f1f4e9;
  text-align: center;
}.docksegment .block-title,
.docksegment .chapter-title,
.docksegment .header-text,
.docksegment .lead-h2,
.docksegment .main-heading,
.docksegment .page-h,
.docksegment .section-heading,
.docksegment .topic-title {
  color: #000000;
  text-align: center;
}
.docksegment .modwrap {
  color: #000000;
}
.tilebox {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #c6fcff;
}
.tilebox .modwrap {
  color: #060606;
}
.sidebox {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.sidebox .identity-iconfont {
  color: #1bdee7;
  font-size: 5rem;
  width: 5rem;
}
.sidebox .boxcore {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}.sidebox .block-subtitle,
.sidebox .h-secondary,
.sidebox .lead-sub,
.sidebox .section-sub,
.sidebox .section-tag,
.sidebox .sub-heading,
.sidebox .tagline-h,
.sidebox .block-action,
.sidebox .cta-link,
.sidebox .lead-btn,
.sidebox .page-btn,
.sidebox .primary-cta,
.sidebox .section-action,
.sidebox .section-cta {
  color: #060606;
}
.nodemodule {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #c6fcff;
}
.nodemodule .bodybox {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .nodemodule .bodybox {
    padding: 30px 20px;
  }
}
.nodemodule .bodybox .row {
  justify-content: center;
}
.nodemodule .tileunit {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .tileunit {
    margin-bottom: 40px;
  }
}
.nodemodule .tileunit .zonecore {
  display: inline-flex;
  align-items: center;
}
.nodemodule .tileunit .zonecore .logo-wrapper {
  margin-right: 8px;
}
.nodemodule .tileunit .zonecore .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}.nodemodule .tileunit .zonecore .block-title,
.nodemodule .tileunit .zonecore .chapter-title,
.nodemodule .tileunit .zonecore .header-text,
.nodemodule .tileunit .zonecore .lead-h2,
.nodemodule .tileunit .zonecore .main-heading,
.nodemodule .tileunit .zonecore .page-h,
.nodemodule .tileunit .zonecore .section-heading,
.nodemodule .tileunit .zonecore .topic-title {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .nav-wrapper {
    margin-bottom: 40px;
  }
}.nodemodule .nav-wrapper .block-subtitle,
.nodemodule .nav-wrapper .h-secondary,
.nodemodule .nav-wrapper .lead-sub,
.nodemodule .nav-wrapper .section-sub,
.nodemodule .nav-wrapper .section-tag,
.nodemodule .nav-wrapper .sub-heading,
.nodemodule .nav-wrapper .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper .list .item-wrap:hover,
.nodemodule .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .view {
    margin-bottom: 40px;
  }
}.nodemodule .view .block-subtitle,
.nodemodule .view .h-secondary,
.nodemodule .view .lead-sub,
.nodemodule .view .section-sub,
.nodemodule .view .section-tag,
.nodemodule .view .sub-heading,
.nodemodule .view .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .view .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .view .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .view .list .item-wrap:hover,
.nodemodule .view .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .coretrack {
  margin-bottom: 0;
  opacity: .6;
  color: #060606;
  text-align: center;
}.nodemodule .block-title,
.nodemodule .chapter-title,
.nodemodule .header-text,
.nodemodule .lead-h2,
.nodemodule .main-heading,
.nodemodule .page-h,
.nodemodule .section-heading,
.nodemodule .topic-title {
  color: #ed463f;
}.nodemodule .block-subtitle,
.nodemodule .h-secondary,
.nodemodule .lead-sub,
.nodemodule .section-sub,
.nodemodule .section-tag,
.nodemodule .sub-heading,
.nodemodule .tagline-h {
  color: #404349;
}
.nodemodule .list {
  color: #404349;
}
.nodemodule .list,
.nodemodule .item-wrap {
  color: #060606;
}
.mainfield {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .mainfield .navbar-toggler {
    transform: scale(0.8);
  }
}
.mainfield .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.mainfield .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .mainfield .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.mainfield .navbar-brand .wrapperbox {
  line-height: inherit !important;
}
.mainfield .navbar-brand .flexunit a {
  outline: none;
}
.mainfield .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.mainfield .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .mainfield .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.mainfield .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .mainfield .navbar-nav .nav-item::before {
    display: none;
  }
}
.mainfield .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #1bdee7;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .mainfield .navbar-nav .nav-item::after {
    display: none;
  }
}
.mainfield .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.mainfield .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.mainfield .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .mainfield .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.mainfield .nav-link {
  width: fit-content;
  position: relative;
}
.mainfield .flexunit {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.mainfield .wrapperbox {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .mainfield .wrapperbox {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .mainfield .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.mainfield .container,
.mainfield .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #1bdee7;
  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: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .mainfield .container,
  .mainfield .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .mainfield .container,
  .mainfield .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.mainfield .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .mainfield .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .mainfield .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.mainfield .boxcore {
  color: #e6eddc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.mainfield .boxcore:hover {
  opacity: .6;
}
.mainfield .nav-item:focus,
.mainfield .nav-link:focus {
  outline: none;
}
.mainfield .navbar {
  min-height: 90px;
  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;
}
.mainfield .navbar .flexunit img {
  width: auto;
}
.mainfield .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .mainfield .navbar {
    min-height: 72px;
  }
  .mainfield .navbar .flexunit img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .mainfield .navbar .nav-item .nav-link::before {
    display: none;
  }
  .mainfield .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .mainfield .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.mainfield .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.mainfield ul.navbar-nav {
  flex-wrap: wrap;
}
.mainfield .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .mainfield .navbar-buttons {
    text-align: left;
  }
}
.mainfield button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.mainfield .primary-nav {
  padding: 0 1rem;
}
.mainfield a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .mainfield .navbar {
    height: 70px;
  }
  .mainfield .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.mainfield .block-action,
.mainfield .cta-link,
.mainfield .lead-btn,
.mainfield .page-btn,
.mainfield .primary-cta,
.mainfield .section-action,
.mainfield .section-cta {
  margin: -0.6rem -0.6rem;
}.mainfield .block-action .btn,
.mainfield .cta-link .btn,
.mainfield .lead-btn .btn,
.mainfield .page-btn .btn,
.mainfield .primary-cta .btn,
.mainfield .section-action .btn,
.mainfield .section-cta .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {.mainfield .block-action .btn,
.mainfield .cta-link .btn,
.mainfield .lead-btn .btn,
.mainfield .page-btn .btn,
.mainfield .primary-cta .btn,
.mainfield .section-action .btn,
.mainfield .section-cta .btn {
    width: auto !important;
  }
}
.mainfield .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .mainfield .navbar-brand {
    margin-right: auto;
  }
  .mainfield .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);
  }
  .mainfield .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .mainfield .navbar-collapse {
    padding: 1rem;
  }
}
.mainfield .bodybox {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .mainfield .bodybox {
    display: block;
  }
}
.layoutbase {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #c6fcff;
}
@media (max-width: 992px) {
  .layoutbase .container {
    padding: 0 30px;
  }
}
.layoutbase .row {
  justify-content: center;
}
.layoutbase .tileunit {
  margin: 0 12%;
  border-bottom: 1px solid #1bdee7;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .layoutbase .tileunit {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 992px) {
  .layoutbase .tileunit {
    margin: 0;
  }
}.layoutbase .tileunit .block-subtitle,
.layoutbase .tileunit .h-secondary,
.layoutbase .tileunit .lead-sub,
.layoutbase .tileunit .section-sub,
.layoutbase .tileunit .section-tag,
.layoutbase .tileunit .sub-heading,
.layoutbase .tileunit .tagline-h {
  margin-bottom: 30px;
}.layoutbase .tileunit .block-title,
.layoutbase .tileunit .chapter-title,
.layoutbase .tileunit .header-text,
.layoutbase .tileunit .lead-h2,
.layoutbase .tileunit .main-heading,
.layoutbase .tileunit .page-h,
.layoutbase .tileunit .section-heading,
.layoutbase .tileunit .topic-title {
  margin-bottom: 50px;
}
.layoutbase .text-wrapper .modwrap {
  margin-bottom: 16px;
}.layoutbase .block-subtitle,
.layoutbase .h-secondary,
.layoutbase .lead-sub,
.layoutbase .section-sub,
.layoutbase .section-tag,
.layoutbase .sub-heading,
.layoutbase .tagline-h {
  color: #f1f4e9;
  text-align: center;
}.layoutbase .block-title,
.layoutbase .chapter-title,
.layoutbase .header-text,
.layoutbase .lead-h2,
.layoutbase .main-heading,
.layoutbase .page-h,
.layoutbase .section-heading,
.layoutbase .topic-title {
  color: #000000;
  text-align: center;
}
.layoutbase .modwrap {
  color: #000000;
}
.viewlayer {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #c6fcff;
}
.viewlayer .modwrap {
  color: #060606;
}
.mount {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.mount .identity-iconfont {
  color: #1bdee7;
  font-size: 5rem;
  width: 5rem;
}
.mount .boxcore {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}.mount .block-subtitle,
.mount .h-secondary,
.mount .lead-sub,
.mount .section-sub,
.mount .section-tag,
.mount .sub-heading,
.mount .tagline-h,
.mount .block-action,
.mount .cta-link,
.mount .lead-btn,
.mount .page-btn,
.mount .primary-cta,
.mount .section-action,
.mount .section-cta {
  color: #060606;
}
.nodemodule {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #c6fcff;
}
.nodemodule .bodybox {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .nodemodule .bodybox {
    padding: 30px 20px;
  }
}
.nodemodule .bodybox .row {
  justify-content: center;
}
.nodemodule .tileunit {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .tileunit {
    margin-bottom: 40px;
  }
}
.nodemodule .tileunit .zonecore {
  display: inline-flex;
  align-items: center;
}
.nodemodule .tileunit .zonecore .logo-wrapper {
  margin-right: 8px;
}
.nodemodule .tileunit .zonecore .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}.nodemodule .tileunit .zonecore .block-title,
.nodemodule .tileunit .zonecore .chapter-title,
.nodemodule .tileunit .zonecore .header-text,
.nodemodule .tileunit .zonecore .lead-h2,
.nodemodule .tileunit .zonecore .main-heading,
.nodemodule .tileunit .zonecore .page-h,
.nodemodule .tileunit .zonecore .section-heading,
.nodemodule .tileunit .zonecore .topic-title {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .nav-wrapper {
    margin-bottom: 40px;
  }
}.nodemodule .nav-wrapper .block-subtitle,
.nodemodule .nav-wrapper .h-secondary,
.nodemodule .nav-wrapper .lead-sub,
.nodemodule .nav-wrapper .section-sub,
.nodemodule .nav-wrapper .section-tag,
.nodemodule .nav-wrapper .sub-heading,
.nodemodule .nav-wrapper .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .nav-wrapper .list .item-wrap:hover,
.nodemodule .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .nodemodule .view {
    margin-bottom: 40px;
  }
}.nodemodule .view .block-subtitle,
.nodemodule .view .h-secondary,
.nodemodule .view .lead-sub,
.nodemodule .view .section-sub,
.nodemodule .view .section-tag,
.nodemodule .view .sub-heading,
.nodemodule .view .tagline-h {
  margin-bottom: 20px;
}
.nodemodule .view .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.nodemodule .view .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nodemodule .view .list .item-wrap:hover,
.nodemodule .view .list .item-wrap:focus {
  color: #000000;
}
.nodemodule .view .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemodule .coretrack {
  margin-bottom: 0;
  opacity: .6;
  color: #060606;
  text-align: center;
}.nodemodule .block-title,
.nodemodule .chapter-title,
.nodemodule .header-text,
.nodemodule .lead-h2,
.nodemodule .main-heading,
.nodemodule .page-h,
.nodemodule .section-heading,
.nodemodule .topic-title {
  color: #ed463f;
}.nodemodule .block-subtitle,
.nodemodule .h-secondary,
.nodemodule .lead-sub,
.nodemodule .section-sub,
.nodemodule .section-tag,
.nodemodule .sub-heading,
.nodemodule .tagline-h {
  color: #404349;
}
.nodemodule .list {
  color: #404349;
}
.nodemodule .list,
.nodemodule .item-wrap {
  color: #060606;
}

.flexlayer {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: auto;
  width: min(560px, calc(100vw - 32px));
  max-width: 560px;
  z-index: 10000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  color: #333333;
  border: 1px solid #dddddd;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}

.flexlayer::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0066cc 0%, #3b82f6 50%, #7cb7ff 100%);
}

.flexlayer *,
.flexlayer *::before,
.flexlayer *::after {
  box-sizing: border-box;
}

.flexlayer p {
  margin: 0;
}

.shellbox {
  width: 100%;
}

.wrapcontainer {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.token-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bandunit {
  display: block;
  width: clamp(72px, 16vw, 108px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.note-text {
  font-size: clamp(13px, 1.7vw, 14px);
  line-height: 1.62;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: left;
  color: #333333;
}

.bar-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

#barDismiss {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.2;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.15s ease, border-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 0;
  min-width: 0;
  background: #0066cc;
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 18px rgba(0,102,204,0.18);
}

#barDismiss:hover {
  transform: translateY(-1px);
}

.module {
  margin-top: 2px;
  text-align: center;
  color: #555555;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.legal-links-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(12px, 1.5vw, 13px);
  line-height: 1.45;
}

.dialog-links-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  width: 100%;
  text-align: center;
}

.dialog-links-group a {
  display: inline-block;
  font-size: clamp(12px, 1.5vw, 13px);
  line-height: 1.35;
  color: #0066cc;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.dialog-links-group span {
  display: inline-block;
  font-size: clamp(12px, 1.5vw, 13px);
  line-height: 1.35;
  color: #555555;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .flexlayer {
    width: min(520px, calc(100vw - 28px));
    max-width: 520px;
    padding: 16px;
    border-radius: 16px;
  }

  .bandunit {
    width: clamp(70px, 20vw, 98px);
  }
}

@media (max-width: 768px) {
  .flexlayer {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
    max-height: calc(100vh - 24px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wrapcontainer {
    align-items: center;
  }

  .note-text {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .flexlayer {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 15px;
    border-radius: 16px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
  }

  .flexlayer::before {
    left: 12px;
    right: 12px;
  }

  .note-text {
    font-size: 13px;
    line-height: 1.58;
  }

  .bar-actions {
    flex-direction: column;
    gap: 8px;
  }

  #barDismiss {
    flex: none;
  }

  .dialog-links-group {
    gap: 6px 8px;
  }
}

@media (max-width: 380px) {
  .flexlayer {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    max-height: calc(100vh - 16px - env(safe-area-inset-bottom, 0px));
    padding: 14px;
    border-radius: 14px;
  }

  .flexlayer::before {
    left: 10px;
    right: 10px;
  }

  .bandunit {
    width: clamp(64px, 22vw, 84px);
  }

  .note-text,
  #barDismiss {
    font-size: 13px;
  }

  .legal-links-label,
  .dialog-links-group a,
  .dialog-links-group span {
    font-size: 12px;
  }
}

@media (max-height: 760px) {
  .flexlayer {
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.content-top-title {
  padding: 0 !important;
  background: transparent;
}
.content-top-title .col-icon {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.content-top-title .text-list {
  padding: 40px 40px 28px;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  text-align: center;
}
.content-top-title .slot-stack {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 0;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.content-top-title .pane-group {
  margin: 18px 0 8px;
  color: #111827;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
}
.content-top-title .core-flag {
  margin: 0 auto;
  max-width: 520px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.content-top-title .text-header {
  padding: 32px 40px 40px;
  color: #111827;
}
.content-top-title .text-header *,
.content-top-title .text-header *::before,
.content-top-title .text-header *::after {
  box-sizing: border-box;
}
.content-top-title .text-header [hidden] {
  display: none !important;
}
.content-top-title .root-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.content-top-title .track {
  display: flex;
  flex-direction: column;
}
.content-top-title .note-primary-area {
  grid-column: 1 / -1;
}
.content-top-title .dock {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
}
.content-top-title .info-link {
  width: 100%;
  padding: 14px 0;
  border: none !important;
  border-bottom: 1px solid #d1d5db !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111827 !important;
  font-size: 15px;
  box-shadow: none !important;
  text-align: center;
  transition: border-color 0.2s ease;
}
.content-top-title .info-link::placeholder {
  color: #9ca3af;
  opacity: 1;
  text-align: center;
}
.content-top-title .info-link:focus {
  outline: none;
  border-bottom-color: #111827 !important;
}
.content-top-title select.info-link {
  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 0 center !important;
  background-size: 16px !important;
  padding-right: 28px !important;
}
.content-top-title select.info-link option {
  background: #ffffff;
  color: #111827;
}
.content-top-title textarea.info-link {
  min-height: 170px;
  resize: vertical;
  text-align: left;
}
.content-top-title textarea.info-link::placeholder {
  text-align: left;
}
.content-top-title .core-wide-tag {
  padding: 0 0 18px;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
}
.content-top-title .app-live-status {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.content-top-title .info-round-tag {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #111827;
  cursor: pointer;
}
.content-top-title .bright-large-icon {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.75;
  cursor: pointer;
}
.content-top-title .bright-large-icon a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.content-top-title .bright-large-icon a:hover {
  color: #000000;
}
.content-top-title .slot-head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.content-top-title .bodyunit {
  min-width: 260px;
  padding: 15px 36px;
  border: 1px solid #111827;
  border-radius: 0 !important;
  background: #111827;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.18s ease, background 0.18s ease;
}
.content-top-title .bodyunit:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-2px);
}
.content-top-title .bodyunit:active {
  transform: translateY(0);
}
.content-top-title .nav-holder {
  margin: 0;
  color: #6b7280;
  font-size: 12.5px;
  line-height: 1.8;
  text-align: center;
  padding: 0 8px;
}
.content-top-title .node {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.content-top-title .entry-split-card {
  background: #f3f4f6;
  border-left: 3px solid #16a34a;
  color: #166534;
}
.content-top-title .grid-split-link {
  background: #f9fafb;
  border-left: 3px solid #dc2626;
  color: #991b1b;
}
@media (max-width: 767px) {
  .content-top-title {
    padding: 0 12px !important;
  }
  .content-top-title .text-list {
    padding: 28px 20px 24px;
  }
  .content-top-title .text-header {
    padding: 24px 20px 28px;
  }
  .content-top-title .pane-group {
    font-size: 28px;
  }
  .content-top-title .bodyunit {
    width: 100%;
    min-width: 0;
  }
}

.flexlayer {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: auto;
  width: min(560px, calc(100vw - 32px));
  max-width: 560px;
  z-index: 10000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  color: #333333;
  border: 1px solid #dddddd;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}

.flexlayer::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0066cc 0%, #3b82f6 50%, #7cb7ff 100%);
}

.flexlayer *,
.flexlayer *::before,
.flexlayer *::after {
  box-sizing: border-box;
}

.flexlayer.expanded {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.flexlayer.exited {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
}

.flexlayer p {
  margin: 0;
}

.shellbox {
  width: 100%;
}

.wrapcontainer {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.token-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bandunit {
  display: block;
  width: clamp(72px, 16vw, 108px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.note-text {
  font-size: clamp(13px, 1.7vw, 14px);
  line-height: 1.62;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: left;
  color: #333333;
}

.bar-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

#barDismiss {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.2;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.15s ease, border-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 0;
  min-width: 0;
  background: #0066cc;
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 18px rgba(0,102,204,0.18);
}

#barDismiss:hover {
  transform: translateY(-1px);
}

.module {
  margin-top: 2px;
  text-align: center;
  color: #555555;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.legal-links-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(12px, 1.5vw, 13px);
  line-height: 1.45;
}

.dialog-links-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  width: 100%;
  text-align: center;
}

.dialog-links-group a {
  display: inline-block;
  font-size: clamp(12px, 1.5vw, 13px);
  line-height: 1.35;
  color: #0066cc;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.dialog-links-group span {
  display: inline-block;
  font-size: clamp(12px, 1.5vw, 13px);
  line-height: 1.35;
  color: #555555;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .flexlayer {
    width: min(520px, calc(100vw - 28px));
    max-width: 520px;
    padding: 16px;
    border-radius: 16px;
  }

  .bandunit {
    width: clamp(70px, 20vw, 98px);
  }
}

@media (max-width: 768px) {
  .flexlayer {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
    max-height: calc(100vh - 24px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wrapcontainer {
    align-items: center;
  }

  .note-text {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .flexlayer {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 15px;
    border-radius: 16px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
  }

  .flexlayer::before {
    left: 12px;
    right: 12px;
  }

  .note-text {
    font-size: 13px;
    line-height: 1.58;
  }

  .bar-actions {
    flex-direction: column;
    gap: 8px;
  }

  #barDismiss {
    flex: none;
  }

  .dialog-links-group {
    gap: 6px 8px;
  }
}

@media (max-width: 380px) {
  .flexlayer {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    max-height: calc(100vh - 16px - env(safe-area-inset-bottom, 0px));
    padding: 14px;
    border-radius: 14px;
  }

  .flexlayer::before {
    left: 10px;
    right: 10px;
  }

  .bandunit {
    width: clamp(64px, 22vw, 84px);
  }

  .note-text,
  #barDismiss {
    font-size: 13px;
  }

  .legal-links-label,
  .dialog-links-group a,
  .dialog-links-group span {
    font-size: 12px;
  }
}

@media (max-height: 760px) {
  .flexlayer {
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.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='rgba%28255%2C255%2C255%2C0.85%29' 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%;
}
.menu.domtrack .navbar-toggler-icon,
.primary-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280%2C0%2C0%2C0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
