:root {

  --site-primary-rgb: 13, 110, 253;
  --site-secondary-rgb: 108, 117, 125;
  --site-info-rgb: 13, 202, 240;
  --site-danger-rgb: 220, 53, 69;
  --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);
}

h6, .h6, 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;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

a {
  color: rgba(var(--site-link-color-rgb), var(--site-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --site-link-color-rgb: var(--site-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button] {
  -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;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.figure {
  display: inline-block;
}

.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-title {
  margin-bottom: var(--site-card-title-spacer-y);
  color: var(--site-card-title-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.alert {
  --site-alert-bg: transparent;
  --site-alert-padding-x: 1rem;
  --site-alert-padding-y: 1rem;
  --site-alert-margin-bottom: 1rem;
  --site-alert-color: inherit;
  --site-alert-border-color: transparent;
  --site-alert-border: var(--site-border-width) solid var(--site-alert-border-color);
  --site-alert-border-radius: var(--site-border-radius);
  --site-alert-link-color: inherit;
  position: relative;
  padding: var(--site-alert-padding-y) var(--site-alert-padding-x);
  margin-bottom: var(--site-alert-margin-bottom);
  color: var(--site-alert-color);
  background-color: var(--site-alert-bg);
  border: var(--site-alert-border);
  border-radius: var(--site-alert-border-radius);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--site-progress-height);
  }
}

.btn-close {
  --site-btn-close-color: #000;
  --site-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --site-btn-close-opacity: 0.5;
  --site-btn-close-hover-opacity: 0.75;
  --site-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --site-btn-close-focus-opacity: 1;
  --site-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--site-btn-close-color);
  background: transparent var(--site-btn-close-bg) center/1em auto no-repeat;
  filter: var(--site-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--site-btn-close-opacity);
}
.btn-close:hover {
  color: var(--site-btn-close-color);
  text-decoration: none;
  opacity: var(--site-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--site-btn-close-focus-shadow);
  opacity: var(--site-btn-close-focus-opacity);
}
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--site-btn-close-disabled-opacity);
}

.btn-close-white {
  --site-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root {
  --site-btn-close-filter: ;
}

:root {
  --site-carousel-indicator-active-bg: #fff;
  --site-carousel-caption-color: #fff;
  --site-carousel-control-icon-filter: ;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) ;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-primary {
  --site-text-opacity: 1;
  color: rgba(var(--site-primary-rgb), var(--site-text-opacity)) !important;
}

.text-secondary {
  --site-text-opacity: 1;
  color: rgba(var(--site-secondary-rgb), var(--site-text-opacity)) !important;
}

.text-info {
  --site-text-opacity: 1;
  color: rgba(var(--site-info-rgb), var(--site-text-opacity)) !important;
}

.text-danger {
  --site-text-opacity: 1;
  color: rgba(var(--site-danger-rgb), var(--site-text-opacity)) !important;
}

.visible {
  visibility: visible !important;
}

.menu-bar {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .menu-bar .layoutbox {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .menu-bar .layoutbox img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
    .menu-bar .layoutbox.identity-iconfont {
      font-size: 3.125rem;
      line-height: 3.125rem; }
  .menu-bar .sublayer {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .menu-bar .sublayer, .menu-bar .sublayer:hover {
      color: inherit;
      text-decoration: none; }
  .menu-bar .identity-iconfont + .sublayer {
    vertical-align: -1px; }
  .menu-bar .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/mediaset.woff2') format('woff2'), url('fonts/mediaset.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: #000;
    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;
}

.article .lead p,
.article .lead ul {
    margin-bottom: 0;
}

a {
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
}

a,
a:hover {
    text-decoration: none;
}.block-title,
.chapter-title,
.header-text,
.lead-h2,
.main-heading,
.page-h,
.section-h,
.section-heading,
.topic-title {
    font-style: normal;
    line-height: 1.3;
}.h-secondary,
.lead-sub,
.section-sub,
.section-tag,
.sub-heading,
.subtitle-text,
.tagline-h {
    line-height: 1.4;
}

.patch {
    font-style: normal;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-4,
.display-5,
.shellcell,
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;
}

.basebox {
    text-align: left;
}

.partwrapbox {
    text-align: center;
}

.nodetrack {
    text-align: right;
}

figure {
    margin-bottom: 0;
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

.card {
    background-color: transparent;
    border: none;
}

.card-box {
    width: 100%;
}

.media {
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 991px) {

    .media {
        width: auto;
    }
}.block-action,
.cta-link,
.lead-btn,
.main-btn,
.page-btn,
.primary-cta,
.section-action,
.section-cta {
    margin-left: -0.6rem;
    margin-right: -0.6rem;
    font-size: 0;
}

.btn {
    font-weight: 700;
    border-width: 1px;
    font-style: normal;
    margin: 0.6rem 0.6rem;
    white-space: normal;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
}

.btn-sm {
    font-weight: 600;
    letter-spacing: 0px;
    transition: all 0.3s ease-in-out;
}

.btn-md {
    font-weight: 600;
    letter-spacing: 0px;
    transition: all 0.3s ease-in-out;
}

.btn-lg {
    font-weight: 600;
    letter-spacing: 0px;
    transition: all 0.3s ease-in-out;
}

.btn-form {
    margin: 0;
}

.btn-form:hover {
    cursor: pointer;
}nav .block-action,
nav .cta-link,
nav .lead-btn,
nav .main-btn,
nav .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: auto;
    vertical-align: sub;
    padding-left: 1.5rem;
    color: #fdfde1;
}

.btn.btn-md .identity-iconfont,
.btn.btn-md .identity-iconfont {
    margin-left: 0.8rem;
}

.coretrack .dockwrap {
    min-height: 100vh;
}

.coretrack {
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@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 .layoutbox 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 {
    }

.media {
    display: flex;
}

input[type=range] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.navbar-toggler {
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
    box-shadow: none;
}

html,
body {
    height: auto;
    min-height: 100vh;
}

.alert {
    color: #ffffff;
    border-radius: 0;
    border: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.875rem;
    padding: 1.25rem;
    position: relative;
    text-align: center;
}

.row>* {
    padding-right: 1rem;
    padding-left: 1rem;
}

form .row {
    margin-left: -0.6rem;
    margin-right: -0.6rem;
}

form .row [class*=col] {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}form .block-action,
form .cta-link,
form .lead-btn,
form .main-btn,
form .page-btn,
form .primary-cta,
form .section-action,
form .section-cta {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

form .btn {
    min-height: 48px;
}

.dockwrap {
    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;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.container,
.container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.row {
    margin-left: -16px;
    margin-right: -16px;
}

.row>[class*=col] {
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 992px) {
    .container-fluid {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.item {
    position: relative;
}
@font-face {
  font-family: 'template2';
  font-display: swap;
  src: url('fonts/prototype2.woff2') format('woff2'), url('fonts/prototype2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="weight-"], [class*=" weight-"] {
  
  font-family: 'template2' !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;
}
.weight-drop-letter:before {
  content: "\e945";
}
.weight-drop-map-pin:before {
  content: "\e94c";
}
.weight-drop-phone:before {
  content: "\e95b";
}

.btn {
  border-width: 2px;
}
img,
.card-wrap,
.card-wrapper,
.card,
.item-wrapper {
  border-radius: 2rem !important;
}
body {
  font-family: Manrope;
}
.display-1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 5.2rem;
  line-height: 1;
}
.display-1 > .identity-iconfont {
  font-size: 6.5rem;
}
.display-2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -1px;
}
.display-2 > .identity-iconfont {
  font-size: 4.25rem;
}
.display-4 {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .identity-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'League Spartan', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .identity-iconfont {
  font-size: 2.5rem;
}
.shellcell {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.95rem;
  line-height: 1.66;
}
.shellcell > .identity-iconfont {
  font-size: 1.1875rem;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 4.16rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.64rem;
    font-size: calc( 2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .shellcell {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 3.64rem;
    font-size: calc( 2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.3 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62))));
  }
  .shellcell {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 62rem) / (87 - 62))));
  }
}

.btn {
  padding: 1.125rem 1.6rem;
  border-radius: 3rem;
}
.btn-sm {
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2rem;
  border-radius: 4px;
}
.btn-primary {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-primary,
.btn-primary:active {
  background-color: #9c98cf !important;
  border-color: #000000 !important;
  color: #010101 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  color: inherit;
  background-color: #9c98cf !important;
  border-color: #000000 !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #010101 !important;
  background-color: #f0eff8 !important;
  border-color: #f0eff8 !important;
}
.btn-secondary {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #87ceeb !important;
  border-color: #000000 !important;
  color: #02080b !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  color: inherit;
  background-color: #87ceeb !important;
  border-color: #000000 !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #02080b !important;
  background-color: #f4fbfd !important;
  border-color: #f4fbfd !important;
}
.btn-info {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-info,
.btn-info:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  color: inherit;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: none;
}

.btn-info:disabled {
  color: #ffffff !important;
  background-color: #404040 !important;
  border-color: #404040 !important;
}
.btn-success {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-success,
.btn-success:active {
  background-color: #2a1c6c !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  color: inherit;
  background-color: #2a1c6c !important;
  border-color: #000000 !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #ffffff !important;
  background-color: #553bcc !important;
  border-color: #553bcc !important;
}
.btn-warning {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #000000 !important;
  color: #4d4d4d !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #000000 !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #4d4d4d !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-danger,
.btn-danger:active {
  background-color: #9c98cf !important;
  border-color: #000000 !important;
  color: #010101 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  color: inherit;
  background-color: #9c98cf !important;
  border-color: #000000 !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #010101 !important;
  background-color: #f0eff8 !important;
  border-color: #f0eff8 !important;
}
.btn-white {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-white,
.btn-white:active {
  background-color: #fffff5 !important;
  border-color: #000000 !important;
  color: #8f8f00 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.active {
  color: inherit;
  background-color: #fffff5 !important;
  border-color: #000000 !important;
  box-shadow: none;
}

.btn-white:disabled {
  color: #8f8f00 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.active {
  color: inherit;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: none;
}

.btn-black:disabled {
  color: #ffffff !important;
  background-color: #404040 !important;
  border-color: #404040 !important;
}
.btn-primary-outline {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #9c98cf;
  color: #9c98cf;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.active {
  color: #635db3 !important;
  background-color: transparent !important;
  box-shadow: none;
  border-color: #635db3 !important;
}

.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #9c98cf !important;
  border-color: #9c98cf !important;
}
.btn-secondary-outline {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #87ceeb;
  color: #87ceeb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.active {
  color: #3db0df !important;
  background-color: transparent !important;
  box-shadow: none;
  border-color: #3db0df !important;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #87ceeb !important;
  border-color: #87ceeb !important;
}
.btn-info-outline {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: none;
  border-color: #000000 !important;
}

.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #2a1c6c;
  color: #2a1c6c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.active {
  color: #0f0a27 !important;
  background-color: transparent !important;
  box-shadow: none;
  border-color: #0f0a27 !important;
}

.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #2a1c6c !important;
  border-color: #2a1c6c !important;
}
.btn-warning-outline {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  box-shadow: none;
  border-color: #d4d4d4 !important;
}

.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #9c98cf;
  color: #9c98cf;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.active {
  color: #635db3 !important;
  background-color: transparent !important;
  box-shadow: none;
  border-color: #635db3 !important;
}

.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #9c98cf !important;
  border-color: #9c98cf !important;
}
.btn-black-outline {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: none;
  border-color: #000000 !important;
}

.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline {
  border-color: #000000 !important;
  box-shadow: 0 4px 0 0 #fff;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fffff5;
  color: #fffff5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.active {
  color: #ffff9e !important;
  background-color: transparent !important;
  box-shadow: none;
  border-color: #ffff9e !important;
}

.btn-white-outline:disabled {
  color: #f5f500 !important;
  background-color: #fffff5 !important;
  border-color: #fffff5 !important;
}
.text-primary {
  color: #9c98cf !important;
}
.text-secondary {
  color: #87ceeb !important;
}
.text-info {
  color: #000000 !important;
}
.text-danger {
  color: #9c98cf !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #5952af !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1f8dba !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #5952af !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;
}
a,
a:hover {
  color: #9c98cf;
}

body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
@media (max-width: 1400px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 1400px) and (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 1400px) and (min-width: 768px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.layoutunit .menu-bar {
  position: relative !important;
}
.layoutunit .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .layoutunit .container {
    flex-wrap: nowrap;
  }
}
.layoutunit .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.layoutunit .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.layoutunit .nav-link {
  position: relative;
}
.layoutunit .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.layoutunit .nav-item:focus,
.layoutunit .nav-link:focus {
  outline: none;
}
.layoutunit .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.layoutunit .navbar .layoutbox img {
  width: auto;
}
.layoutunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .layoutunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .layoutunit .navbar .layoutbox img {
    height: 3rem !important;
  }
  .layoutunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .layoutunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .layoutunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.layoutunit .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.layoutunit .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.layoutunit .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.layoutunit .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.layoutunit .navbar-brand .layoutbox a {
  outline: none;
}
.layoutunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.layoutunit ul.navbar-nav {
  flex-wrap: wrap;
}
.layoutunit .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .layoutunit .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.layoutunit .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.layoutunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.layoutunit .menu-bar {
  padding: 0 1rem;
}
.layoutunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .layoutunit .navbar {
    height: 60px;
  }
  .layoutunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.nodecore {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("images/lowroom1.jpg");
}
.nodecore .sectionunit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nodecore .sectionunit .gridunitbox {
  margin-bottom: 20px;
}
.nodecore .sectionunit .gridunitbox .fieldcore {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  background-image: linear-gradient(135deg, #9c98cf 38%, #87ceeb 75%);
  box-shadow: 0 10px 10px -5px #9c98cf;
  padding: 0 1px 1px 0;
}
.nodecore .sectionunit .gridunitbox .fieldcore::before {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -17px;
  width: 164px;
  height: 50px;
  pointer-events: none;
  filter: blur(10px);
  background-image: radial-gradient(50% 50%, #87ceeb 0%, transparent 100%);
  z-index: -1;
}
.nodecore .sectionunit .gridunitbox .fieldcore .domcore {
  position: relative;
  z-index: 1;
  padding: 7px 18px;
  display: inline-flex;
  align-items: center;
  background-color: #fafafa;
  box-shadow: inset 0 10px 8px 0 #ffffff;
}
.nodecore .sectionunit .gridunitbox .fieldcore .domcore .blockrow {
  display: inline-flex;
}
.nodecore .sectionunit .gridunitbox .fieldcore .domcore .blockrow .identity-iconfont {
  font-size: 18px;
  display: inline-flex;
  margin-right: 8px;
}
.nodecore .sectionunit .gridunitbox .fieldcore .domcore .inset {
  margin-bottom: 0;
}.nodecore .sectionunit .hold .block-title,
.nodecore .sectionunit .hold .chapter-title,
.nodecore .sectionunit .hold .header-text,
.nodecore .sectionunit .hold .lead-h2,
.nodecore .sectionunit .hold .main-heading,
.nodecore .sectionunit .hold .page-h,
.nodecore .sectionunit .hold .section-h,
.nodecore .sectionunit .hold .section-heading,
.nodecore .sectionunit .hold .topic-title {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #9c98cf 40%, #87ceeb 90%);
  margin-bottom: 20px;
}
.nodecore .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .nodecore .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.nodecore .sectionunit .block-action,
.nodecore .sectionunit .cta-link,
.nodecore .sectionunit .lead-btn,
.nodecore .sectionunit .main-btn,
.nodecore .sectionunit .page-btn,
.nodecore .sectionunit .primary-cta,
.nodecore .sectionunit .section-action,
.nodecore .sectionunit .section-cta {
  margin-top: 40px;
}
@media (max-width: 992px) {.nodecore .sectionunit .block-action,
.nodecore .sectionunit .cta-link,
.nodecore .sectionunit .lead-btn,
.nodecore .sectionunit .main-btn,
.nodecore .sectionunit .page-btn,
.nodecore .sectionunit .primary-cta,
.nodecore .sectionunit .section-action,
.nodecore .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.nodecore .inset,
.nodecore .gridunitbox {
  color: #000000;
  text-align: right;
}.nodecore .block-title,
.nodecore .chapter-title,
.nodecore .header-text,
.nodecore .lead-h2,
.nodecore .main-heading,
.nodecore .page-h,
.nodecore .section-h,
.nodecore .section-heading,
.nodecore .topic-title {
  color: #0f172a;
}
.nodecore .patch,
.nodecore .text-wrapper {
  color: #000000;
  text-align: right;
}.nodecore .block-title,
.nodecore .chapter-title,
.nodecore .header-text,
.nodecore .lead-h2,
.nodecore .main-heading,
.nodecore .page-h,
.nodecore .section-h,
.nodecore .section-heading,
.nodecore .topic-title,
.nodecore .block-action,
.nodecore .cta-link,
.nodecore .lead-btn,
.nodecore .main-btn,
.nodecore .page-btn,
.nodecore .primary-cta,
.nodecore .section-action,
.nodecore .section-cta,
.nodecore .hold {
  text-align: right;
}
.viewsegment {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.viewsegment .hold .dock {
  margin-bottom: 16px;
}.viewsegment .hold .dock .block-title,
.viewsegment .hold .dock .chapter-title,
.viewsegment .hold .dock .header-text,
.viewsegment .hold .dock .lead-h2,
.viewsegment .hold .dock .main-heading,
.viewsegment .hold .dock .page-h,
.viewsegment .hold .dock .section-h,
.viewsegment .hold .dock .section-heading,
.viewsegment .hold .dock .topic-title {
  margin-bottom: 0;
}.viewsegment .hold .dock .h-secondary,
.viewsegment .hold .dock .lead-sub,
.viewsegment .hold .dock .section-sub,
.viewsegment .hold .dock .section-tag,
.viewsegment .hold .dock .sub-heading,
.viewsegment .hold .dock .subtitle-text,
.viewsegment .hold .dock .tagline-h {
  margin-bottom: 0;
}
.viewsegment .hold .text-wrapper .patch {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .viewsegment .hold .text-wrapper .patch {
    width: 100%;
  }
}.viewsegment .hold .block-action,
.viewsegment .hold .cta-link,
.viewsegment .hold .lead-btn,
.viewsegment .hold .main-btn,
.viewsegment .hold .page-btn,
.viewsegment .hold .primary-cta,
.viewsegment .hold .section-action,
.viewsegment .hold .section-cta {
  margin-top: 20px;
}
.viewsegment .layoutgroup {
  margin: 0 -10px;
}
.viewsegment .layoutgroup .card {
  padding: 0 10px;
}
.viewsegment .contentwrap {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .viewsegment .contentwrap {
    margin-top: 40px;
  }
}
.viewsegment .contentwrap img {
  height: 435px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .viewsegment .contentwrap img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .viewsegment .image_2 {
    margin-top: 20px;
  }
}.viewsegment .block-title,
.viewsegment .chapter-title,
.viewsegment .header-text,
.viewsegment .lead-h2,
.viewsegment .main-heading,
.viewsegment .page-h,
.viewsegment .section-h,
.viewsegment .section-heading,
.viewsegment .topic-title {
  color: #000000;
}.viewsegment .h-secondary,
.viewsegment .lead-sub,
.viewsegment .section-sub,
.viewsegment .section-tag,
.viewsegment .sub-heading,
.viewsegment .subtitle-text,
.viewsegment .tagline-h {
  color: #5fb4d9;
  text-align: center;
}
.viewsegment .patch,
.viewsegment .text-wrapper {
  color: #000000;
  text-align: center;
}.viewsegment .block-title,
.viewsegment .chapter-title,
.viewsegment .header-text,
.viewsegment .lead-h2,
.viewsegment .main-heading,
.viewsegment .page-h,
.viewsegment .section-h,
.viewsegment .section-heading,
.viewsegment .topic-title,
.viewsegment .block-action,
.viewsegment .cta-link,
.viewsegment .lead-btn,
.viewsegment .main-btn,
.viewsegment .page-btn,
.viewsegment .primary-cta,
.viewsegment .section-action,
.viewsegment .section-cta {
  text-align: center;
  color: #9c98cf;
}
.notch {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.notch .contentgrid {
  margin: 0 -10px;
}
.notch .contentgrid .card {
  padding: 0 10px;
}
.notch .band {
  height: 12px;
  border: 1px solid #5fb4d9;
  border-bottom: none;
  margin-bottom: 32px;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
@media (max-width: 992px) {
  .notch .band {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .notch .gridunitbox {
    margin-bottom: 24px;
  }
}
.notch .gridunitbox .fieldcore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  position: relative;
  overflow: hidden;
  background-color: #d3f2ff;
}
.notch .gridunitbox .fieldcore .tracebox {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  background-color: #5fb4d9;
  display: flex;
}
.notch .gridunitbox .fieldcore .inset {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.notch .hold .dock {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .notch .hold .dock {
    margin-bottom: 24px;
  }
}.notch .hold .dock .block-title,
.notch .hold .dock .chapter-title,
.notch .hold .dock .header-text,
.notch .hold .dock .lead-h2,
.notch .hold .dock .main-heading,
.notch .hold .dock .page-h,
.notch .hold .dock .section-h,
.notch .hold .dock .section-heading,
.notch .hold .dock .topic-title {
  margin-bottom: 0;
}.notch .hold .dock .h-secondary,
.notch .hold .dock .lead-sub,
.notch .hold .dock .section-sub,
.notch .hold .dock .section-tag,
.notch .hold .dock .sub-heading,
.notch .hold .dock .subtitle-text,
.notch .hold .dock .tagline-h {
  margin-bottom: 0;
}
.notch .hold .text-wrapper .patch {
  display: inline-block;
  width: 85%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .notch .hold .text-wrapper .patch {
    width: 100%;
  }
}.notch .hold .block-action,
.notch .hold .cta-link,
.notch .hold .lead-btn,
.notch .hold .main-btn,
.notch .hold .page-btn,
.notch .hold .primary-cta,
.notch .hold .section-action,
.notch .hold .section-cta {
  margin-top: 38px;
}
@media (max-width: 992px) {.notch .hold .block-action,
.notch .hold .cta-link,
.notch .hold .lead-btn,
.notch .hold .main-btn,
.notch .hold .page-btn,
.notch .hold .primary-cta,
.notch .hold .section-action,
.notch .hold .section-cta {
    margin-top: 14px;
  }
}
.notch .inset {
  color: #222f30;
}.notch .block-title,
.notch .chapter-title,
.notch .header-text,
.notch .lead-h2,
.notch .main-heading,
.notch .page-h,
.notch .section-h,
.notch .section-heading,
.notch .topic-title {
  color: #222f30;
}.notch .h-secondary,
.notch .lead-sub,
.notch .section-sub,
.notch .section-tag,
.notch .sub-heading,
.notch .subtitle-text,
.notch .tagline-h {
  color: #c9cbbe;
}
.notch .patch {
  color: #4f595a;
}.notch .block-title,
.notch .chapter-title,
.notch .header-text,
.notch .lead-h2,
.notch .main-heading,
.notch .page-h,
.notch .section-h,
.notch .section-heading,
.notch .topic-title,
.notch .block-action,
.notch .cta-link,
.notch .lead-btn,
.notch .main-btn,
.notch .page-btn,
.notch .primary-cta,
.notch .section-action,
.notch .section-cta {
  color: #9c98cf;
}.notch .h-secondary,
.notch .lead-sub,
.notch .section-sub,
.notch .section-tag,
.notch .sub-heading,
.notch .subtitle-text,
.notch .tagline-h,
.notch .block-action,
.notch .cta-link,
.notch .lead-btn,
.notch .main-btn,
.notch .page-btn,
.notch .primary-cta,
.notch .section-action,
.notch .section-cta {
  color: #5fb4d9;
}
.notch .inset,
.notch .gridunitbox {
  color: #000000;
  text-align: left;
}
.notch .patch,
.notch .text-wrapper {
  color: #000000;
}
.patternunit {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #f7f7f7;
}
.patternunit .hold {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .patternunit .hold {
    margin-bottom: 40px;
  }
}.patternunit .hold .block-title,
.patternunit .hold .chapter-title,
.patternunit .hold .header-text,
.patternunit .hold .lead-h2,
.patternunit .hold .main-heading,
.patternunit .hold .page-h,
.patternunit .hold .section-h,
.patternunit .hold .section-heading,
.patternunit .hold .topic-title {
  margin-bottom: 0;
}.patternunit .hold .h-secondary,
.patternunit .hold .lead-sub,
.patternunit .hold .section-sub,
.patternunit .hold .section-tag,
.patternunit .hold .sub-heading,
.patternunit .hold .subtitle-text,
.patternunit .hold .tagline-h {
  margin-bottom: 0;
}
.patternunit .layoutgroup {
  margin: 0 -10px;
}
.patternunit .layoutgroup .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .patternunit .layoutgroup .item {
    margin-bottom: 24px;
  }
  .patternunit .layoutgroup .item:last-child {
    margin-bottom: 0;
  }
}
.patternunit .layoutgroup .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border: 1px solid #cecced;
  overflow: hidden;
  background-image: linear-gradient(135deg, #cecced 0%, #cecced 50%, transparent 100%);
}
@media (max-width: 992px) {
  .patternunit .layoutgroup .item .item-wrapper {
    padding: 24px;
  }
}
.patternunit .layoutgroup .item .item-wrapper .contentwrap .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .patternunit .layoutgroup .item .item-wrapper .contentwrap .item-img {
    margin-bottom: 24px;
  }
}
.patternunit .layoutgroup .item .item-wrapper .contentwrap .item-img img {
  display: inline-flex;
  width: 70%;
  height: 190px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .patternunit .layoutgroup .item .item-wrapper .contentwrap .item-img img {
    width: 100%;
    height: 300px;
  }
}
.patternunit .layoutgroup .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.patternunit .layoutgroup .item .item-wrapper .card-box .text-wrap .item-text_1 {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .patternunit .layoutgroup .item .item-wrapper .card-box .text-wrap .item-text_1 {
    width: 100%;
  }
}
.patternunit .layoutgroup .item .item-wrapper .card-box .text-wrapper .item-text_2 {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .patternunit .layoutgroup .item .item-wrapper .card-box .text-wrapper .item-text_2 {
    width: 100%;
  }
}.patternunit .layoutgroup .item .item-wrapper .card-box .block-action,
.patternunit .layoutgroup .item .item-wrapper .card-box .cta-link,
.patternunit .layoutgroup .item .item-wrapper .card-box .lead-btn,
.patternunit .layoutgroup .item .item-wrapper .card-box .main-btn,
.patternunit .layoutgroup .item .item-wrapper .card-box .page-btn,
.patternunit .layoutgroup .item .item-wrapper .card-box .primary-cta,
.patternunit .layoutgroup .item .item-wrapper .card-box .section-action,
.patternunit .layoutgroup .item .item-wrapper .card-box .section-cta {
  margin-bottom: -9.6px;
  margin-top: 14px;
}
.patternunit .layoutgroup .item .card_2 {
  flex-direction: row-reverse;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .patternunit .layoutgroup .item .card_2 {
    display: block;
  }
}
.patternunit .layoutgroup .item .card_2 .maparea {
  margin-left: 20px;
  width: 50%;
}
@media (max-width: 1200px) {
  .patternunit .layoutgroup .item .card_2 .maparea {
    margin-left: 0;
    margin-bottom: 40px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .patternunit .layoutgroup .item .card_2 .maparea {
    margin-bottom: 24px;
  }
}
.patternunit .layoutgroup .item .card_2 .maparea .item-img {
  margin-bottom: 0;
}
.patternunit .layoutgroup .item .card_2 .maparea .item-img img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.patternunit .layoutgroup .item .card_2 .card-box {
  width: 50%;
}
@media (max-width: 1200px) {
  .patternunit .layoutgroup .item .card_2 .card-box {
    width: 100%;
  }
}.patternunit .block-title,
.patternunit .chapter-title,
.patternunit .header-text,
.patternunit .lead-h2,
.patternunit .main-heading,
.patternunit .page-h,
.patternunit .section-h,
.patternunit .section-heading,
.patternunit .topic-title {
  color: #5fb4d9;
}.patternunit .h-secondary,
.patternunit .lead-sub,
.patternunit .section-sub,
.patternunit .section-tag,
.patternunit .sub-heading,
.patternunit .subtitle-text,
.patternunit .tagline-h {
  color: #9c98cf;
}
.patternunit .item-title {
  color: #ffffff;
}
.patternunit .item-text_1 {
  color: #8c8c8c;
}
.patternunit .item-text_2 {
  color: #8c8c8c;
}
.patternunit .item-text_2,
.patternunit .text-wrapper {
  color: #000000;
  text-align: center;
}.patternunit .item-title,
.patternunit .block-action,
.patternunit .cta-link,
.patternunit .lead-btn,
.patternunit .main-btn,
.patternunit .page-btn,
.patternunit .primary-cta,
.patternunit .section-action,
.patternunit .section-cta {
  color: #3c97bf;
  text-align: center;
}
.patternunit .item-text_1,
.patternunit .text-wrap {
  text-align: center;
  color: #000000;
}
.outerpad {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.outerpad .contentgrid {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .outerpad .contentgrid {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .outerpad .contentgrid .gridunitbox {
    margin-bottom: 12px;
  }
}
.outerpad .contentgrid .gridunitbox .fieldcore {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.outerpad .contentgrid .gridunitbox .fieldcore .inset {
  margin-bottom: 0;
}
.outerpad .contentgrid .hold {
  margin-bottom: 0;
}.outerpad .contentgrid .hold .dock .block-title,
.outerpad .contentgrid .hold .dock .chapter-title,
.outerpad .contentgrid .hold .dock .header-text,
.outerpad .contentgrid .hold .dock .lead-h2,
.outerpad .contentgrid .hold .dock .main-heading,
.outerpad .contentgrid .hold .dock .page-h,
.outerpad .contentgrid .hold .dock .section-h,
.outerpad .contentgrid .hold .dock .section-heading,
.outerpad .contentgrid .hold .dock .topic-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {.outerpad .contentgrid .hold .dock .block-title,
.outerpad .contentgrid .hold .dock .chapter-title,
.outerpad .contentgrid .hold .dock .header-text,
.outerpad .contentgrid .hold .dock .lead-h2,
.outerpad .contentgrid .hold .dock .main-heading,
.outerpad .contentgrid .hold .dock .page-h,
.outerpad .contentgrid .hold .dock .section-h,
.outerpad .contentgrid .hold .dock .section-heading,
.outerpad .contentgrid .hold .dock .topic-title {
    width: 100%;
  }
}.outerpad .contentgrid .hold .stub .h-secondary,
.outerpad .contentgrid .hold .stub .lead-sub,
.outerpad .contentgrid .hold .stub .section-sub,
.outerpad .contentgrid .hold .stub .section-tag,
.outerpad .contentgrid .hold .stub .sub-heading,
.outerpad .contentgrid .hold .stub .subtitle-text,
.outerpad .contentgrid .hold .stub .tagline-h {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {.outerpad .contentgrid .hold .stub .h-secondary,
.outerpad .contentgrid .hold .stub .lead-sub,
.outerpad .contentgrid .hold .stub .section-sub,
.outerpad .contentgrid .hold .stub .section-tag,
.outerpad .contentgrid .hold .stub .sub-heading,
.outerpad .contentgrid .hold .stub .subtitle-text,
.outerpad .contentgrid .hold .stub .tagline-h {
    width: 100%;
  }
}
.outerpad .layoutgroup {
  margin: 0 -6px;
}
.outerpad .layoutgroup .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .outerpad .layoutgroup .item {
    margin-bottom: 20px;
  }
  .outerpad .layoutgroup .item:last-child {
    margin-bottom: 0;
  }
}
.outerpad .layoutgroup .item .item-wrapper {
  position: relative;
  height: 100%;
  min-height: 370px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .outerpad .layoutgroup .item .item-wrapper {
    padding: 20px;
    min-height: 320px;
  }
}
.outerpad .layoutgroup .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d3f2ff;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.outerpad .layoutgroup .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outerpad .layoutgroup .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.outerpad .layoutgroup .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.outerpad .layoutgroup .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.outerpad .layoutgroup .item .item-wrapper .card-box .rowset .item-title {
  display: inline-block;
  margin-bottom: 12px;
  width: 50%;
}
@media (max-width: 1200px) {
  .outerpad .layoutgroup .item .item-wrapper .card-box .rowset .item-title {
    width: 100%;
  }
}
.outerpad .layoutgroup .item .item-wrapper .card-box .text-wrap .item-text {
  display: inline-block;
  margin-bottom: 0;
  width: 50%;
}
@media (max-width: 1200px) {
  .outerpad .layoutgroup .item .item-wrapper .card-box .text-wrap .item-text {
    width: 100%;
  }
}.outerpad .layoutgroup .item .item-wrapper .card-box .block-action,
.outerpad .layoutgroup .item .item-wrapper .card-box .cta-link,
.outerpad .layoutgroup .item .item-wrapper .card-box .lead-btn,
.outerpad .layoutgroup .item .item-wrapper .card-box .main-btn,
.outerpad .layoutgroup .item .item-wrapper .card-box .page-btn,
.outerpad .layoutgroup .item .item-wrapper .card-box .primary-cta,
.outerpad .layoutgroup .item .item-wrapper .card-box .section-action,
.outerpad .layoutgroup .item .item-wrapper .card-box .section-cta {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.outerpad .inset {
  color: #707070;
}.outerpad .block-title,
.outerpad .chapter-title,
.outerpad .header-text,
.outerpad .lead-h2,
.outerpad .main-heading,
.outerpad .page-h,
.outerpad .section-h,
.outerpad .section-heading,
.outerpad .topic-title {
  color: #000000;
}.outerpad .h-secondary,
.outerpad .lead-sub,
.outerpad .section-sub,
.outerpad .section-tag,
.outerpad .sub-heading,
.outerpad .subtitle-text,
.outerpad .tagline-h {
  color: #707070;
}
.outerpad .item-title {
  color: #ffffff;
}
.outerpad .item-text {
  color: #ffffff;
}.outerpad .block-title,
.outerpad .chapter-title,
.outerpad .header-text,
.outerpad .lead-h2,
.outerpad .main-heading,
.outerpad .page-h,
.outerpad .section-h,
.outerpad .section-heading,
.outerpad .topic-title,
.outerpad .dock {
  color: #9c98cf;
  text-align: center;
}.outerpad .h-secondary,
.outerpad .lead-sub,
.outerpad .section-sub,
.outerpad .section-tag,
.outerpad .sub-heading,
.outerpad .subtitle-text,
.outerpad .tagline-h,
.outerpad .stub {
  color: #5fb4d9;
  text-align: center;
}
.outerpad .inset,
.outerpad .gridunitbox {
  color: #000000;
}.outerpad .item-title,
.outerpad .block-action,
.outerpad .cta-link,
.outerpad .lead-btn,
.outerpad .main-btn,
.outerpad .page-btn,
.outerpad .primary-cta,
.outerpad .section-action,
.outerpad .section-cta,
.outerpad .rowset {
  color: #393193;
}
.outerpad .item-text,
.outerpad .text-wrap {
  color: #000000;
}
.fieldnode {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #f7f7f7;
}
.fieldnode .band {
  height: 12px;
  border: 1px solid #9c98cf;
  border-bottom: none;
  margin-bottom: 32px;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
@media (max-width: 992px) {
  .fieldnode .band {
    margin-bottom: 24px;
  }
}
.fieldnode .gridunitbox {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .fieldnode .gridunitbox {
    margin-bottom: 48px;
  }
}
.fieldnode .gridunitbox .fieldcore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  position: relative;
  overflow: hidden;
  background-color: #d3f2ff;
}
.fieldnode .gridunitbox .fieldcore .tracebox {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  background-color: #5fb4d9;
  display: flex;
}
.fieldnode .gridunitbox .fieldcore .inset {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.fieldnode .contentgrid {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .fieldnode .contentwrap {
    margin-bottom: 48px;
  }
}
.fieldnode .contentwrap img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .fieldnode .contentwrap img {
    height: 300px;
  }
}.fieldnode .hold .block-title,
.fieldnode .hold .chapter-title,
.fieldnode .hold .header-text,
.fieldnode .hold .lead-h2,
.fieldnode .hold .main-heading,
.fieldnode .hold .page-h,
.fieldnode .hold .section-h,
.fieldnode .hold .section-heading,
.fieldnode .hold .topic-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {.fieldnode .hold .block-title,
.fieldnode .hold .chapter-title,
.fieldnode .hold .header-text,
.fieldnode .hold .lead-h2,
.fieldnode .hold .main-heading,
.fieldnode .hold .page-h,
.fieldnode .hold .section-h,
.fieldnode .hold .section-heading,
.fieldnode .hold .topic-title {
    margin-bottom: 24px;
  }
}
.fieldnode .hold .text-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 992px) {
  .fieldnode .hold .text-wrapper {
    grid-template-columns: 1fr;
  }
}
.fieldnode .hold .text-wrapper .patch {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .fieldnode .hold .text-wrapper .patch {
    width: 100%;
  }
}.fieldnode .hold .block-action,
.fieldnode .hold .cta-link,
.fieldnode .hold .lead-btn,
.fieldnode .hold .main-btn,
.fieldnode .hold .page-btn,
.fieldnode .hold .primary-cta,
.fieldnode .hold .section-action,
.fieldnode .hold .section-cta {
  margin-top: 60px;
}
@media (max-width: 992px) {.fieldnode .hold .block-action,
.fieldnode .hold .cta-link,
.fieldnode .hold .lead-btn,
.fieldnode .hold .main-btn,
.fieldnode .hold .page-btn,
.fieldnode .hold .primary-cta,
.fieldnode .hold .section-action,
.fieldnode .hold .section-cta {
    margin-top: 24px;
  }
}
.fieldnode .inset {
  color: #222f30;
}.fieldnode .block-title,
.fieldnode .chapter-title,
.fieldnode .header-text,
.fieldnode .lead-h2,
.fieldnode .main-heading,
.fieldnode .page-h,
.fieldnode .section-h,
.fieldnode .section-heading,
.fieldnode .topic-title {
  color: #222f30;
}.fieldnode .h-secondary,
.fieldnode .lead-sub,
.fieldnode .section-sub,
.fieldnode .section-tag,
.fieldnode .sub-heading,
.fieldnode .subtitle-text,
.fieldnode .tagline-h {
  color: #c9cbbe;
}
.fieldnode .patch {
  color: #4f595a;
}
.fieldnode .inset,
.fieldnode .gridunitbox {
  text-align: center;
  color: #000000;
}.fieldnode .block-title,
.fieldnode .chapter-title,
.fieldnode .header-text,
.fieldnode .lead-h2,
.fieldnode .main-heading,
.fieldnode .page-h,
.fieldnode .section-h,
.fieldnode .section-heading,
.fieldnode .topic-title,
.fieldnode .block-action,
.fieldnode .cta-link,
.fieldnode .lead-btn,
.fieldnode .main-btn,
.fieldnode .page-btn,
.fieldnode .primary-cta,
.fieldnode .section-action,
.fieldnode .section-cta {
  color: #9c98cf;
}
.fieldnode .patch,
.fieldnode .text-wrapper {
  color: #000000;
}
.contentunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/smooth4.jpg");
}
.contentunit .row {
  justify-content: space-between;
}
.contentunit .hold .gridunitbox .inset {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #d3f2ff;
}
@media (max-width: 992px) {.contentunit .hold .block-title,
.contentunit .hold .chapter-title,
.contentunit .hold .header-text,
.contentunit .hold .lead-h2,
.contentunit .hold .main-heading,
.contentunit .hold .page-h,
.contentunit .hold .section-h,
.contentunit .hold .section-heading,
.contentunit .hold .topic-title {
    margin-bottom: 20px;
  }
}
.contentunit .sectionunit .plate {
  margin-bottom: 20px;
}
.contentunit .sectionunit .patch {
  margin-bottom: 0;
}.contentunit .sectionunit .block-action,
.contentunit .sectionunit .cta-link,
.contentunit .sectionunit .lead-btn,
.contentunit .sectionunit .main-btn,
.contentunit .sectionunit .page-btn,
.contentunit .sectionunit .primary-cta,
.contentunit .sectionunit .section-action,
.contentunit .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.contentunit .sectionunit .block-action,
.contentunit .sectionunit .cta-link,
.contentunit .sectionunit .lead-btn,
.contentunit .sectionunit .main-btn,
.contentunit .sectionunit .page-btn,
.contentunit .sectionunit .primary-cta,
.contentunit .sectionunit .section-action,
.contentunit .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.contentunit .inset {
  color: #000000;
}.contentunit .block-title,
.contentunit .chapter-title,
.contentunit .header-text,
.contentunit .lead-h2,
.contentunit .main-heading,
.contentunit .page-h,
.contentunit .section-h,
.contentunit .section-heading,
.contentunit .topic-title {
  color: #9c98cf;
  text-align: center;
}
.contentunit .plate {
  color: #534c9e;
}
.contentunit .patch {
  color: #8a8a8a;
}
.contentunit .inset,
.contentunit .gridunitbox {
  color: #5fb4d9;
  text-align: center;
}.contentunit .patch,
.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  color: #000000;
}
.rowholder {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.rowholder .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .rowholder .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .rowholder .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .rowholder .container {
    max-width: 540px;
  }
}
.rowholder .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.rowholder .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .rowholder .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .rowholder .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.rowholder .identity-section-head {
  margin-bottom: 20px;
  width: 100%;
}.rowholder .block-title,
.rowholder .chapter-title,
.rowholder .header-text,
.rowholder .lead-h2,
.rowholder .main-heading,
.rowholder .page-h,
.rowholder .section-h,
.rowholder .section-heading,
.rowholder .topic-title {
  color: #9c98cf;
}.rowholder .h-secondary,
.rowholder .lead-sub,
.rowholder .section-sub,
.rowholder .section-tag,
.rowholder .sub-heading,
.rowholder .subtitle-text,
.rowholder .tagline-h {
  color: #5fb4d9;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {.rowholder .h-secondary,
.rowholder .lead-sub,
.rowholder .section-sub,
.rowholder .section-tag,
.rowholder .sub-heading,
.rowholder .subtitle-text,
.rowholder .tagline-h {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.rowholder .card-row {
  align-items: stretch;
}
.rowholder .card {
  margin-top: 30px;
}
.rowholder .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #9c98cf, #d3f2ff);
}
.rowholder .card-wrapper:hover .card-bg {
  opacity: 1;
}
.rowholder .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.rowholder .card-wrapper:hover .card-title {
  color: #000000 !important;
}
.rowholder .card-wrapper:hover .card-text {
  color: #000000 !important;
}
.rowholder .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #d3f2ff, #9c98cf);
  opacity: 0;
  transition: .5s all;
}
.rowholder .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.rowholder .blockrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.rowholder .blockrow .identity-iconfont {
  font-size: 42px;
  color: #9c98cf;
}
.rowholder .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.rowholder .card-text {
  color: #000000;
  margin-bottom: 22px;
  transition: .5s all;
}
.rowholder .card-title,
.rowholder .blockrow {
  color: #534c9e;
}
.framegrid {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.framegrid .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .framegrid .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.framegrid .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.framegrid .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.framegrid .row {
  justify-content: center;
}
.framegrid .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.framegrid .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.framegrid .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .sectionunit {
    margin-bottom: 30px;
  }
}.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.framegrid .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .framegrid .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.framegrid .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.framegrid .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.framegrid .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  color: #f1f5eb;
}
.framegrid .patch,
.framegrid .text-wrapper {
  color: #000000;
  text-align: center;
}.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta,
.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  text-align: center;
}
.framegrid .colpad {
  color: #f1f5eb;
  text-align: center;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title,
.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta {
  color: #9c98cf;
}
.framegrid .colpad,
.framegrid .copy-wrapper {
  color: #ffffff;
}
.layoutunit .menu-bar {
  position: relative !important;
}
.layoutunit .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .layoutunit .container {
    flex-wrap: nowrap;
  }
}
.layoutunit .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.layoutunit .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.layoutunit .nav-link {
  position: relative;
}
.layoutunit .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.layoutunit .nav-item:focus,
.layoutunit .nav-link:focus {
  outline: none;
}
.layoutunit .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.layoutunit .navbar .layoutbox img {
  width: auto;
}
.layoutunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .layoutunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .layoutunit .navbar .layoutbox img {
    height: 3rem !important;
  }
  .layoutunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .layoutunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .layoutunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.layoutunit .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.layoutunit .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.layoutunit .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.layoutunit .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.layoutunit .navbar-brand .layoutbox a {
  outline: none;
}
.layoutunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.layoutunit ul.navbar-nav {
  flex-wrap: wrap;
}
.layoutunit .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .layoutunit .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.layoutunit .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.layoutunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.layoutunit .menu-bar {
  padding: 0 1rem;
}
.layoutunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .layoutunit .navbar {
    height: 60px;
  }
  .layoutunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.modulewrap {
  background-image: url("images/cold2.jpg");
}
.modulewrap .sectionunit {
  position: relative;
  z-index: 1;
}
.modulewrap .sectionunit .hold {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .modulewrap .sectionunit .hold {
    margin-bottom: 40px;
  }
}.modulewrap .sectionunit .hold .block-title,
.modulewrap .sectionunit .hold .chapter-title,
.modulewrap .sectionunit .hold .header-text,
.modulewrap .sectionunit .hold .lead-h2,
.modulewrap .sectionunit .hold .main-heading,
.modulewrap .sectionunit .hold .page-h,
.modulewrap .sectionunit .hold .section-h,
.modulewrap .sectionunit .hold .section-heading,
.modulewrap .sectionunit .hold .topic-title {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(0deg, #87ceeb 0%, #9c98cf 100%);
  margin-bottom: 0;
}.modulewrap .sectionunit .hold .h-secondary,
.modulewrap .sectionunit .hold .lead-sub,
.modulewrap .sectionunit .hold .section-sub,
.modulewrap .sectionunit .hold .section-tag,
.modulewrap .sectionunit .hold .sub-heading,
.modulewrap .sectionunit .hold .subtitle-text,
.modulewrap .sectionunit .hold .tagline-h {
  margin-bottom: 0;
}
.modulewrap .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .modulewrap .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.modulewrap .sectionunit .block-action,
.modulewrap .sectionunit .cta-link,
.modulewrap .sectionunit .lead-btn,
.modulewrap .sectionunit .main-btn,
.modulewrap .sectionunit .page-btn,
.modulewrap .sectionunit .primary-cta,
.modulewrap .sectionunit .section-action,
.modulewrap .sectionunit .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}.modulewrap .block-title,
.modulewrap .chapter-title,
.modulewrap .header-text,
.modulewrap .lead-h2,
.modulewrap .main-heading,
.modulewrap .page-h,
.modulewrap .section-h,
.modulewrap .section-heading,
.modulewrap .topic-title {
  color: #ffffff;
}.modulewrap .h-secondary,
.modulewrap .lead-sub,
.modulewrap .section-sub,
.modulewrap .section-tag,
.modulewrap .sub-heading,
.modulewrap .subtitle-text,
.modulewrap .tagline-h {
  color: #000000;
  text-align: center;
}
.modulewrap .patch,
.modulewrap .text-wrapper {
  color: #000000;
  text-align: center;
}.modulewrap .block-title,
.modulewrap .chapter-title,
.modulewrap .header-text,
.modulewrap .lead-h2,
.modulewrap .main-heading,
.modulewrap .page-h,
.modulewrap .section-h,
.modulewrap .section-heading,
.modulewrap .topic-title,
.modulewrap .block-action,
.modulewrap .cta-link,
.modulewrap .lead-btn,
.modulewrap .main-btn,
.modulewrap .page-btn,
.modulewrap .primary-cta,
.modulewrap .section-action,
.modulewrap .section-cta {
  text-align: center;
}
.netbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.netbox .row {
  justify-content: space-between;
}
.netbox .sectionunit .inset {
  margin-bottom: 20px;
}.netbox .sectionunit .block-title,
.netbox .sectionunit .chapter-title,
.netbox .sectionunit .header-text,
.netbox .sectionunit .lead-h2,
.netbox .sectionunit .main-heading,
.netbox .sectionunit .page-h,
.netbox .sectionunit .section-h,
.netbox .sectionunit .section-heading,
.netbox .sectionunit .topic-title {
  margin-bottom: 20px;
}
.netbox .text-wrapper .patch {
  margin-bottom: 14px;
}
.netbox .inset {
  color: #5fb4d9;
}.netbox .block-title,
.netbox .chapter-title,
.netbox .header-text,
.netbox .lead-h2,
.netbox .main-heading,
.netbox .page-h,
.netbox .section-h,
.netbox .section-heading,
.netbox .topic-title {
  color: #9c98cf;
}
.netbox .patch {
  color: #666666;
}.netbox .patch,
.netbox .block-action,
.netbox .cta-link,
.netbox .lead-btn,
.netbox .main-btn,
.netbox .page-btn,
.netbox .primary-cta,
.netbox .section-action,
.netbox .section-cta {
  color: #000000;
}
.tilegrid {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #f7f7f7;
}
.tilegrid .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 100px 310px;
}
@media (max-width: 1440px) {
  .tilegrid .card-wrapper {
    padding: 100px 240px;
  }
}
@media (max-width: 992px) {
  .tilegrid .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .tilegrid .card-wrapper .maparea {
    width: 100%;
    margin-bottom: 20px;
  }
}
.tilegrid .card-wrapper .maparea img {
  position: absolute;
  width: 256px;
  height: 256px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .tilegrid .card-wrapper .maparea img {
    position: static;
    width: 100% !important;
    height: 300px !important;
  }
}
.tilegrid .card-wrapper .maparea .image_1 {
  top: 0;
  left: 160px;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .tilegrid .card-wrapper .maparea .image_1 {
    left: 90px;
  }
}
.tilegrid .card-wrapper .maparea .image_2 {
  top: 0;
  right: 0;
  width: 290px;
  height: 290px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .tilegrid .card-wrapper .maparea .image_2 {
    width: 220px;
    height: 220px;
  }
}
.tilegrid .card-wrapper .maparea .image_3 {
  bottom: 0;
  left: 0;
  width: 290px;
  height: 290px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .tilegrid .card-wrapper .maparea .image_3 {
    width: 220px;
    height: 220px;
  }
}
.tilegrid .card-wrapper .maparea .image_4 {
  bottom: 0;
  right: 160px;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .tilegrid .card-wrapper .maparea .image_4 {
    right: 90px;
  }
}
.tilegrid .card-wrapper .sectionunit {
  position: relative;
  z-index: 1;
  width: 70%;
}
@media (max-width: 1440px) {
  .tilegrid .card-wrapper .sectionunit {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .tilegrid .card-wrapper .sectionunit {
    margin-top: 30px;
  }
}.tilegrid .card-wrapper .sectionunit .block-title,
.tilegrid .card-wrapper .sectionunit .chapter-title,
.tilegrid .card-wrapper .sectionunit .header-text,
.tilegrid .card-wrapper .sectionunit .lead-h2,
.tilegrid .card-wrapper .sectionunit .main-heading,
.tilegrid .card-wrapper .sectionunit .page-h,
.tilegrid .card-wrapper .sectionunit .section-h,
.tilegrid .card-wrapper .sectionunit .section-heading,
.tilegrid .card-wrapper .sectionunit .topic-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {.tilegrid .card-wrapper .sectionunit .block-title,
.tilegrid .card-wrapper .sectionunit .chapter-title,
.tilegrid .card-wrapper .sectionunit .header-text,
.tilegrid .card-wrapper .sectionunit .lead-h2,
.tilegrid .card-wrapper .sectionunit .main-heading,
.tilegrid .card-wrapper .sectionunit .page-h,
.tilegrid .card-wrapper .sectionunit .section-h,
.tilegrid .card-wrapper .sectionunit .section-heading,
.tilegrid .card-wrapper .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.tilegrid .card-wrapper .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tilegrid .card-wrapper .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.tilegrid .card-wrapper .sectionunit .block-action,
.tilegrid .card-wrapper .sectionunit .cta-link,
.tilegrid .card-wrapper .sectionunit .lead-btn,
.tilegrid .card-wrapper .sectionunit .main-btn,
.tilegrid .card-wrapper .sectionunit .page-btn,
.tilegrid .card-wrapper .sectionunit .primary-cta,
.tilegrid .card-wrapper .sectionunit .section-action,
.tilegrid .card-wrapper .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.tilegrid .card-wrapper .sectionunit .block-action,
.tilegrid .card-wrapper .sectionunit .cta-link,
.tilegrid .card-wrapper .sectionunit .lead-btn,
.tilegrid .card-wrapper .sectionunit .main-btn,
.tilegrid .card-wrapper .sectionunit .page-btn,
.tilegrid .card-wrapper .sectionunit .primary-cta,
.tilegrid .card-wrapper .sectionunit .section-action,
.tilegrid .card-wrapper .sectionunit .section-cta {
    margin-top: 20px;
  }
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title {
  color: #323432;
}
.tilegrid .patch,
.tilegrid .text-wrapper {
  color: #000000;
  text-align: center;
}.tilegrid .block-action,
.tilegrid .cta-link,
.tilegrid .lead-btn,
.tilegrid .main-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-action,
.tilegrid .section-cta,
.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title {
  text-align: center;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title,
.tilegrid .block-action,
.tilegrid .cta-link,
.tilegrid .lead-btn,
.tilegrid .main-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-action,
.tilegrid .section-cta {
  color: #9c98cf;
}
.tileunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.tileunit .row {
  justify-content: space-between;
}
.tileunit .sectionunit {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .tileunit .sectionunit {
    padding: 0;
  }
}.tileunit .sectionunit .block-title,
.tileunit .sectionunit .chapter-title,
.tileunit .sectionunit .header-text,
.tileunit .sectionunit .lead-h2,
.tileunit .sectionunit .main-heading,
.tileunit .sectionunit .page-h,
.tileunit .sectionunit .section-h,
.tileunit .sectionunit .section-heading,
.tileunit .sectionunit .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.tileunit .sectionunit .block-title,
.tileunit .sectionunit .chapter-title,
.tileunit .sectionunit .header-text,
.tileunit .sectionunit .lead-h2,
.tileunit .sectionunit .main-heading,
.tileunit .sectionunit .page-h,
.tileunit .sectionunit .section-h,
.tileunit .sectionunit .section-heading,
.tileunit .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.tileunit .sectionunit .patch {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .tileunit .sectionunit .patch {
    margin-bottom: 20px;
  }
}
.tileunit .sectionunit .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.tileunit .sectionunit .logo-wrapper .logo-wrap .maparea {
  margin-right: 12px;
}
.tileunit .sectionunit .logo-wrapper .logo-wrap .maparea img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.tileunit .sectionunit .logo-wrapper .logo-wrap .plate {
  margin-bottom: 0;
}.tileunit .block-title,
.tileunit .chapter-title,
.tileunit .header-text,
.tileunit .lead-h2,
.tileunit .main-heading,
.tileunit .page-h,
.tileunit .section-h,
.tileunit .section-heading,
.tileunit .topic-title {
  color: #000000;
}
.tileunit .plate {
  color: #000000;
}
.tileunit .patch {
  color: #000000;
}.tileunit .block-title,
.tileunit .chapter-title,
.tileunit .header-text,
.tileunit .lead-h2,
.tileunit .main-heading,
.tileunit .page-h,
.tileunit .section-h,
.tileunit .section-heading,
.tileunit .topic-title,
.tileunit .block-action,
.tileunit .cta-link,
.tileunit .lead-btn,
.tileunit .main-btn,
.tileunit .page-btn,
.tileunit .primary-cta,
.tileunit .section-action,
.tileunit .section-cta {
  color: #9c98cf;
}
.tileunit .plate,
.tileunit .logo-wrapper {
  color: #87ceeb;
}
.zonebox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.zonebox .layoutgroup {
  margin: 0 -8px;
}
.zonebox .layoutgroup .item {
  padding: 0 8px;
}
.zonebox .item {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .zonebox .item {
    margin-bottom: 12px;
  }
}
.zonebox .item .item-wrapper .item-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.drawbox {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.drawbox .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .drawbox .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .drawbox .container {
    padding: 0 20px;
  }
}
.drawbox .sectionunit {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .drawbox .sectionunit {
    padding: 46px 0;
  }
}
.drawbox .sectionunit .plate {
  margin-bottom: 32px;
}.drawbox .sectionunit .block-title,
.drawbox .sectionunit .chapter-title,
.drawbox .sectionunit .header-text,
.drawbox .sectionunit .lead-h2,
.drawbox .sectionunit .main-heading,
.drawbox .sectionunit .page-h,
.drawbox .sectionunit .section-h,
.drawbox .sectionunit .section-heading,
.drawbox .sectionunit .topic-title {
  margin-bottom: 32px;
}
.drawbox .sectionunit .text-wrapper .patch {
  display: inline-flex;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .drawbox .sectionunit .text-wrapper .patch {
    margin-bottom: 20px;
    width: 100%;
  }
}
.drawbox .sectionunit .contentwrap img {
  display: inline-flex;
  width: 50%;
  border-radius: 20px !important;
  object-fit: cover;
  height: 280px;
}
@media (max-width: 992px) {
  .drawbox .sectionunit .contentwrap img {
    width: 100%;
  }
}.drawbox .sectionunit .block-action,
.drawbox .sectionunit .cta-link,
.drawbox .sectionunit .lead-btn,
.drawbox .sectionunit .main-btn,
.drawbox .sectionunit .page-btn,
.drawbox .sectionunit .primary-cta,
.drawbox .sectionunit .section-action,
.drawbox .sectionunit .section-cta {
  margin-top: 60px;
}
@media (max-width: 992px) {.drawbox .sectionunit .block-action,
.drawbox .sectionunit .cta-link,
.drawbox .sectionunit .lead-btn,
.drawbox .sectionunit .main-btn,
.drawbox .sectionunit .page-btn,
.drawbox .sectionunit .primary-cta,
.drawbox .sectionunit .section-action,
.drawbox .sectionunit .section-cta {
    margin-top: 20px;
  }
}.drawbox .block-title,
.drawbox .chapter-title,
.drawbox .header-text,
.drawbox .lead-h2,
.drawbox .main-heading,
.drawbox .page-h,
.drawbox .section-h,
.drawbox .section-heading,
.drawbox .topic-title {
  color: #000000;
}
.drawbox .plate {
  color: #5fb4d9;
  text-align: center;
}
.drawbox .patch,
.drawbox .text-wrapper {
  color: #000000;
  text-align: center;
}.drawbox .block-title,
.drawbox .chapter-title,
.drawbox .header-text,
.drawbox .lead-h2,
.drawbox .main-heading,
.drawbox .page-h,
.drawbox .section-h,
.drawbox .section-heading,
.drawbox .topic-title,
.drawbox .block-action,
.drawbox .cta-link,
.drawbox .lead-btn,
.drawbox .main-btn,
.drawbox .page-btn,
.drawbox .primary-cta,
.drawbox .section-action,
.drawbox .section-cta,
.drawbox .contentwrap {
  text-align: center;
  color: #9c98cf;
}
.framegrid {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.framegrid .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .framegrid .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.framegrid .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.framegrid .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.framegrid .row {
  justify-content: center;
}
.framegrid .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.framegrid .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.framegrid .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .sectionunit {
    margin-bottom: 30px;
  }
}.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.framegrid .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .framegrid .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.framegrid .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.framegrid .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.framegrid .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  color: #f1f5eb;
}
.framegrid .patch,
.framegrid .text-wrapper {
  color: #000000;
  text-align: center;
}.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta,
.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  text-align: center;
}
.framegrid .colpad {
  color: #f1f5eb;
  text-align: center;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title,
.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta {
  color: #9c98cf;
}
.framegrid .colpad,
.framegrid .copy-wrapper {
  color: #ffffff;
}
.layoutunit .menu-bar {
  position: relative !important;
}
.layoutunit .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .layoutunit .container {
    flex-wrap: nowrap;
  }
}
.layoutunit .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.layoutunit .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.layoutunit .nav-link {
  position: relative;
}
.layoutunit .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.layoutunit .nav-item:focus,
.layoutunit .nav-link:focus {
  outline: none;
}
.layoutunit .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.layoutunit .navbar .layoutbox img {
  width: auto;
}
.layoutunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .layoutunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .layoutunit .navbar .layoutbox img {
    height: 3rem !important;
  }
  .layoutunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .layoutunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .layoutunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.layoutunit .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.layoutunit .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.layoutunit .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.layoutunit .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.layoutunit .navbar-brand .layoutbox a {
  outline: none;
}
.layoutunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.layoutunit ul.navbar-nav {
  flex-wrap: wrap;
}
.layoutunit .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .layoutunit .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.layoutunit .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.layoutunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.layoutunit .menu-bar {
  padding: 0 1rem;
}
.layoutunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .layoutunit .navbar {
    height: 60px;
  }
  .layoutunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.modtrack {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.modtrack .tracebox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #f7f7f7;
  pointer-events: none;
}
@media (max-width: 992px) {
  .modtrack .tracebox {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.modtrack .row {
  position: relative;
  z-index: 1;
}.modtrack .hold .block-title,
.modtrack .hold .chapter-title,
.modtrack .hold .header-text,
.modtrack .hold .lead-h2,
.modtrack .hold .main-heading,
.modtrack .hold .page-h,
.modtrack .hold .section-h,
.modtrack .hold .section-heading,
.modtrack .hold .topic-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {.modtrack .hold .block-title,
.modtrack .hold .chapter-title,
.modtrack .hold .header-text,
.modtrack .hold .lead-h2,
.modtrack .hold .main-heading,
.modtrack .hold .page-h,
.modtrack .hold .section-h,
.modtrack .hold .section-heading,
.modtrack .hold .topic-title {
    margin-bottom: 46px;
  }
}
.modtrack .contentwrap {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .modtrack .contentwrap {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .modtrack .contentwrap {
    margin-left: 0;
  }
}
.modtrack .contentwrap img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .modtrack .contentwrap img {
    height: 350px;
  }
}
.modtrack .sectionunit {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .modtrack .sectionunit {
    padding-top: 22px;
  }
}
.modtrack .sectionunit .text-wrapper .patch {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .modtrack .sectionunit .text-wrapper .patch {
    width: 100%;
    margin-bottom: 22px;
  }
}
.modtrack .sectionunit .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .modtrack .sectionunit .desc-wrapper {
    display: block;
  }
}
.modtrack .sectionunit .desc-wrapper .plate {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .modtrack .sectionunit .desc-wrapper .plate {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}.modtrack .sectionunit .desc-wrapper .block-action,
.modtrack .sectionunit .desc-wrapper .cta-link,
.modtrack .sectionunit .desc-wrapper .lead-btn,
.modtrack .sectionunit .desc-wrapper .main-btn,
.modtrack .sectionunit .desc-wrapper .page-btn,
.modtrack .sectionunit .desc-wrapper .primary-cta,
.modtrack .sectionunit .desc-wrapper .section-action,
.modtrack .sectionunit .desc-wrapper .section-cta {
  width: 50%;
}
@media (max-width: 992px) {.modtrack .sectionunit .desc-wrapper .block-action,
.modtrack .sectionunit .desc-wrapper .cta-link,
.modtrack .sectionunit .desc-wrapper .lead-btn,
.modtrack .sectionunit .desc-wrapper .main-btn,
.modtrack .sectionunit .desc-wrapper .page-btn,
.modtrack .sectionunit .desc-wrapper .primary-cta,
.modtrack .sectionunit .desc-wrapper .section-action,
.modtrack .sectionunit .desc-wrapper .section-cta {
    width: 100%;
  }
}.modtrack .sectionunit .desc-wrapper .block-action .btn,
.modtrack .sectionunit .desc-wrapper .cta-link .btn,
.modtrack .sectionunit .desc-wrapper .lead-btn .btn,
.modtrack .sectionunit .desc-wrapper .main-btn .btn,
.modtrack .sectionunit .desc-wrapper .page-btn .btn,
.modtrack .sectionunit .desc-wrapper .primary-cta .btn,
.modtrack .sectionunit .desc-wrapper .section-action .btn,
.modtrack .sectionunit .desc-wrapper .section-cta .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {.modtrack .sectionunit .desc-wrapper .block-action .btn,
.modtrack .sectionunit .desc-wrapper .cta-link .btn,
.modtrack .sectionunit .desc-wrapper .lead-btn .btn,
.modtrack .sectionunit .desc-wrapper .main-btn .btn,
.modtrack .sectionunit .desc-wrapper .page-btn .btn,
.modtrack .sectionunit .desc-wrapper .primary-cta .btn,
.modtrack .sectionunit .desc-wrapper .section-action .btn,
.modtrack .sectionunit .desc-wrapper .section-cta .btn {
    padding: 20px 32px;
  }
}.modtrack .block-title,
.modtrack .chapter-title,
.modtrack .header-text,
.modtrack .lead-h2,
.modtrack .main-heading,
.modtrack .page-h,
.modtrack .section-h,
.modtrack .section-heading,
.modtrack .topic-title {
  color: #9c98cf;
  text-align: center;
}
.modtrack .patch {
  color: #51565c;
}
.modtrack .plate {
  color: #51565c;
}.modtrack .plate,
.modtrack .block-action,
.modtrack .cta-link,
.modtrack .lead-btn,
.modtrack .main-btn,
.modtrack .page-btn,
.modtrack .primary-cta,
.modtrack .section-action,
.modtrack .section-cta {
  color: #000000;
}
.modtrack .patch,
.modtrack .text-wrapper {
  color: #000000;
}
.nodemapunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/cold1.jpg");
}
.nodemapunit .row {
  justify-content: center;
}
.nodemapunit .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .nodemapunit .row {
    padding: 0 12px;
  }
}
.nodemapunit .item-wrap {
  z-index: 1;
}.nodemapunit .h-secondary,
.nodemapunit .lead-sub,
.nodemapunit .section-sub,
.nodemapunit .section-tag,
.nodemapunit .sub-heading,
.nodemapunit .subtitle-text,
.nodemapunit .tagline-h {
  margin-bottom: 46px;
  color: #5fb4d9;
  text-align: justify;
}
@media (max-width: 992px) {.nodemapunit .h-secondary,
.nodemapunit .lead-sub,
.nodemapunit .section-sub,
.nodemapunit .section-tag,
.nodemapunit .sub-heading,
.nodemapunit .subtitle-text,
.nodemapunit .tagline-h {
    margin-bottom: 37px;
  }
}.nodemapunit .hold .block-title,
.nodemapunit .hold .chapter-title,
.nodemapunit .hold .header-text,
.nodemapunit .hold .lead-h2,
.nodemapunit .hold .main-heading,
.nodemapunit .hold .page-h,
.nodemapunit .hold .section-h,
.nodemapunit .hold .section-heading,
.nodemapunit .hold .topic-title {
  margin-bottom: 19.5px;
}
.nodemapunit .text-wrapper .patch {
  margin-bottom: 46px;
  padding-top: 8px;
  opacity: .8;
}
@media (max-width: 992px) {
  .nodemapunit .text-wrapper .patch {
    margin-bottom: 37px;
    padding-top: 6.5px;
  }
}.nodemapunit .block-title,
.nodemapunit .chapter-title,
.nodemapunit .header-text,
.nodemapunit .lead-h2,
.nodemapunit .main-heading,
.nodemapunit .page-h,
.nodemapunit .section-h,
.nodemapunit .section-heading,
.nodemapunit .topic-title {
  color: #ffffff;
}
.nodemapunit .patch {
  color: #ffffff;
}.nodemapunit .patch,
.nodemapunit .block-action,
.nodemapunit .cta-link,
.nodemapunit .lead-btn,
.nodemapunit .main-btn,
.nodemapunit .page-btn,
.nodemapunit .primary-cta,
.nodemapunit .section-action,
.nodemapunit .section-cta {
  color: #000000;
}.nodemapunit .block-title,
.nodemapunit .chapter-title,
.nodemapunit .header-text,
.nodemapunit .lead-h2,
.nodemapunit .main-heading,
.nodemapunit .page-h,
.nodemapunit .section-h,
.nodemapunit .section-heading,
.nodemapunit .topic-title,
.nodemapunit .contentwrap {
  color: #9c98cf;
}
.gripbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.gripbox .row {
  position: relative;
}
.gripbox .row .blur-circle {
  position: absolute;
  top: 0;
  left: 10%;
  width: 30%;
  height: 100%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #d3f2ff 50%, #f7f7f7);
  filter: blur(64px) blur(64px);
  z-index: 1;
  left: auto;
  right: 10%;
}
@media (max-width: 768px) {
  .gripbox .row .blur-circle {
    display: none;
  }
}
.gripbox .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .gripbox .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .gripbox .row {
    padding: 0 24px;
  }
}
.gripbox .title {
  display: flex;
  align-items: center;
}
.gripbox .hold {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .gripbox .hold {
    margin-bottom: 32px;
  }
}.gripbox .hold .block-title,
.gripbox .hold .chapter-title,
.gripbox .hold .header-text,
.gripbox .hold .lead-h2,
.gripbox .hold .main-heading,
.gripbox .hold .page-h,
.gripbox .hold .section-h,
.gripbox .hold .section-heading,
.gripbox .hold .topic-title {
  margin-bottom: 32px;
}.gripbox .hold .block-title span,
.gripbox .hold .chapter-title span,
.gripbox .hold .header-text span,
.gripbox .hold .lead-h2 span,
.gripbox .hold .main-heading span,
.gripbox .hold .page-h span,
.gripbox .hold .section-h span,
.gripbox .hold .section-heading span,
.gripbox .hold .topic-title span {
  position: relative;
  z-index: 1;
}.gripbox .hold .block-title span::before,
.gripbox .hold .chapter-title span::before,
.gripbox .hold .header-text span::before,
.gripbox .hold .lead-h2 span::before,
.gripbox .hold .main-heading span::before,
.gripbox .hold .page-h span::before,
.gripbox .hold .section-h span::before,
.gripbox .hold .section-heading span::before,
.gripbox .hold .topic-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffffff;
  z-index: -1;
}
.gripbox .hold .patch {
  margin: 0;
}
.gripbox .contentwrap {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .gripbox .contentwrap {
    margin-bottom: 32px;
  }
}
.gripbox .contentwrap img {
  max-height: 500px;
  width: 70%;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .gripbox .contentwrap img {
    width: 100%;
  }
}.gripbox .block-title,
.gripbox .chapter-title,
.gripbox .header-text,
.gripbox .lead-h2,
.gripbox .main-heading,
.gripbox .page-h,
.gripbox .section-h,
.gripbox .section-heading,
.gripbox .topic-title {
  color: #9c98cf;
}
.gripbox .patch {
  color: #111111;
}
.dockband {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}.dockband .block-title,
.dockband .chapter-title,
.dockband .header-text,
.dockband .lead-h2,
.dockband .main-heading,
.dockband .page-h,
.dockband .section-h,
.dockband .section-heading,
.dockband .topic-title {
  color: #9c98cf;
}.dockband .h-secondary,
.dockband .lead-sub,
.dockband .section-sub,
.dockband .section-tag,
.dockband .sub-heading,
.dockband .subtitle-text,
.dockband .tagline-h {
  color: #ffffff;
}
.dockband ellipse,
.dockband path {
  fill: #d3f2ff;
}
.dockband .figure {
  position: relative;
  display: inline-block;
}
.dockband .patch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  text-align: center;
  color: #5fb4d9;
}.dockband .h-secondary,
.dockband .lead-sub,
.dockband .section-sub,
.dockband .section-tag,
.dockband .sub-heading,
.dockband .subtitle-text,
.dockband .tagline-h,
.dockband .block-action,
.dockband .cta-link,
.dockband .lead-btn,
.dockband .main-btn,
.dockband .page-btn,
.dockband .primary-cta,
.dockband .section-action,
.dockband .section-cta {
  color: #5fb4d9;
}
.formwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/wethue1.jpg");
}
.formwrap .row {
  justify-content: center;
}
.formwrap .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .formwrap .row {
    padding: 0 12px;
  }
}
.formwrap .item-wrap {
  z-index: 1;
}.formwrap .h-secondary,
.formwrap .lead-sub,
.formwrap .section-sub,
.formwrap .section-tag,
.formwrap .sub-heading,
.formwrap .subtitle-text,
.formwrap .tagline-h {
  margin-bottom: 46px;
  color: #5fb4d9;
  text-align: justify;
}
@media (max-width: 992px) {.formwrap .h-secondary,
.formwrap .lead-sub,
.formwrap .section-sub,
.formwrap .section-tag,
.formwrap .sub-heading,
.formwrap .subtitle-text,
.formwrap .tagline-h {
    margin-bottom: 37px;
  }
}.formwrap .hold .block-title,
.formwrap .hold .chapter-title,
.formwrap .hold .header-text,
.formwrap .hold .lead-h2,
.formwrap .hold .main-heading,
.formwrap .hold .page-h,
.formwrap .hold .section-h,
.formwrap .hold .section-heading,
.formwrap .hold .topic-title {
  margin-bottom: 19.5px;
}
.formwrap .text-wrapper .patch {
  margin-bottom: 46px;
  padding-top: 8px;
  opacity: .8;
}
@media (max-width: 992px) {
  .formwrap .text-wrapper .patch {
    margin-bottom: 37px;
    padding-top: 6.5px;
  }
}.formwrap .block-title,
.formwrap .chapter-title,
.formwrap .header-text,
.formwrap .lead-h2,
.formwrap .main-heading,
.formwrap .page-h,
.formwrap .section-h,
.formwrap .section-heading,
.formwrap .topic-title {
  color: #ffffff;
}
.formwrap .patch {
  color: #ffffff;
}.formwrap .patch,
.formwrap .block-action,
.formwrap .cta-link,
.formwrap .lead-btn,
.formwrap .main-btn,
.formwrap .page-btn,
.formwrap .primary-cta,
.formwrap .section-action,
.formwrap .section-cta {
  color: #000000;
}.formwrap .block-title,
.formwrap .chapter-title,
.formwrap .header-text,
.formwrap .lead-h2,
.formwrap .main-heading,
.formwrap .page-h,
.formwrap .section-h,
.formwrap .section-heading,
.formwrap .topic-title,
.formwrap .contentwrap {
  color: #9c98cf;
}
.flowunit {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}.flowunit .h-secondary,
.flowunit .lead-sub,
.flowunit .section-sub,
.flowunit .section-tag,
.flowunit .sub-heading,
.flowunit .subtitle-text,
.flowunit .tagline-h {
  color: #5fb4d9;
  text-align: center;
}
.framegrid {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.framegrid .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .framegrid .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.framegrid .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.framegrid .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.framegrid .row {
  justify-content: center;
}
.framegrid .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.framegrid .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.framegrid .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .sectionunit {
    margin-bottom: 30px;
  }
}.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.framegrid .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .framegrid .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.framegrid .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.framegrid .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.framegrid .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  color: #f1f5eb;
}
.framegrid .patch,
.framegrid .text-wrapper {
  color: #000000;
  text-align: center;
}.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta,
.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  text-align: center;
}
.framegrid .colpad {
  color: #f1f5eb;
  text-align: center;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title,
.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta {
  color: #9c98cf;
}
.framegrid .colpad,
.framegrid .copy-wrapper {
  color: #ffffff;
}
.layoutunit .menu-bar {
  position: relative !important;
}
.layoutunit .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .layoutunit .container {
    flex-wrap: nowrap;
  }
}
.layoutunit .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.layoutunit .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.layoutunit .nav-link {
  position: relative;
}
.layoutunit .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.layoutunit .nav-item:focus,
.layoutunit .nav-link:focus {
  outline: none;
}
.layoutunit .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.layoutunit .navbar .layoutbox img {
  width: auto;
}
.layoutunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .layoutunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .layoutunit .navbar .layoutbox img {
    height: 3rem !important;
  }
  .layoutunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .layoutunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .layoutunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.layoutunit .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.layoutunit .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.layoutunit .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.layoutunit .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.layoutunit .navbar-brand .layoutbox a {
  outline: none;
}
.layoutunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.layoutunit ul.navbar-nav {
  flex-wrap: wrap;
}
.layoutunit .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .layoutunit .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.layoutunit .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.layoutunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.layoutunit .menu-bar {
  padding: 0 1rem;
}
.layoutunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .layoutunit .navbar {
    height: 60px;
  }
  .layoutunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.framebox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/warm1.jpg");
}
.framebox .contentgrid {
  margin: 0 -50px 50px;
}
.framebox .contentgrid .card {
  padding: 0 50px;
}
.framebox .contentgrid .card:last-child {
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .framebox .contentgrid .contentwrap {
    margin-bottom: 30px;
  }
}
.framebox .contentgrid .contentwrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
@media (max-width: 1640px) {
  .framebox .contentgrid .contentwrap img {
    height: 300px;
  }
}
@media (max-width: 1440px) {
  .framebox .contentgrid .contentwrap img {
    height: 250px;
  }
}
@media (max-width: 1200px) {
  .framebox .contentgrid .contentwrap img {
    height: 200px;
  }
}
@media (max-width: 992px) {
  .framebox .contentgrid .contentwrap img {
    height: 300px;
  }
}.framebox .contentgrid .text-wrapper .hold .block-title,
.framebox .contentgrid .text-wrapper .hold .chapter-title,
.framebox .contentgrid .text-wrapper .hold .header-text,
.framebox .contentgrid .text-wrapper .hold .lead-h2,
.framebox .contentgrid .text-wrapper .hold .main-heading,
.framebox .contentgrid .text-wrapper .hold .page-h,
.framebox .contentgrid .text-wrapper .hold .section-h,
.framebox .contentgrid .text-wrapper .hold .section-heading,
.framebox .contentgrid .text-wrapper .hold .topic-title {
  margin-bottom: 20px;
}
.framebox .contentgrid .text-wrapper .text-wrap .patch {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .framebox .contentgrid .text-wrapper .text-wrap .patch {
    width: 100%;
  }
}.framebox .contentgrid .block-action,
.framebox .contentgrid .cta-link,
.framebox .contentgrid .lead-btn,
.framebox .contentgrid .main-btn,
.framebox .contentgrid .page-btn,
.framebox .contentgrid .primary-cta,
.framebox .contentgrid .section-action,
.framebox .contentgrid .section-cta {
  margin-top: 20px;
}.framebox .block-title,
.framebox .chapter-title,
.framebox .header-text,
.framebox .lead-h2,
.framebox .main-heading,
.framebox .page-h,
.framebox .section-h,
.framebox .section-heading,
.framebox .topic-title {
  color: #ffffff;
}.framebox .h-secondary,
.framebox .lead-sub,
.framebox .section-sub,
.framebox .section-tag,
.framebox .sub-heading,
.framebox .subtitle-text,
.framebox .tagline-h {
  color: #ffffff;
}
.framebox .patch {
  color: #ffffff;
}.framebox .block-title,
.framebox .chapter-title,
.framebox .header-text,
.framebox .lead-h2,
.framebox .main-heading,
.framebox .page-h,
.framebox .section-h,
.framebox .section-heading,
.framebox .topic-title,
.framebox .hold,
.framebox .block-action,
.framebox .cta-link,
.framebox .lead-btn,
.framebox .main-btn,
.framebox .page-btn,
.framebox .primary-cta,
.framebox .section-action,
.framebox .section-cta {
  color: #9c98cf;
}
.framebox .patch,
.framebox .text-wrap {
  color: #000000;
}
.zonecore {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f7f7f7;
}
.zonecore .dockwrap {
  background-color: #ffffff;
  opacity: 0.4;
}

.zonecore img {
  height: 100%;
  object-fit: cover;
}.zonecore .block-action,
.zonecore .cta-link,
.zonecore .lead-btn,
.zonecore .main-btn,
.zonecore .page-btn,
.zonecore .primary-cta,
.zonecore .section-action,
.zonecore .section-cta {
  width: 30%;
}
@media (max-width: 767px) {.zonecore .block-action,
.zonecore .cta-link,
.zonecore .lead-btn,
.zonecore .main-btn,
.zonecore .page-btn,
.zonecore .primary-cta,
.zonecore .section-action,
.zonecore .section-cta {
    width: 100%;
  }
}
.zonecore .btn {
  border-radius: 100px;
  height: 80px;
  width: 100%;
}
@media (max-width: 767px) {
  .zonecore .row {
    flex-direction: column;
  }
}
.zonecore .col-lg-4 {
  display: flex;
  align-items: self-end;
}
.zonecore .item-wrapper {
  background: linear-gradient(to bottom, #87ceeb, #9c98cf);
  padding: 10rem 3rem;
  margin: 0 1rem;
}
@media (max-width: 992px) {
  .zonecore .item-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .zonecore .item-wrapper {
    padding: 2rem 0rem;
    margin: 0 0.2rem;
  }
}
.zonecore input::-webkit-clear-button {
  display: none;
}
.zonecore input::-webkit-inner-spin-button {
  display: none;
}
.zonecore input::-webkit-outer-spin-button {
  display: none;
}
.zonecore input::-webkit-calendar-picker-indicator {
  display: none;
}.zonecore .block-title,
.zonecore .chapter-title,
.zonecore .header-text,
.zonecore .lead-h2,
.zonecore .main-heading,
.zonecore .page-h,
.zonecore .section-h,
.zonecore .section-heading,
.zonecore .topic-title {
  text-align: left;
  color: #1e2024;
}.zonecore .patch,
.zonecore .block-action,
.zonecore .cta-link,
.zonecore .lead-btn,
.zonecore .main-btn,
.zonecore .page-btn,
.zonecore .primary-cta,
.zonecore .section-action,
.zonecore .section-cta {
  color: #000000;
}
.host {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .host .contentgrid {
    margin-bottom: 32px;
  }
}.host .contentgrid .block-title,
.host .contentgrid .chapter-title,
.host .contentgrid .header-text,
.host .contentgrid .lead-h2,
.host .contentgrid .main-heading,
.host .contentgrid .page-h,
.host .contentgrid .section-h,
.host .contentgrid .section-heading,
.host .contentgrid .topic-title {
  margin-bottom: 0;
}.host .contentgrid .block-action,
.host .contentgrid .cta-link,
.host .contentgrid .lead-btn,
.host .contentgrid .main-btn,
.host .contentgrid .page-btn,
.host .contentgrid .primary-cta,
.host .contentgrid .section-action,
.host .contentgrid .section-cta {
  margin-top: 14px;
}.host .contentgrid .block-action .btn,
.host .contentgrid .cta-link .btn,
.host .contentgrid .lead-btn .btn,
.host .contentgrid .main-btn .btn,
.host .contentgrid .page-btn .btn,
.host .contentgrid .primary-cta .btn,
.host .contentgrid .section-action .btn,
.host .contentgrid .section-cta .btn {
  margin-bottom: 0;
}
.host .text-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.host .text-wrapper .patch {
  display: inline-block;
  margin-bottom: 0;
}
.host .text-wrapper .list-wrapper {
  margin-top: 24px;
}
.host .text-wrapper .list-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.host .text-wrapper .list-wrapper .list .item-wrap {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}.host .block-title,
.host .chapter-title,
.host .header-text,
.host .lead-h2,
.host .main-heading,
.host .page-h,
.host .section-h,
.host .section-heading,
.host .topic-title {
  color: #000000;
}
.host .patch,
.host .text-wrapper {
  color: #4f4f4f;
}
.host .list {
  color: #000000;
}.host .block-title,
.host .chapter-title,
.host .header-text,
.host .lead-h2,
.host .main-heading,
.host .page-h,
.host .section-h,
.host .section-heading,
.host .topic-title,
.host .block-action,
.host .cta-link,
.host .lead-btn,
.host .main-btn,
.host .page-btn,
.host .primary-cta,
.host .section-action,
.host .section-cta {
  color: #9c98cf;
}
.host .patch {
  color: #000000;
}
.packwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.packwrap .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .packwrap .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .packwrap .contentgrid .hold {
    margin-bottom: 32px;
  }
}
.packwrap .contentgrid .hold .gridunitbox {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .packwrap .contentgrid .hold .gridunitbox {
    margin-bottom: 16px;
  }
}
.packwrap .contentgrid .hold .gridunitbox .fieldcore {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.packwrap .contentgrid .hold .gridunitbox .fieldcore .line-wrap {
  height: 6px;
  width: 96px;
  background-image: linear-gradient(90deg, #9c98cf 0, transparent 100%);
}
.packwrap .contentgrid .hold .gridunitbox .fieldcore .inset {
  margin-bottom: 0;
}.packwrap .contentgrid .hold .block-title,
.packwrap .contentgrid .hold .chapter-title,
.packwrap .contentgrid .hold .header-text,
.packwrap .contentgrid .hold .lead-h2,
.packwrap .contentgrid .hold .main-heading,
.packwrap .contentgrid .hold .page-h,
.packwrap .contentgrid .hold .section-h,
.packwrap .contentgrid .hold .section-heading,
.packwrap .contentgrid .hold .topic-title {
  margin-bottom: 10px;
}
.packwrap .contentgrid .hold .patch {
  margin-bottom: 0;
}.packwrap .contentgrid .hold .block-action,
.packwrap .contentgrid .hold .cta-link,
.packwrap .contentgrid .hold .lead-btn,
.packwrap .contentgrid .hold .main-btn,
.packwrap .contentgrid .hold .page-btn,
.packwrap .contentgrid .hold .primary-cta,
.packwrap .contentgrid .hold .section-action,
.packwrap .contentgrid .hold .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.packwrap .contentgrid .contentwrap img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .packwrap .contentgrid .contentwrap img {
    height: 300px;
  }
}
.packwrap .inset {
  color: #004aad;
}.packwrap .block-title,
.packwrap .chapter-title,
.packwrap .header-text,
.packwrap .lead-h2,
.packwrap .main-heading,
.packwrap .page-h,
.packwrap .section-h,
.packwrap .section-heading,
.packwrap .topic-title {
  color: #004aad;
}
.packwrap .patch {
  color: #000000;
}.packwrap .block-title,
.packwrap .chapter-title,
.packwrap .header-text,
.packwrap .lead-h2,
.packwrap .main-heading,
.packwrap .page-h,
.packwrap .section-h,
.packwrap .section-heading,
.packwrap .topic-title,
.packwrap .block-action,
.packwrap .cta-link,
.packwrap .lead-btn,
.packwrap .main-btn,
.packwrap .page-btn,
.packwrap .primary-cta,
.packwrap .section-action,
.packwrap .section-cta {
  color: #9c98cf;
}
.packwrap .inset,
.packwrap .gridunitbox {
  color: #5fb4d9;
}
.framegrid {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.framegrid .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .framegrid .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.framegrid .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.framegrid .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.framegrid .row {
  justify-content: center;
}
.framegrid .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.framegrid .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.framegrid .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .sectionunit {
    margin-bottom: 30px;
  }
}.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.framegrid .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .framegrid .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.framegrid .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.framegrid .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.framegrid .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  color: #f1f5eb;
}
.framegrid .patch,
.framegrid .text-wrapper {
  color: #000000;
  text-align: center;
}.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta,
.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  text-align: center;
}
.framegrid .colpad {
  color: #f1f5eb;
  text-align: center;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title,
.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta {
  color: #9c98cf;
}
.framegrid .colpad,
.framegrid .copy-wrapper {
  color: #ffffff;
}
.layoutunit .menu-bar {
  position: relative !important;
}
.layoutunit .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .layoutunit .container {
    flex-wrap: nowrap;
  }
}
.layoutunit .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.layoutunit .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.layoutunit .nav-link {
  position: relative;
}
.layoutunit .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.layoutunit .nav-item:focus,
.layoutunit .nav-link:focus {
  outline: none;
}
.layoutunit .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.layoutunit .navbar .layoutbox img {
  width: auto;
}
.layoutunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .layoutunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .layoutunit .navbar .layoutbox img {
    height: 3rem !important;
  }
  .layoutunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .layoutunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .layoutunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.layoutunit .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.layoutunit .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.layoutunit .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.layoutunit .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.layoutunit .navbar-brand .layoutbox a {
  outline: none;
}
.layoutunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.layoutunit ul.navbar-nav {
  flex-wrap: wrap;
}
.layoutunit .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .layoutunit .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.layoutunit .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.layoutunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.layoutunit .menu-bar {
  padding: 0 1rem;
}
.layoutunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .layoutunit .navbar {
    height: 60px;
  }
  .layoutunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.nodeband {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.nodeband .sectionunit {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .nodeband .sectionunit {
    padding: 30px 20px;
  }
}
.nodeband .sectionunit .maparea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nodeband .sectionunit .maparea img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nodeband .sectionunit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #9c98cf 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.nodeband .sectionunit .contentgrid {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .nodeband .sectionunit .contentgrid {
    width: 100%;
  }
}
.nodeband .sectionunit .contentgrid .desc-wrapper .plate {
  display: inline-block;
  background-color: #d3f2ff;
  padding: 8px 16px;
  margin-bottom: 32px;
}.nodeband .sectionunit .contentgrid .block-title,
.nodeband .sectionunit .contentgrid .chapter-title,
.nodeband .sectionunit .contentgrid .header-text,
.nodeband .sectionunit .contentgrid .lead-h2,
.nodeband .sectionunit .contentgrid .main-heading,
.nodeband .sectionunit .contentgrid .page-h,
.nodeband .sectionunit .contentgrid .section-h,
.nodeband .sectionunit .contentgrid .section-heading,
.nodeband .sectionunit .contentgrid .topic-title {
  margin-bottom: 32px;
}
.nodeband .sectionunit .contentgrid .patch {
  margin-bottom: 0;
}.nodeband .sectionunit .contentgrid .block-action,
.nodeband .sectionunit .contentgrid .cta-link,
.nodeband .sectionunit .contentgrid .lead-btn,
.nodeband .sectionunit .contentgrid .main-btn,
.nodeband .sectionunit .contentgrid .page-btn,
.nodeband .sectionunit .contentgrid .primary-cta,
.nodeband .sectionunit .contentgrid .section-action,
.nodeband .sectionunit .contentgrid .section-cta {
  margin-top: 64px;
}.nodeband .sectionunit .contentgrid .block-action .btn,
.nodeband .sectionunit .contentgrid .cta-link .btn,
.nodeband .sectionunit .contentgrid .lead-btn .btn,
.nodeband .sectionunit .contentgrid .main-btn .btn,
.nodeband .sectionunit .contentgrid .page-btn .btn,
.nodeband .sectionunit .contentgrid .primary-cta .btn,
.nodeband .sectionunit .contentgrid .section-action .btn,
.nodeband .sectionunit .contentgrid .section-cta .btn {
  margin-bottom: 0;
}.nodeband .block-title,
.nodeband .chapter-title,
.nodeband .header-text,
.nodeband .lead-h2,
.nodeband .main-heading,
.nodeband .page-h,
.nodeband .section-h,
.nodeband .section-heading,
.nodeband .topic-title {
  color: #404349;
}
.nodeband .patch {
  color: #ffffff;
}
.nodeband .plate {
  color: #b19a7c;
}.nodeband .block-title,
.nodeband .chapter-title,
.nodeband .header-text,
.nodeband .lead-h2,
.nodeband .main-heading,
.nodeband .page-h,
.nodeband .section-h,
.nodeband .section-heading,
.nodeband .topic-title,
.nodeband .block-action,
.nodeband .cta-link,
.nodeband .lead-btn,
.nodeband .main-btn,
.nodeband .page-btn,
.nodeband .primary-cta,
.nodeband .section-action,
.nodeband .section-cta {
  color: #ffffff;
}
.platebox {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.platebox .sectionunit .patch {
  margin-bottom: 22px;
}
.platebox .patch {
  color: #000000;
}.platebox .block-action,
.platebox .cta-link,
.platebox .lead-btn,
.platebox .main-btn,
.platebox .page-btn,
.platebox .primary-cta,
.platebox .section-action,
.platebox .section-cta {
  text-align: center;
}
.framegrid {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.framegrid .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .framegrid .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.framegrid .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.framegrid .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.framegrid .row {
  justify-content: center;
}
.framegrid .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.framegrid .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.framegrid .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .sectionunit {
    margin-bottom: 30px;
  }
}.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.framegrid .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .framegrid .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.framegrid .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.framegrid .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.framegrid .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  color: #f1f5eb;
}
.framegrid .patch,
.framegrid .text-wrapper {
  color: #000000;
  text-align: center;
}.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta,
.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  text-align: center;
}
.framegrid .colpad {
  color: #f1f5eb;
  text-align: center;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title,
.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta {
  color: #9c98cf;
}
.framegrid .colpad,
.framegrid .copy-wrapper {
  color: #ffffff;
}
.layoutunit .menu-bar {
  position: relative !important;
}
.layoutunit .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .layoutunit .container {
    flex-wrap: nowrap;
  }
}
.layoutunit .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.layoutunit .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.layoutunit .nav-link {
  position: relative;
}
.layoutunit .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.layoutunit .nav-item:focus,
.layoutunit .nav-link:focus {
  outline: none;
}
.layoutunit .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.layoutunit .navbar .layoutbox img {
  width: auto;
}
.layoutunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .layoutunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .layoutunit .navbar .layoutbox img {
    height: 3rem !important;
  }
  .layoutunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .layoutunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .layoutunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.layoutunit .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.layoutunit .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.layoutunit .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.layoutunit .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.layoutunit .navbar-brand .layoutbox a {
  outline: none;
}
.layoutunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.layoutunit ul.navbar-nav {
  flex-wrap: wrap;
}
.layoutunit .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .layoutunit .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.layoutunit .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.layoutunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.layoutunit .menu-bar {
  padding: 0 1rem;
}
.layoutunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .layoutunit .navbar {
    height: 60px;
  }
  .layoutunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.padunit {
  padding-top: 11rem;
  padding-bottom: 11rem;
  align-items: flex-end;
  background-image: url("images/warm2.jpg");
}
.padunit .card {
  justify-content: flex-end;
}
.padunit .hold .inset {
  margin-bottom: 22px;
}.padunit .hold .block-title,
.padunit .hold .chapter-title,
.padunit .hold .header-text,
.padunit .hold .lead-h2,
.padunit .hold .main-heading,
.padunit .hold .page-h,
.padunit .hold .section-h,
.padunit .hold .section-heading,
.padunit .hold .topic-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {.padunit .hold .block-title,
.padunit .hold .chapter-title,
.padunit .hold .header-text,
.padunit .hold .lead-h2,
.padunit .hold .main-heading,
.padunit .hold .page-h,
.padunit .hold .section-h,
.padunit .hold .section-heading,
.padunit .hold .topic-title {
    margin-bottom: 22px;
  }
}
.padunit .hold .list-wrapper .list {
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
}
@media (max-width: 992px) {
  .padunit .hold .list-wrapper .list {
    margin-bottom: 22px;
  }
}
.padunit .hold .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 20px;
}
.padunit .hold .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  color: inherit;
  display: inline-flex;
}
.padunit .text-wrapper .patch {
  margin-bottom: 22px;
}
.padunit .inset {
  color: #5fb4d9;
}.padunit .block-title,
.padunit .chapter-title,
.padunit .header-text,
.padunit .lead-h2,
.padunit .main-heading,
.padunit .page-h,
.padunit .section-h,
.padunit .section-heading,
.padunit .topic-title {
  color: #9c98cf;
}
.padunit .list {
  color: #ffffff;
}
.padunit .patch {
  color: #ffffff;
}.padunit .patch,
.padunit .block-action,
.padunit .cta-link,
.padunit .lead-btn,
.padunit .main-btn,
.padunit .page-btn,
.padunit .primary-cta,
.padunit .section-action,
.padunit .section-cta {
  color: #000000;
}
.pagebox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.pagebox .layoutgroup {
  justify-content: flex-end;
}
.pagebox .layoutgroup .card {
  justify-content: center;
}
.pagebox .sectionunit {
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .pagebox .sectionunit {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .pagebox .sectionunit {
    padding-right: 0;
    margin-bottom: 32px;
  }
}.pagebox .sectionunit .block-title,
.pagebox .sectionunit .chapter-title,
.pagebox .sectionunit .header-text,
.pagebox .sectionunit .lead-h2,
.pagebox .sectionunit .main-heading,
.pagebox .sectionunit .page-h,
.pagebox .sectionunit .section-h,
.pagebox .sectionunit .section-heading,
.pagebox .sectionunit .topic-title {
  margin-bottom: 24px;
}.pagebox .sectionunit .block-title span,
.pagebox .sectionunit .chapter-title span,
.pagebox .sectionunit .header-text span,
.pagebox .sectionunit .lead-h2 span,
.pagebox .sectionunit .main-heading span,
.pagebox .sectionunit .page-h span,
.pagebox .sectionunit .section-h span,
.pagebox .sectionunit .section-heading span,
.pagebox .sectionunit .topic-title span {
  background: linear-gradient(170deg, #5fb4d9, #88c7e3);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.pagebox .sectionunit .patch {
  margin-bottom: 0;
}.pagebox .sectionunit .block-action,
.pagebox .sectionunit .cta-link,
.pagebox .sectionunit .lead-btn,
.pagebox .sectionunit .main-btn,
.pagebox .sectionunit .page-btn,
.pagebox .sectionunit .primary-cta,
.pagebox .sectionunit .section-action,
.pagebox .sectionunit .section-cta {
  margin-top: 22px;
}
@media (max-width: 992px) {.pagebox .sectionunit .block-action,
.pagebox .sectionunit .cta-link,
.pagebox .sectionunit .lead-btn,
.pagebox .sectionunit .main-btn,
.pagebox .sectionunit .page-btn,
.pagebox .sectionunit .primary-cta,
.pagebox .sectionunit .section-action,
.pagebox .sectionunit .section-cta {
    margin-top: 16px;
  }
}
.pagebox .contentwrap {
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .pagebox .contentwrap {
    display: block;
  }
}
@media (max-width: 992px) {
  .pagebox .contentwrap .item {
    margin-bottom: 16px;
  }
  .pagebox .contentwrap .item:last-child {
    margin-bottom: 0;
  }
}
.pagebox .contentwrap .item .item-wrapper .item-img img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}.pagebox .block-title,
.pagebox .chapter-title,
.pagebox .header-text,
.pagebox .lead-h2,
.pagebox .main-heading,
.pagebox .page-h,
.pagebox .section-h,
.pagebox .section-heading,
.pagebox .topic-title {
  color: #ffffff;
}
.pagebox .patch {
  color: #000000;
}.pagebox .block-title,
.pagebox .chapter-title,
.pagebox .header-text,
.pagebox .lead-h2,
.pagebox .main-heading,
.pagebox .page-h,
.pagebox .section-h,
.pagebox .section-heading,
.pagebox .topic-title,
.pagebox .block-action,
.pagebox .cta-link,
.pagebox .lead-btn,
.pagebox .main-btn,
.pagebox .page-btn,
.pagebox .primary-cta,
.pagebox .section-action,
.pagebox .section-cta {
  color: #9c98cf;
}
.boxsegment {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.boxsegment .row {
  margin: 0 -45px;
}
.boxsegment .row .card {
  padding: 0 45px;
  justify-content: center;
}
.boxsegment .contentwrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 66px;
}
@media (max-width: 1440px) {
  .boxsegment .contentwrap {
    padding-left: 0;
  }
}
.boxsegment .contentwrap img {
  width: 500px;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .boxsegment .contentwrap img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 992px) {
  .boxsegment .contentwrap img {
    height: 350px;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .boxsegment .contentwrap img {
    height: 300px;
  }
}
.boxsegment .sectionunit {
  padding-left: 66px;
  padding-left: 0;
}
@media (max-width: 1440px) {
  .boxsegment .sectionunit {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .boxsegment .sectionunit {
    margin-bottom: 32px;
  }
}
.boxsegment .sectionunit .gridunitbox .inset {
  display: inline-flex;
  padding: 6px 20px;
  border: 1px solid #3a001d;
  background-color: #f7efdf;
  margin-bottom: 22px;
}.boxsegment .sectionunit .hold .block-title,
.boxsegment .sectionunit .hold .chapter-title,
.boxsegment .sectionunit .hold .header-text,
.boxsegment .sectionunit .hold .lead-h2,
.boxsegment .sectionunit .hold .main-heading,
.boxsegment .sectionunit .hold .page-h,
.boxsegment .sectionunit .hold .section-h,
.boxsegment .sectionunit .hold .section-heading,
.boxsegment .sectionunit .hold .topic-title {
  margin-bottom: 22px;
}
.boxsegment .sectionunit .text-wrapper .patch {
  margin-bottom: 12px;
}.boxsegment .sectionunit .block-action .btn,
.boxsegment .sectionunit .cta-link .btn,
.boxsegment .sectionunit .lead-btn .btn,
.boxsegment .sectionunit .main-btn .btn,
.boxsegment .sectionunit .page-btn .btn,
.boxsegment .sectionunit .primary-cta .btn,
.boxsegment .sectionunit .section-action .btn,
.boxsegment .sectionunit .section-cta .btn {
  margin-bottom: 0;
}
.boxsegment .inset {
  color: #3a001d;
}.boxsegment .block-title,
.boxsegment .chapter-title,
.boxsegment .header-text,
.boxsegment .lead-h2,
.boxsegment .main-heading,
.boxsegment .page-h,
.boxsegment .section-h,
.boxsegment .section-heading,
.boxsegment .topic-title {
  color: #3a001d;
}
.boxsegment .patch {
  color: #3a001d;
}.boxsegment .block-title,
.boxsegment .chapter-title,
.boxsegment .header-text,
.boxsegment .lead-h2,
.boxsegment .main-heading,
.boxsegment .page-h,
.boxsegment .section-h,
.boxsegment .section-heading,
.boxsegment .topic-title,
.boxsegment .block-action,
.boxsegment .cta-link,
.boxsegment .lead-btn,
.boxsegment .main-btn,
.boxsegment .page-btn,
.boxsegment .primary-cta,
.boxsegment .section-action,
.boxsegment .section-cta {
  color: #9c98cf;
}
.boxsegment .patch,
.boxsegment .text-wrapper {
  color: #000000;
}
.cellwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}.cellwrap .sectionunit .block-title,
.cellwrap .sectionunit .chapter-title,
.cellwrap .sectionunit .header-text,
.cellwrap .sectionunit .lead-h2,
.cellwrap .sectionunit .main-heading,
.cellwrap .sectionunit .page-h,
.cellwrap .sectionunit .section-h,
.cellwrap .sectionunit .section-heading,
.cellwrap .sectionunit .topic-title {
  margin-bottom: 32px;
}.cellwrap .sectionunit .block-title span,
.cellwrap .sectionunit .chapter-title span,
.cellwrap .sectionunit .header-text span,
.cellwrap .sectionunit .lead-h2 span,
.cellwrap .sectionunit .main-heading span,
.cellwrap .sectionunit .page-h span,
.cellwrap .sectionunit .section-h span,
.cellwrap .sectionunit .section-heading span,
.cellwrap .sectionunit .topic-title span {
  color: #5fb4d9;
}
.cellwrap .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cellwrap .sectionunit .text-wrapper .patch {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cellwrap .sectioncore {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #f7f7f7, #87ceeb, #f7f7f7);
}
@media (max-width: 992px) {
  .cellwrap .sectioncore {
    margin-top: 32px;
  }
}.cellwrap .block-title,
.cellwrap .chapter-title,
.cellwrap .header-text,
.cellwrap .lead-h2,
.cellwrap .main-heading,
.cellwrap .page-h,
.cellwrap .section-h,
.cellwrap .section-heading,
.cellwrap .topic-title {
  color: #ffffff;
}
.cellwrap .patch,
.cellwrap .text-wrapper {
  color: #000000;
  text-align: center;
}.cellwrap .block-title,
.cellwrap .chapter-title,
.cellwrap .header-text,
.cellwrap .lead-h2,
.cellwrap .main-heading,
.cellwrap .page-h,
.cellwrap .section-h,
.cellwrap .section-heading,
.cellwrap .topic-title,
.cellwrap .block-action,
.cellwrap .cta-link,
.cellwrap .lead-btn,
.cellwrap .main-btn,
.cellwrap .page-btn,
.cellwrap .primary-cta,
.cellwrap .section-action,
.cellwrap .section-cta {
  text-align: center;
  color: #9c98cf;
}
.framegrid {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.framegrid .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .framegrid .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.framegrid .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.framegrid .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.framegrid .row {
  justify-content: center;
}
.framegrid .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.framegrid .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.framegrid .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .sectionunit {
    margin-bottom: 30px;
  }
}.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.framegrid .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .framegrid .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.framegrid .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.framegrid .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.framegrid .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  color: #f1f5eb;
}
.framegrid .patch,
.framegrid .text-wrapper {
  color: #000000;
  text-align: center;
}.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta,
.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  text-align: center;
}
.framegrid .colpad {
  color: #f1f5eb;
  text-align: center;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title,
.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta {
  color: #9c98cf;
}
.framegrid .colpad,
.framegrid .copy-wrapper {
  color: #ffffff;
}
.layoutunit .menu-bar {
  position: relative !important;
}
.layoutunit .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .layoutunit .container {
    flex-wrap: nowrap;
  }
}
.layoutunit .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.layoutunit .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.layoutunit .nav-link {
  position: relative;
}
.layoutunit .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.layoutunit .nav-item:focus,
.layoutunit .nav-link:focus {
  outline: none;
}
.layoutunit .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.layoutunit .navbar .layoutbox img {
  width: auto;
}
.layoutunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .layoutunit .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .layoutunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .layoutunit .navbar .layoutbox img {
    height: 3rem !important;
  }
  .layoutunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .layoutunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .layoutunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.layoutunit .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .layoutunit .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.layoutunit .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.layoutunit .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.layoutunit .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.layoutunit .navbar-brand .layoutbox a {
  outline: none;
}
.layoutunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.layoutunit ul.navbar-nav {
  flex-wrap: wrap;
}
.layoutunit .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .layoutunit .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.layoutunit .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.layoutunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.layoutunit .menu-bar {
  padding: 0 1rem;
}
.layoutunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .layoutunit .navbar {
    height: 60px;
  }
  .layoutunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .layoutunit .navbar {
    min-height: 105px;
  }
}
.stagewrap {
  padding-top: 3rem;
  background-color: #f7f7f7;
}
.stagewrap .sectionunit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 3rem;
}
.stagewrap .sectionunit .gridunitbox {
  margin-bottom: 20px;
}
.stagewrap .sectionunit .gridunitbox .fieldcore {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  background-image: linear-gradient(135deg, #9c98cf 38%, #87ceeb 75%);
  box-shadow: 0 10px 10px -5px #9c98cf;
  padding: 0 1px 1px 0;
}
.stagewrap .sectionunit .gridunitbox .fieldcore::before {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -17px;
  width: 164px;
  height: 50px;
  pointer-events: none;
  filter: blur(10px);
  background-image: radial-gradient(50% 50%, #87ceeb 0%, transparent 100%);
  z-index: -1;
}
.stagewrap .sectionunit .gridunitbox .fieldcore .domcore {
  position: relative;
  z-index: 1;
  padding: 7px 18px;
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff;
}
.stagewrap .sectionunit .gridunitbox .fieldcore .domcore .blockrow {
  display: inline-flex;
}
.stagewrap .sectionunit .gridunitbox .fieldcore .domcore .blockrow .identity-iconfont {
  font-size: 18px;
  display: inline-flex;
  margin-right: 8px;
}
.stagewrap .sectionunit .gridunitbox .fieldcore .domcore .inset {
  margin-bottom: 0;
}.stagewrap .sectionunit .hold .block-title,
.stagewrap .sectionunit .hold .chapter-title,
.stagewrap .sectionunit .hold .header-text,
.stagewrap .sectionunit .hold .lead-h2,
.stagewrap .sectionunit .hold .main-heading,
.stagewrap .sectionunit .hold .page-h,
.stagewrap .sectionunit .hold .section-h,
.stagewrap .sectionunit .hold .section-heading,
.stagewrap .sectionunit .hold .topic-title {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #9c98cf 40%, #87ceeb 90%);
  margin-bottom: 20px;
}
.stagewrap .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .stagewrap .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.stagewrap .sectionunit .block-action,
.stagewrap .sectionunit .cta-link,
.stagewrap .sectionunit .lead-btn,
.stagewrap .sectionunit .main-btn,
.stagewrap .sectionunit .page-btn,
.stagewrap .sectionunit .primary-cta,
.stagewrap .sectionunit .section-action,
.stagewrap .sectionunit .section-cta {
  margin-top: 40px;
}
@media (max-width: 992px) {.stagewrap .sectionunit .block-action,
.stagewrap .sectionunit .cta-link,
.stagewrap .sectionunit .lead-btn,
.stagewrap .sectionunit .main-btn,
.stagewrap .sectionunit .page-btn,
.stagewrap .sectionunit .primary-cta,
.stagewrap .sectionunit .section-action,
.stagewrap .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.stagewrap .sectionunit .contentwrap {
  margin-top: 70px;
  -webkit-mask-image: linear-gradient(#000000 80%, transparent 95%);
  mask-image: linear-gradient(#000000 80%, transparent 95%);
}
@media (max-width: 992px) {
  .stagewrap .sectionunit .contentwrap {
    margin-top: 40px;
  }
}
.stagewrap .sectionunit .contentwrap img {
  height: 690px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .stagewrap .sectionunit .contentwrap img {
    height: 320px;
  }
}
.stagewrap .inset,
.stagewrap .gridunitbox {
  color: #000000;
  text-align: center;
}.stagewrap .block-title,
.stagewrap .chapter-title,
.stagewrap .header-text,
.stagewrap .lead-h2,
.stagewrap .main-heading,
.stagewrap .page-h,
.stagewrap .section-h,
.stagewrap .section-heading,
.stagewrap .topic-title {
  color: #0f172a;
}
.stagewrap .patch,
.stagewrap .text-wrapper {
  color: #000000;
  text-align: center;
}.stagewrap .block-title,
.stagewrap .chapter-title,
.stagewrap .header-text,
.stagewrap .lead-h2,
.stagewrap .main-heading,
.stagewrap .page-h,
.stagewrap .section-h,
.stagewrap .section-heading,
.stagewrap .topic-title,
.stagewrap .block-action,
.stagewrap .cta-link,
.stagewrap .lead-btn,
.stagewrap .main-btn,
.stagewrap .page-btn,
.stagewrap .primary-cta,
.stagewrap .section-action,
.stagewrap .section-cta,
.stagewrap .hold {
  text-align: center;
}
.layoutcell {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.layoutcell .card-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 32px;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .layoutcell .card-wrapper {
    display: block;
    padding: 18px;
  }
}
.layoutcell .card-wrapper .noteunit {
  position: absolute;
  left: -150px;
  bottom: -400px;
  width: 500px;
  height: 500px;
  background-image: linear-gradient(-90deg, #9c98cf, #87ceeb 70%);
  border-radius: 100%;
  filter: blur(6rem);
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .layoutcell .card-wrapper .noteunit {
    width: 400px;
    height: 400px;
  }
}
.layoutcell .card-wrapper .card {
  justify-content: center;
}
.layoutcell .card-wrapper .sectionunit {
  position: relative;
  z-index: 1;
  width: 49%;
  padding: 0 32px;
}
@media (max-width: 992px) {
  .layoutcell .card-wrapper .sectionunit {
    padding: 0;
    width: 100%;
    margin-bottom: 22px;
  }
}
.layoutcell .card-wrapper .sectionunit .gridunitbox {
  margin-bottom: 22px;
}
.layoutcell .card-wrapper .sectionunit .gridunitbox .inset {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #d3f2ff, #5fb4d9 50%, #d3f2ff);
}.layoutcell .card-wrapper .sectionunit .block-title,
.layoutcell .card-wrapper .sectionunit .chapter-title,
.layoutcell .card-wrapper .sectionunit .header-text,
.layoutcell .card-wrapper .sectionunit .lead-h2,
.layoutcell .card-wrapper .sectionunit .main-heading,
.layoutcell .card-wrapper .sectionunit .page-h,
.layoutcell .card-wrapper .sectionunit .section-h,
.layoutcell .card-wrapper .sectionunit .section-heading,
.layoutcell .card-wrapper .sectionunit .topic-title {
  margin-bottom: 22px;
}
.layoutcell .card-wrapper .sectionunit .patch {
  margin-bottom: 0;
}.layoutcell .card-wrapper .sectionunit .block-action,
.layoutcell .card-wrapper .sectionunit .cta-link,
.layoutcell .card-wrapper .sectionunit .lead-btn,
.layoutcell .card-wrapper .sectionunit .main-btn,
.layoutcell .card-wrapper .sectionunit .page-btn,
.layoutcell .card-wrapper .sectionunit .primary-cta,
.layoutcell .card-wrapper .sectionunit .section-action,
.layoutcell .card-wrapper .sectionunit .section-cta {
  margin-top: 48px;
}
@media (max-width: 992px) {.layoutcell .card-wrapper .sectionunit .block-action,
.layoutcell .card-wrapper .sectionunit .cta-link,
.layoutcell .card-wrapper .sectionunit .lead-btn,
.layoutcell .card-wrapper .sectionunit .main-btn,
.layoutcell .card-wrapper .sectionunit .page-btn,
.layoutcell .card-wrapper .sectionunit .primary-cta,
.layoutcell .card-wrapper .sectionunit .section-action,
.layoutcell .card-wrapper .sectionunit .section-cta {
    margin-top: 22px;
  }
}.layoutcell .card-wrapper .sectionunit .block-action .btn,
.layoutcell .card-wrapper .sectionunit .cta-link .btn,
.layoutcell .card-wrapper .sectionunit .lead-btn .btn,
.layoutcell .card-wrapper .sectionunit .main-btn .btn,
.layoutcell .card-wrapper .sectionunit .page-btn .btn,
.layoutcell .card-wrapper .sectionunit .primary-cta .btn,
.layoutcell .card-wrapper .sectionunit .section-action .btn,
.layoutcell .card-wrapper .sectionunit .section-cta .btn {
  margin-bottom: 0;
}
.layoutcell .card-wrapper .contentwrap {
  position: relative;
  z-index: 1;
  width: 48%;
}
@media (max-width: 992px) {
  .layoutcell .card-wrapper .contentwrap {
    width: 100%;
  }
}
.layoutcell .card-wrapper .contentwrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .layoutcell .card-wrapper .contentwrap img {
    height: 300px;
  }
}
.layoutcell .inset,
.layoutcell .gridunitbox {
  color: #1a0b54;
  text-align: center;
}.layoutcell .block-title,
.layoutcell .chapter-title,
.layoutcell .header-text,
.layoutcell .lead-h2,
.layoutcell .main-heading,
.layoutcell .page-h,
.layoutcell .section-h,
.layoutcell .section-heading,
.layoutcell .topic-title {
  color: #1a0b54;
}
.layoutcell .patch {
  color: #000000;
}.layoutcell .block-title,
.layoutcell .chapter-title,
.layoutcell .header-text,
.layoutcell .lead-h2,
.layoutcell .main-heading,
.layoutcell .page-h,
.layoutcell .section-h,
.layoutcell .section-heading,
.layoutcell .topic-title,
.layoutcell .block-action,
.layoutcell .cta-link,
.layoutcell .lead-btn,
.layoutcell .main-btn,
.layoutcell .page-btn,
.layoutcell .primary-cta,
.layoutcell .section-action,
.layoutcell .section-cta {
  color: #9c98cf;
}
.area {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}.area .sectionunit .contentgrid .block-title,
.area .sectionunit .contentgrid .chapter-title,
.area .sectionunit .contentgrid .header-text,
.area .sectionunit .contentgrid .lead-h2,
.area .sectionunit .contentgrid .main-heading,
.area .sectionunit .contentgrid .page-h,
.area .sectionunit .contentgrid .section-h,
.area .sectionunit .contentgrid .section-heading,
.area .sectionunit .contentgrid .topic-title {
  margin-bottom: 32px;
}
.area .sectionunit .contentgrid .text-wrapper .patch {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .area .sectionunit .contentgrid .text-wrapper .patch {
    width: 100%;
  }
}.area .sectionunit .contentgrid .block-action,
.area .sectionunit .contentgrid .cta-link,
.area .sectionunit .contentgrid .lead-btn,
.area .sectionunit .contentgrid .main-btn,
.area .sectionunit .contentgrid .page-btn,
.area .sectionunit .contentgrid .primary-cta,
.area .sectionunit .contentgrid .section-action,
.area .sectionunit .contentgrid .section-cta {
  margin-top: 24px;
}.area .block-title,
.area .chapter-title,
.area .header-text,
.area .lead-h2,
.area .main-heading,
.area .page-h,
.area .section-h,
.area .section-heading,
.area .topic-title {
  color: #0a0a0a;
}
.area .patch {
  color: #0a0a0a;
}
.area .patch,
.area .text-wrapper {
  color: #000000;
  text-align: center;
}.area .block-title,
.area .chapter-title,
.area .header-text,
.area .lead-h2,
.area .main-heading,
.area .page-h,
.area .section-h,
.area .section-heading,
.area .topic-title,
.area .block-action,
.area .cta-link,
.area .lead-btn,
.area .main-btn,
.area .page-btn,
.area .primary-cta,
.area .section-action,
.area .section-cta {
  color: #9c98cf;
  text-align: center;
}
.spanunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}.spanunit .hold .block-title,
.spanunit .hold .chapter-title,
.spanunit .hold .header-text,
.spanunit .hold .lead-h2,
.spanunit .hold .main-heading,
.spanunit .hold .page-h,
.spanunit .hold .section-h,
.spanunit .hold .section-heading,
.spanunit .hold .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {.spanunit .hold .block-title,
.spanunit .hold .chapter-title,
.spanunit .hold .header-text,
.spanunit .hold .lead-h2,
.spanunit .hold .main-heading,
.spanunit .hold .page-h,
.spanunit .hold .section-h,
.spanunit .hold .section-heading,
.spanunit .hold .topic-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.spanunit .layoutgroup {
  margin: 0 -13px;
}
.spanunit .layoutgroup .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .spanunit .layoutgroup .item {
    margin-bottom: 16px;
  }
}
.spanunit .layoutgroup .item:hover .item-wrapper .item-img img,
.spanunit .layoutgroup .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.spanunit .layoutgroup .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .spanunit .layoutgroup .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.spanunit .layoutgroup .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.spanunit .layoutgroup .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}.spanunit .layoutgroup .item .item-wrapper .card-box .block-action .btn,
.spanunit .layoutgroup .item .item-wrapper .card-box .cta-link .btn,
.spanunit .layoutgroup .item .item-wrapper .card-box .lead-btn .btn,
.spanunit .layoutgroup .item .item-wrapper .card-box .main-btn .btn,
.spanunit .layoutgroup .item .item-wrapper .card-box .page-btn .btn,
.spanunit .layoutgroup .item .item-wrapper .card-box .primary-cta .btn,
.spanunit .layoutgroup .item .item-wrapper .card-box .section-action .btn,
.spanunit .layoutgroup .item .item-wrapper .card-box .section-cta .btn {
  margin-bottom: 0;
}
.spanunit .layoutgroup .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .spanunit .layoutgroup .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.spanunit .layoutgroup .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.spanunit .layoutgroup .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #9c98cf, #d3f2ff 85%);
}
.spanunit .layoutgroup .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #ffffff, #d3f2ff 85%);
}
.spanunit .layoutgroup .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #87ceeb, #d3f2ff 85%);
}.spanunit .block-title,
.spanunit .chapter-title,
.spanunit .header-text,
.spanunit .lead-h2,
.spanunit .main-heading,
.spanunit .page-h,
.spanunit .section-h,
.spanunit .section-heading,
.spanunit .topic-title,
.spanunit .hold {
  color: #9c98cf;
  text-align: center;
}
.spanunit .item-title {
  color: #ffffff;
}
.spanunit .item-text {
  color: #000000;
}.spanunit .item-title,
.spanunit .block-action,
.spanunit .cta-link,
.spanunit .lead-btn,
.spanunit .main-btn,
.spanunit .page-btn,
.spanunit .primary-cta,
.spanunit .section-action,
.spanunit .section-cta {
  color: #9c98cf;
  text-align: center;
}
.framegrid {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.framegrid .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .framegrid .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.framegrid .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.framegrid .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.framegrid .row {
  justify-content: center;
}
.framegrid .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.framegrid .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.framegrid .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .framegrid .sectionunit {
    margin-bottom: 30px;
  }
}.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-title,
.framegrid .sectionunit .chapter-title,
.framegrid .sectionunit .header-text,
.framegrid .sectionunit .lead-h2,
.framegrid .sectionunit .main-heading,
.framegrid .sectionunit .page-h,
.framegrid .sectionunit .section-h,
.framegrid .sectionunit .section-heading,
.framegrid .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.framegrid .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .framegrid .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.framegrid .sectionunit .block-action,
.framegrid .sectionunit .cta-link,
.framegrid .sectionunit .lead-btn,
.framegrid .sectionunit .main-btn,
.framegrid .sectionunit .page-btn,
.framegrid .sectionunit .primary-cta,
.framegrid .sectionunit .section-action,
.framegrid .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.framegrid .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.framegrid .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.framegrid .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  color: #f1f5eb;
}
.framegrid .patch,
.framegrid .text-wrapper {
  color: #000000;
  text-align: center;
}.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta,
.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title {
  text-align: center;
}
.framegrid .colpad {
  color: #f1f5eb;
  text-align: center;
}.framegrid .block-title,
.framegrid .chapter-title,
.framegrid .header-text,
.framegrid .lead-h2,
.framegrid .main-heading,
.framegrid .page-h,
.framegrid .section-h,
.framegrid .section-heading,
.framegrid .topic-title,
.framegrid .block-action,
.framegrid .cta-link,
.framegrid .lead-btn,
.framegrid .main-btn,
.framegrid .page-btn,
.framegrid .primary-cta,
.framegrid .section-action,
.framegrid .section-cta {
  color: #9c98cf;
}
.framegrid .colpad,
.framegrid .copy-wrapper {
  color: #ffffff;
}
.gridnode .menu-bar {
  position: relative !important;
}
.gridnode .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .gridnode .container {
    flex-wrap: nowrap;
  }
}
.gridnode .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.gridnode .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.gridnode .nav-link {
  position: relative;
}
.gridnode .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.gridnode .nav-item:focus,
.gridnode .nav-link:focus {
  outline: none;
}
.gridnode .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .gridnode .navbar {
    min-height: 105px;
  }
}
.gridnode .navbar .layoutbox img {
  width: auto;
}
.gridnode .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .gridnode .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .gridnode .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .gridnode .navbar .nav-item .nav-link::before {
    display: none;
  }
  .gridnode .navbar .layoutbox img {
    height: 3rem !important;
  }
  .gridnode .navbar ul.navbar-nav li {
    margin: auto;
  }
  .gridnode .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .gridnode .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.gridnode .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .gridnode .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.gridnode .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.gridnode .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.gridnode .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.gridnode .navbar-brand .layoutbox a {
  outline: none;
}
.gridnode .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.gridnode ul.navbar-nav {
  flex-wrap: wrap;
}
.gridnode .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .gridnode .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.gridnode .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.gridnode button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.gridnode .menu-bar {
  padding: 0 1rem;
}
.gridnode a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .gridnode .navbar {
    height: 60px;
  }
  .gridnode .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .gridnode .navbar {
    min-height: 105px;
  }
}
.boxwrap {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.boxwrap .sectionunit {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .boxwrap .sectionunit {
    padding: 30px 20px;
  }
}
.boxwrap .sectionunit .maparea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.boxwrap .sectionunit .maparea img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.boxwrap .sectionunit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #9c98cf 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.boxwrap .sectionunit .contentgrid {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .boxwrap .sectionunit .contentgrid {
    width: 100%;
  }
}
.boxwrap .sectionunit .contentgrid .desc-wrapper .plate {
  display: inline-block;
  background-color: #d3f2ff;
  padding: 8px 16px;
  margin-bottom: 32px;
}.boxwrap .sectionunit .contentgrid .block-title,
.boxwrap .sectionunit .contentgrid .chapter-title,
.boxwrap .sectionunit .contentgrid .header-text,
.boxwrap .sectionunit .contentgrid .lead-h2,
.boxwrap .sectionunit .contentgrid .main-heading,
.boxwrap .sectionunit .contentgrid .page-h,
.boxwrap .sectionunit .contentgrid .section-h,
.boxwrap .sectionunit .contentgrid .section-heading,
.boxwrap .sectionunit .contentgrid .topic-title {
  margin-bottom: 32px;
}
.boxwrap .sectionunit .contentgrid .patch {
  margin-bottom: 0;
}.boxwrap .sectionunit .contentgrid .block-action,
.boxwrap .sectionunit .contentgrid .cta-link,
.boxwrap .sectionunit .contentgrid .lead-btn,
.boxwrap .sectionunit .contentgrid .main-btn,
.boxwrap .sectionunit .contentgrid .page-btn,
.boxwrap .sectionunit .contentgrid .primary-cta,
.boxwrap .sectionunit .contentgrid .section-action,
.boxwrap .sectionunit .contentgrid .section-cta {
  margin-top: 64px;
}.boxwrap .sectionunit .contentgrid .block-action .btn,
.boxwrap .sectionunit .contentgrid .cta-link .btn,
.boxwrap .sectionunit .contentgrid .lead-btn .btn,
.boxwrap .sectionunit .contentgrid .main-btn .btn,
.boxwrap .sectionunit .contentgrid .page-btn .btn,
.boxwrap .sectionunit .contentgrid .primary-cta .btn,
.boxwrap .sectionunit .contentgrid .section-action .btn,
.boxwrap .sectionunit .contentgrid .section-cta .btn {
  margin-bottom: 0;
}.boxwrap .block-title,
.boxwrap .chapter-title,
.boxwrap .header-text,
.boxwrap .lead-h2,
.boxwrap .main-heading,
.boxwrap .page-h,
.boxwrap .section-h,
.boxwrap .section-heading,
.boxwrap .topic-title {
  color: #404349;
}
.boxwrap .patch {
  color: #ffffff;
}
.boxwrap .plate {
  color: #b19a7c;
}.boxwrap .block-title,
.boxwrap .chapter-title,
.boxwrap .header-text,
.boxwrap .lead-h2,
.boxwrap .main-heading,
.boxwrap .page-h,
.boxwrap .section-h,
.boxwrap .section-heading,
.boxwrap .topic-title,
.boxwrap .block-action,
.boxwrap .cta-link,
.boxwrap .lead-btn,
.boxwrap .main-btn,
.boxwrap .page-btn,
.boxwrap .primary-cta,
.boxwrap .section-action,
.boxwrap .section-cta {
  color: #ffffff;
}
.headwrap {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.headwrap .sectionunit .patch {
  margin-bottom: 22px;
}
.headwrap .patch {
  color: #000000;
}.headwrap .block-action,
.headwrap .cta-link,
.headwrap .lead-btn,
.headwrap .main-btn,
.headwrap .page-btn,
.headwrap .primary-cta,
.headwrap .section-action,
.headwrap .section-cta {
  text-align: center;
}
.slot {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.slot .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .slot .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.slot .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.slot .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.slot .row {
  justify-content: center;
}
.slot .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .slot .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.slot .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.slot .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .slot .sectionunit {
    margin-bottom: 30px;
  }
}.slot .sectionunit .block-title,
.slot .sectionunit .chapter-title,
.slot .sectionunit .header-text,
.slot .sectionunit .lead-h2,
.slot .sectionunit .main-heading,
.slot .sectionunit .page-h,
.slot .sectionunit .section-h,
.slot .sectionunit .section-heading,
.slot .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.slot .sectionunit .block-title,
.slot .sectionunit .chapter-title,
.slot .sectionunit .header-text,
.slot .sectionunit .lead-h2,
.slot .sectionunit .main-heading,
.slot .sectionunit .page-h,
.slot .sectionunit .section-h,
.slot .sectionunit .section-heading,
.slot .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.slot .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .slot .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.slot .sectionunit .block-action,
.slot .sectionunit .cta-link,
.slot .sectionunit .lead-btn,
.slot .sectionunit .main-btn,
.slot .sectionunit .page-btn,
.slot .sectionunit .primary-cta,
.slot .sectionunit .section-action,
.slot .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.slot .sectionunit .block-action,
.slot .sectionunit .cta-link,
.slot .sectionunit .lead-btn,
.slot .sectionunit .main-btn,
.slot .sectionunit .page-btn,
.slot .sectionunit .primary-cta,
.slot .sectionunit .section-action,
.slot .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.slot .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.slot .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.slot .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.slot .block-title,
.slot .chapter-title,
.slot .header-text,
.slot .lead-h2,
.slot .main-heading,
.slot .page-h,
.slot .section-h,
.slot .section-heading,
.slot .topic-title {
  color: #f1f5eb;
}
.slot .patch,
.slot .text-wrapper {
  color: #000000;
  text-align: center;
}.slot .block-action,
.slot .cta-link,
.slot .lead-btn,
.slot .main-btn,
.slot .page-btn,
.slot .primary-cta,
.slot .section-action,
.slot .section-cta,
.slot .block-title,
.slot .chapter-title,
.slot .header-text,
.slot .lead-h2,
.slot .main-heading,
.slot .page-h,
.slot .section-h,
.slot .section-heading,
.slot .topic-title {
  text-align: center;
}
.slot .colpad {
  color: #f1f5eb;
  text-align: center;
}.slot .block-title,
.slot .chapter-title,
.slot .header-text,
.slot .lead-h2,
.slot .main-heading,
.slot .page-h,
.slot .section-h,
.slot .section-heading,
.slot .topic-title,
.slot .block-action,
.slot .cta-link,
.slot .lead-btn,
.slot .main-btn,
.slot .page-btn,
.slot .primary-cta,
.slot .section-action,
.slot .section-cta {
  color: #9c98cf;
}
.slot .colpad,
.slot .copy-wrapper {
  color: #ffffff;
}
.shell .menu-bar {
  position: relative !important;
}
.shell .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .shell .container {
    flex-wrap: nowrap;
  }
}
.shell .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.shell .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.shell .nav-link {
  position: relative;
}
.shell .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.shell .nav-item:focus,
.shell .nav-link:focus {
  outline: none;
}
.shell .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .shell .navbar {
    min-height: 105px;
  }
}
.shell .navbar .layoutbox img {
  width: auto;
}
.shell .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .shell .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .shell .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .shell .navbar .nav-item .nav-link::before {
    display: none;
  }
  .shell .navbar .layoutbox img {
    height: 3rem !important;
  }
  .shell .navbar ul.navbar-nav li {
    margin: auto;
  }
  .shell .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .shell .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.shell .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .shell .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.shell .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.shell .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.shell .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.shell .navbar-brand .layoutbox a {
  outline: none;
}
.shell .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.shell ul.navbar-nav {
  flex-wrap: wrap;
}
.shell .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .shell .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.shell .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.shell button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.shell .menu-bar {
  padding: 0 1rem;
}
.shell a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .shell .navbar {
    height: 60px;
  }
  .shell .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .shell .navbar {
    min-height: 105px;
  }
}
.panebox {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.panebox .sectionunit {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .panebox .sectionunit {
    padding: 30px 20px;
  }
}
.panebox .sectionunit .maparea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.panebox .sectionunit .maparea img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panebox .sectionunit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #9c98cf 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.panebox .sectionunit .contentgrid {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .panebox .sectionunit .contentgrid {
    width: 100%;
  }
}
.panebox .sectionunit .contentgrid .desc-wrapper .plate {
  display: inline-block;
  background-color: #d3f2ff;
  padding: 8px 16px;
  margin-bottom: 32px;
}.panebox .sectionunit .contentgrid .block-title,
.panebox .sectionunit .contentgrid .chapter-title,
.panebox .sectionunit .contentgrid .header-text,
.panebox .sectionunit .contentgrid .lead-h2,
.panebox .sectionunit .contentgrid .main-heading,
.panebox .sectionunit .contentgrid .page-h,
.panebox .sectionunit .contentgrid .section-h,
.panebox .sectionunit .contentgrid .section-heading,
.panebox .sectionunit .contentgrid .topic-title {
  margin-bottom: 32px;
}
.panebox .sectionunit .contentgrid .patch {
  margin-bottom: 0;
}.panebox .sectionunit .contentgrid .block-action,
.panebox .sectionunit .contentgrid .cta-link,
.panebox .sectionunit .contentgrid .lead-btn,
.panebox .sectionunit .contentgrid .main-btn,
.panebox .sectionunit .contentgrid .page-btn,
.panebox .sectionunit .contentgrid .primary-cta,
.panebox .sectionunit .contentgrid .section-action,
.panebox .sectionunit .contentgrid .section-cta {
  margin-top: 64px;
}.panebox .sectionunit .contentgrid .block-action .btn,
.panebox .sectionunit .contentgrid .cta-link .btn,
.panebox .sectionunit .contentgrid .lead-btn .btn,
.panebox .sectionunit .contentgrid .main-btn .btn,
.panebox .sectionunit .contentgrid .page-btn .btn,
.panebox .sectionunit .contentgrid .primary-cta .btn,
.panebox .sectionunit .contentgrid .section-action .btn,
.panebox .sectionunit .contentgrid .section-cta .btn {
  margin-bottom: 0;
}.panebox .block-title,
.panebox .chapter-title,
.panebox .header-text,
.panebox .lead-h2,
.panebox .main-heading,
.panebox .page-h,
.panebox .section-h,
.panebox .section-heading,
.panebox .topic-title {
  color: #404349;
}
.panebox .patch {
  color: #ffffff;
}
.panebox .plate {
  color: #b19a7c;
}.panebox .block-title,
.panebox .chapter-title,
.panebox .header-text,
.panebox .lead-h2,
.panebox .main-heading,
.panebox .page-h,
.panebox .section-h,
.panebox .section-heading,
.panebox .topic-title,
.panebox .block-action,
.panebox .cta-link,
.panebox .lead-btn,
.panebox .main-btn,
.panebox .page-btn,
.panebox .primary-cta,
.panebox .section-action,
.panebox .section-cta {
  color: #ffffff;
}
.pane {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.pane .sectionunit .patch {
  margin-bottom: 22px;
}
.pane .patch {
  color: #000000;
}.pane .block-action,
.pane .cta-link,
.pane .lead-btn,
.pane .main-btn,
.pane .page-btn,
.pane .primary-cta,
.pane .section-action,
.pane .section-cta {
  text-align: center;
}
.flexlayer {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.flexlayer .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .flexlayer .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.flexlayer .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.flexlayer .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.flexlayer .row {
  justify-content: center;
}
.flexlayer .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .flexlayer .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.flexlayer .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.flexlayer .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .flexlayer .sectionunit {
    margin-bottom: 30px;
  }
}.flexlayer .sectionunit .block-title,
.flexlayer .sectionunit .chapter-title,
.flexlayer .sectionunit .header-text,
.flexlayer .sectionunit .lead-h2,
.flexlayer .sectionunit .main-heading,
.flexlayer .sectionunit .page-h,
.flexlayer .sectionunit .section-h,
.flexlayer .sectionunit .section-heading,
.flexlayer .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.flexlayer .sectionunit .block-title,
.flexlayer .sectionunit .chapter-title,
.flexlayer .sectionunit .header-text,
.flexlayer .sectionunit .lead-h2,
.flexlayer .sectionunit .main-heading,
.flexlayer .sectionunit .page-h,
.flexlayer .sectionunit .section-h,
.flexlayer .sectionunit .section-heading,
.flexlayer .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.flexlayer .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .flexlayer .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.flexlayer .sectionunit .block-action,
.flexlayer .sectionunit .cta-link,
.flexlayer .sectionunit .lead-btn,
.flexlayer .sectionunit .main-btn,
.flexlayer .sectionunit .page-btn,
.flexlayer .sectionunit .primary-cta,
.flexlayer .sectionunit .section-action,
.flexlayer .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.flexlayer .sectionunit .block-action,
.flexlayer .sectionunit .cta-link,
.flexlayer .sectionunit .lead-btn,
.flexlayer .sectionunit .main-btn,
.flexlayer .sectionunit .page-btn,
.flexlayer .sectionunit .primary-cta,
.flexlayer .sectionunit .section-action,
.flexlayer .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.flexlayer .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.flexlayer .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.flexlayer .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.flexlayer .block-title,
.flexlayer .chapter-title,
.flexlayer .header-text,
.flexlayer .lead-h2,
.flexlayer .main-heading,
.flexlayer .page-h,
.flexlayer .section-h,
.flexlayer .section-heading,
.flexlayer .topic-title {
  color: #f1f5eb;
}
.flexlayer .patch,
.flexlayer .text-wrapper {
  color: #000000;
  text-align: center;
}.flexlayer .block-action,
.flexlayer .cta-link,
.flexlayer .lead-btn,
.flexlayer .main-btn,
.flexlayer .page-btn,
.flexlayer .primary-cta,
.flexlayer .section-action,
.flexlayer .section-cta,
.flexlayer .block-title,
.flexlayer .chapter-title,
.flexlayer .header-text,
.flexlayer .lead-h2,
.flexlayer .main-heading,
.flexlayer .page-h,
.flexlayer .section-h,
.flexlayer .section-heading,
.flexlayer .topic-title {
  text-align: center;
}
.flexlayer .colpad {
  color: #f1f5eb;
  text-align: center;
}.flexlayer .block-title,
.flexlayer .chapter-title,
.flexlayer .header-text,
.flexlayer .lead-h2,
.flexlayer .main-heading,
.flexlayer .page-h,
.flexlayer .section-h,
.flexlayer .section-heading,
.flexlayer .topic-title,
.flexlayer .block-action,
.flexlayer .cta-link,
.flexlayer .lead-btn,
.flexlayer .main-btn,
.flexlayer .page-btn,
.flexlayer .primary-cta,
.flexlayer .section-action,
.flexlayer .section-cta {
  color: #9c98cf;
}
.flexlayer .colpad,
.flexlayer .copy-wrapper {
  color: #ffffff;
}
.fieldbox .menu-bar {
  position: relative !important;
}
.fieldbox .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .fieldbox .container {
    flex-wrap: nowrap;
  }
}
.fieldbox .slotwrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.fieldbox .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.fieldbox .nav-link {
  position: relative;
}
.fieldbox .blockrow {
  color: #9c98cf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.fieldbox .nav-item:focus,
.fieldbox .nav-link:focus {
  outline: none;
}
.fieldbox .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media (min-width: 992px) {
  .fieldbox .navbar {
    min-height: 105px;
  }
}
.fieldbox .navbar .layoutbox img {
  width: auto;
}
.fieldbox .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .fieldbox .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .fieldbox .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .fieldbox .navbar .nav-item .nav-link::before {
    display: none;
  }
  .fieldbox .navbar .layoutbox img {
    height: 3rem !important;
  }
  .fieldbox .navbar ul.navbar-nav li {
    margin: auto;
  }
  .fieldbox .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .fieldbox .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.fieldbox .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .fieldbox .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.fieldbox .navbar-brand .sublayer {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #87ceeb;
}
.fieldbox .navbar-brand .sublayer span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #9c98cf;
}
.fieldbox .navbar-brand .sublayer:hover {
  color: #9c98cf !important;
}
.fieldbox .navbar-brand .layoutbox a {
  outline: none;
}
.fieldbox .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.fieldbox ul.navbar-nav {
  flex-wrap: wrap;
}
.fieldbox .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .fieldbox .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.fieldbox .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.fieldbox button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.fieldbox .menu-bar {
  padding: 0 1rem;
}
.fieldbox a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .fieldbox .navbar {
    height: 60px;
  }
  .fieldbox .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .fieldbox .navbar {
    min-height: 105px;
  }
}
.nodebox {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.nodebox .sectionunit {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .nodebox .sectionunit {
    padding: 30px 20px;
  }
}
.nodebox .sectionunit .maparea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nodebox .sectionunit .maparea img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nodebox .sectionunit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #9c98cf 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.nodebox .sectionunit .contentgrid {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .nodebox .sectionunit .contentgrid {
    width: 100%;
  }
}
.nodebox .sectionunit .contentgrid .desc-wrapper .plate {
  display: inline-block;
  background-color: #d3f2ff;
  padding: 8px 16px;
  margin-bottom: 32px;
}.nodebox .sectionunit .contentgrid .block-title,
.nodebox .sectionunit .contentgrid .chapter-title,
.nodebox .sectionunit .contentgrid .header-text,
.nodebox .sectionunit .contentgrid .lead-h2,
.nodebox .sectionunit .contentgrid .main-heading,
.nodebox .sectionunit .contentgrid .page-h,
.nodebox .sectionunit .contentgrid .section-h,
.nodebox .sectionunit .contentgrid .section-heading,
.nodebox .sectionunit .contentgrid .topic-title {
  margin-bottom: 32px;
}
.nodebox .sectionunit .contentgrid .patch {
  margin-bottom: 0;
}.nodebox .sectionunit .contentgrid .block-action,
.nodebox .sectionunit .contentgrid .cta-link,
.nodebox .sectionunit .contentgrid .lead-btn,
.nodebox .sectionunit .contentgrid .main-btn,
.nodebox .sectionunit .contentgrid .page-btn,
.nodebox .sectionunit .contentgrid .primary-cta,
.nodebox .sectionunit .contentgrid .section-action,
.nodebox .sectionunit .contentgrid .section-cta {
  margin-top: 64px;
}.nodebox .sectionunit .contentgrid .block-action .btn,
.nodebox .sectionunit .contentgrid .cta-link .btn,
.nodebox .sectionunit .contentgrid .lead-btn .btn,
.nodebox .sectionunit .contentgrid .main-btn .btn,
.nodebox .sectionunit .contentgrid .page-btn .btn,
.nodebox .sectionunit .contentgrid .primary-cta .btn,
.nodebox .sectionunit .contentgrid .section-action .btn,
.nodebox .sectionunit .contentgrid .section-cta .btn {
  margin-bottom: 0;
}.nodebox .block-title,
.nodebox .chapter-title,
.nodebox .header-text,
.nodebox .lead-h2,
.nodebox .main-heading,
.nodebox .page-h,
.nodebox .section-h,
.nodebox .section-heading,
.nodebox .topic-title {
  color: #404349;
}
.nodebox .patch {
  color: #ffffff;
}
.nodebox .plate {
  color: #b19a7c;
}.nodebox .block-title,
.nodebox .chapter-title,
.nodebox .header-text,
.nodebox .lead-h2,
.nodebox .main-heading,
.nodebox .page-h,
.nodebox .section-h,
.nodebox .section-heading,
.nodebox .topic-title,
.nodebox .block-action,
.nodebox .cta-link,
.nodebox .lead-btn,
.nodebox .main-btn,
.nodebox .page-btn,
.nodebox .primary-cta,
.nodebox .section-action,
.nodebox .section-cta {
  color: #ffffff;
}
.subbox {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.subbox .sectionunit .patch {
  margin-bottom: 22px;
}
.subbox .patch {
  color: #000000;
}.subbox .block-action,
.subbox .cta-link,
.subbox .lead-btn,
.subbox .main-btn,
.subbox .page-btn,
.subbox .primary-cta,
.subbox .section-action,
.subbox .section-cta {
  text-align: center;
}
.tilepad {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #d3f2ff;
}
.tilepad .innerwrap {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .tilepad .innerwrap {
    top: -150px;
    right: -350px;
  }
}
.tilepad .innerwrap::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  pointer-events: none;
}
.tilepad .innerwrap::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.tilepad .row {
  justify-content: center;
}
.tilepad .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .tilepad .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.tilepad .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.tilepad .sectionunit {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .tilepad .sectionunit {
    margin-bottom: 30px;
  }
}.tilepad .sectionunit .block-title,
.tilepad .sectionunit .chapter-title,
.tilepad .sectionunit .header-text,
.tilepad .sectionunit .lead-h2,
.tilepad .sectionunit .main-heading,
.tilepad .sectionunit .page-h,
.tilepad .sectionunit .section-h,
.tilepad .sectionunit .section-heading,
.tilepad .sectionunit .topic-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {.tilepad .sectionunit .block-title,
.tilepad .sectionunit .chapter-title,
.tilepad .sectionunit .header-text,
.tilepad .sectionunit .lead-h2,
.tilepad .sectionunit .main-heading,
.tilepad .sectionunit .page-h,
.tilepad .sectionunit .section-h,
.tilepad .sectionunit .section-heading,
.tilepad .sectionunit .topic-title {
    margin-bottom: 20px;
  }
}
.tilepad .sectionunit .text-wrapper .patch {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tilepad .sectionunit .text-wrapper .patch {
    width: 100%;
  }
}.tilepad .sectionunit .block-action,
.tilepad .sectionunit .cta-link,
.tilepad .sectionunit .lead-btn,
.tilepad .sectionunit .main-btn,
.tilepad .sectionunit .page-btn,
.tilepad .sectionunit .primary-cta,
.tilepad .sectionunit .section-action,
.tilepad .sectionunit .section-cta {
  margin-top: 30px;
}
@media (max-width: 992px) {.tilepad .sectionunit .block-action,
.tilepad .sectionunit .cta-link,
.tilepad .sectionunit .lead-btn,
.tilepad .sectionunit .main-btn,
.tilepad .sectionunit .page-btn,
.tilepad .sectionunit .primary-cta,
.tilepad .sectionunit .section-action,
.tilepad .sectionunit .section-cta {
    margin-top: 20px;
  }
}
.tilepad .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.tilepad .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #9c98cf;
  pointer-events: none;
}
.tilepad .copy-wrapper .colpad {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}.tilepad .block-title,
.tilepad .chapter-title,
.tilepad .header-text,
.tilepad .lead-h2,
.tilepad .main-heading,
.tilepad .page-h,
.tilepad .section-h,
.tilepad .section-heading,
.tilepad .topic-title {
  color: #f1f5eb;
}
.tilepad .patch,
.tilepad .text-wrapper {
  color: #000000;
  text-align: center;
}.tilepad .block-action,
.tilepad .cta-link,
.tilepad .lead-btn,
.tilepad .main-btn,
.tilepad .page-btn,
.tilepad .primary-cta,
.tilepad .section-action,
.tilepad .section-cta,
.tilepad .block-title,
.tilepad .chapter-title,
.tilepad .header-text,
.tilepad .lead-h2,
.tilepad .main-heading,
.tilepad .page-h,
.tilepad .section-h,
.tilepad .section-heading,
.tilepad .topic-title {
  text-align: center;
}
.tilepad .colpad {
  color: #f1f5eb;
  text-align: center;
}.tilepad .block-title,
.tilepad .chapter-title,
.tilepad .header-text,
.tilepad .lead-h2,
.tilepad .main-heading,
.tilepad .page-h,
.tilepad .section-h,
.tilepad .section-heading,
.tilepad .topic-title,
.tilepad .block-action,
.tilepad .cta-link,
.tilepad .lead-btn,
.tilepad .main-btn,
.tilepad .page-btn,
.tilepad .primary-cta,
.tilepad .section-action,
.tilepad .section-cta {
  color: #9c98cf;
}
.tilepad .colpad,
.tilepad .copy-wrapper {
  color: #ffffff;
}

.node {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.node *,
.node *::before,
.node *::after {
  box-sizing: border-box;
}

.node.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.tilewrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(214, 221, 228, 0.8);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.tilewrap::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7db7ff 0%, #8fcfbe 50%, #d9d3ff 100%);
}

.tilewrap::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 183, 255, 0.14) 0%, rgba(125, 183, 255, 0) 72%);
  pointer-events: none;
}

.cookie-glass-inner {
  position: relative;
  z-index: 1;
}

.coverwrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.figure-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(214, 221, 228, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  flex-shrink: 0;
  overflow: hidden;
}

.pathunit {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  max-width: 42px;
  max-height: 42px;
}

.layoutrow {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.topwrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.outerwrapunit {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(214, 221, 228, 0.95);
  color: #607080;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gridwrapunit {
  display: inline-block;
  color: #24313b;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.desc-text {
  margin: 0;
  color: #3b4953;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.domunit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-items: center;
  text-align: center;
}

.doc-links-note {
  display: block;
  width: 100%;
  text-align: center;
  color: #6f7d87;
  font-size: 12px;
  line-height: 1.4;
}

.legal-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.legal-links-row a {
  display: inline-block;
  color: #4d6f8c;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(77, 111, 140, 0.34);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-links-row a:hover {
  color: #2f4e69;
  border-bottom-color: #2f4e69;
}

.legal-links-row span {
  color: #6f7d87;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.outerwrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#noticeCloseBtn {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #5f7ea0 0%, #3f5f7b 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(63, 95, 123, 0.18);
}

#noticeCloseBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .tilewrap {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .outerwrap {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #noticeCloseBtn {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .node {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .tilewrap {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .coverwrap {
    justify-content: center;
  }

  .layoutrow {
    align-items: center;
    text-align: center;
  }

  .topwrap {
    justify-content: center;
  }

  .gridwrapunit {
    text-align: center;
    font-size: 18px;
  }

  .desc-text {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .domunit {
    align-items: center;
    text-align: center;
  }

  .doc-links-note {
    text-align: center;
  }

  .legal-links-row {
    justify-content: center;
  }

  .outerwrap {
    flex-direction: column;
    width: 100%;
  }

  #noticeCloseBtn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .node {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .tilewrap {
    padding: 14px;
    border-radius: 18px;
  }

  .figure-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .pathunit {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
  }

  .gridwrapunit {
    font-size: 17px;
  }

  .doc-links-note,
  .legal-links-row a,
  .legal-links-row span,
  #noticeCloseBtn {
    font-size: 12px;
  }
}

.unit-ready-panel {
  padding: 0 !important;
  background: transparent;
}
.unit-ready-panel .scaffold {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.unit-ready-panel .layoutbase {
  padding: 40px 40px 32px;
  background: #f8fbff;
  border-bottom: 1px solid #e5eef8;
  text-align: center;
}
.unit-ready-panel .tag-entry {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.unit-ready-panel .zone-stack {
  margin: 18px 0 10px;
  color: #111827;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
}
.unit-ready-panel .unitfield {
  margin: 0 auto;
  max-width: 520px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.unit-ready-panel .prime-inner-link {
  padding: 32px 40px 40px;
  color: #1f2937;
}
.unit-ready-panel .prime-inner-link *,
.unit-ready-panel .prime-inner-link *::before,
.unit-ready-panel .prime-inner-link *::after {
  box-sizing: border-box;
}
.unit-ready-panel .prime-inner-link [hidden] {
  display: none !important;
}
.unit-ready-panel .unitgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.unit-ready-panel .top-badge {
  display: flex;
  flex-direction: column;
  align-self: start;
}
.unit-ready-panel .nav-outer-content {
  grid-column: 1 / -1;
}
.unit-ready-panel .wrapunit {
  display: block;
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.unit-ready-panel .bold-text {
  width: 100%;
  height: 54px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid #d1d5db !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 15px;
  box-shadow: none !important;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.unit-ready-panel input.bold-text {
  line-height: normal;
}
.unit-ready-panel .bold-text::placeholder {
  color: #9ca3af;
  opacity: 1;
  text-align: center;
}
.unit-ready-panel .bold-text:focus {
  outline: none;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
}
.unit-ready-panel select.bold-text,
.unit-ready-panel .unit-body {
  line-height: normal;
  padding-right: 46px;
  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='%232563eb' 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 18px center !important;
  background-size: 16px !important;
  cursor: pointer;
}
.unit-ready-panel select.bold-text option {
  background: #ffffff;
  color: #111827;
}
.unit-ready-panel textarea.bold-text {
  height: auto;
  min-height: 180px;
  padding: 15px 18px;
  resize: vertical;
  text-align: left;
}
.unit-ready-panel textarea.bold-text::placeholder {
  text-align: left;
}
.unit-ready-panel .deck-soft-button {
  padding: 18px 22px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f9fafb;
}
.unit-ready-panel .top-light-frame {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.unit-ready-panel .section-secondary-mark {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #2563eb;
  cursor: pointer;
}
.unit-ready-panel .slot-tall-side {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.75;
  cursor: pointer;
}
.unit-ready-panel .slot-tall-side a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.unit-ready-panel .slot-tall-side a:hover,
.unit-ready-panel .slot-tall-side a:focus {
  color: #1d4ed8;
}
.unit-ready-panel .tilemap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.unit-ready-panel .tile-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 15px 36px;
  border: 1px solid #4385c8;
  border-radius: 14px !important;
  background: #4385c8;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.unit-ready-panel .tile-info:hover,
.unit-ready-panel .tile-info:focus {
  background: #386fa7;
  border-color: #386fa7;
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.36);
  transform: translateY(-2px);
}
.unit-ready-panel .tile-info:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.22);
}
.unit-ready-panel .interfacerow {
  margin: 0;
  color: #6b7280;
  font-size: 12.5px;
  line-height: 1.8;
  text-align: center;
  padding: 0 8px;
}
.unit-ready-panel .path-flag {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.unit-ready-panel .calm-active-outer {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #166534;
}
.unit-ready-panel .note-primary-note {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
@media (max-width: 767px) {
  .unit-ready-panel {
    padding: 0 12px !important;
  }
  .unit-ready-panel .layoutbase {
    padding: 28px 20px 24px;
  }
  .unit-ready-panel .prime-inner-link {
    padding: 24px 20px 28px;
  }
  .unit-ready-panel .zone-stack {
    font-size: 26px;
  }
  .unit-ready-panel .tile-info {
    width: 100%;
    min-width: 0;
  }
}

.node {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.node *,
.node *::before,
.node *::after {
  box-sizing: border-box;
}

.node.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.node.closed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
}

.tilewrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(214, 221, 228, 0.8);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.tilewrap::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7db7ff 0%, #8fcfbe 50%, #d9d3ff 100%);
}

.tilewrap::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 183, 255, 0.14) 0%, rgba(125, 183, 255, 0) 72%);
  pointer-events: none;
}

.cookie-glass-inner {
  position: relative;
  z-index: 1;
}

.coverwrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.figure-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(214, 221, 228, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  flex-shrink: 0;
  overflow: hidden;
}

.pathunit {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  max-width: 42px;
  max-height: 42px;
}

.layoutrow {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.topwrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.outerwrapunit {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(214, 221, 228, 0.95);
  color: #607080;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gridwrapunit {
  display: inline-block;
  color: #24313b;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.desc-text {
  margin: 0;
  color: #3b4953;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.domunit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-items: center;
  text-align: center;
}

.doc-links-note {
  display: block;
  width: 100%;
  text-align: center;
  color: #6f7d87;
  font-size: 12px;
  line-height: 1.4;
}

.legal-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.legal-links-row a {
  display: inline-block;
  color: #4d6f8c;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(77, 111, 140, 0.34);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-links-row a:hover {
  color: #2f4e69;
  border-bottom-color: #2f4e69;
}

.legal-links-row span {
  color: #6f7d87;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.outerwrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#noticeCloseBtn {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #5f7ea0 0%, #3f5f7b 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(63, 95, 123, 0.18);
}

#noticeCloseBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .tilewrap {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .outerwrap {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #noticeCloseBtn {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .node {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .tilewrap {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .coverwrap {
    justify-content: center;
  }

  .layoutrow {
    align-items: center;
    text-align: center;
  }

  .topwrap {
    justify-content: center;
  }

  .gridwrapunit {
    text-align: center;
    font-size: 18px;
  }

  .desc-text {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .domunit {
    align-items: center;
    text-align: center;
  }

  .doc-links-note {
    text-align: center;
  }

  .legal-links-row {
    justify-content: center;
  }

  .outerwrap {
    flex-direction: column;
    width: 100%;
  }

  #noticeCloseBtn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .node {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .tilewrap {
    padding: 14px;
    border-radius: 18px;
  }

  .figure-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .pathunit {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
  }

  .gridwrapunit {
    font-size: 17px;
  }

  .doc-links-note,
  .legal-links-row a,
  .legal-links-row span,
  #noticeCloseBtn {
    font-size: 12px;
  }
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833%2C37%2C41%2C0.75%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%;
}
