:root {

  --site-primary-rgb: 13, 110, 253;
  --site-secondary-rgb: 108, 117, 125;
  --site-info-rgb: 13, 202, 240;
  --site-black-rgb: 0, 0, 0;
  --site-body-font-family: var(--site-font-sans-serif);
  --site-body-font-size: 1rem;
  --site-body-font-weight: 400;
  --site-body-line-height: 1.5;
  --site-body-color: #212529;
  --site-body-color-rgb: 33, 37, 41;
  --site-body-bg: #fff;
  --site-emphasis-color-rgb: 0, 0, 0;
  --site-secondary-color: rgba(33, 37, 41, 0.75);
  --site-heading-color: inherit;
  --site-link-color: #0d6efd;
  --site-link-color-rgb: 13, 110, 253;
  --site-link-hover-color: #0a58ca;
  --site-link-hover-color-rgb: 10, 88, 202;
  --site-border-width: 1px;
  --site-border-style: solid;
  --site-border-color: #dee2e6;
  --site-border-color-translucent: rgba(0, 0, 0, 0.175);
  --site-border-radius: 0.375rem;
  --site-border-radius-sm: 0.25rem;
  --site-border-radius-lg: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--site-body-font-family);
  font-size: var(--site-body-font-size);
  font-weight: var(--site-body-font-weight);
  line-height: var(--site-body-line-height);
  color: var(--site-body-color);
  text-align: var(--site-body-text-align);
  background-color: var(--site-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

 h4, .h4, 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;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

a {
  color: rgba(var(--site-link-color-rgb), var(--site-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --site-link-color-rgb: var(--site-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.container,
.container-fluid {
  --site-gutter-x: 1.5rem;
  --site-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--site-gutter-x) * 0.5);
  padding-left: calc(var(--site-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
   .container {
    max-width: 1320px;
  }
}
:root {
  --site-breakpoint-xs: 0;
  --site-breakpoint-sm: 576px;
  --site-breakpoint-md: 768px;
  --site-breakpoint-lg: 992px;
  --site-breakpoint-xl: 1200px;
  --site-breakpoint-xxl: 1400px;
}

.row {
  --site-gutter-x: 1.5rem;
  --site-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--site-gutter-y));
  margin-right: calc(-0.5 * var(--site-gutter-x));
  margin-left: calc(-0.5 * var(--site-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--site-gutter-x) * 0.5);
  padding-left: calc(var(--site-gutter-x) * 0.5);
  margin-top: var(--site-gutter-y);
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.col-form-label {
  padding-top: calc(0.375rem + var(--site-border-width));
  padding-bottom: calc(0.375rem + var(--site-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--site-border-width));
  padding-bottom: calc(0.5rem + var(--site-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--site-border-width));
  padding-bottom: calc(0.25rem + var(--site-border-width));
  font-size: 0.875rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
 .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.btn {
  --site-btn-padding-x: 0.75rem;
  --site-btn-padding-y: 0.375rem;
  --site-btn-font-family: ;
  --site-btn-font-size: 1rem;
  --site-btn-font-weight: 400;
  --site-btn-line-height: 1.5;
  --site-btn-color: var(--site-body-color);
  --site-btn-bg: transparent;
  --site-btn-border-width: var(--site-border-width);
  --site-btn-border-color: transparent;
  --site-btn-border-radius: var(--site-border-radius);
  --site-btn-hover-border-color: transparent;
  --site-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --site-btn-disabled-opacity: 0.65;
  --site-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--site-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--site-btn-padding-y) var(--site-btn-padding-x);
  font-family: var(--site-btn-font-family);
  font-size: var(--site-btn-font-size);
  font-weight: var(--site-btn-font-weight);
  line-height: var(--site-btn-line-height);
  color: var(--site-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--site-btn-border-width) solid var(--site-btn-border-color);
  border-radius: var(--site-btn-border-radius);
  background-color: var(--site-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--site-btn-hover-color);
  background-color: var(--site-btn-hover-bg);
  border-color: var(--site-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--site-btn-color);
  background-color: var(--site-btn-bg);
  border-color: var(--site-btn-border-color);
}
.btn:focus-visible {
  color: var(--site-btn-hover-color);
  background-color: var(--site-btn-hover-bg);
  border-color: var(--site-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--site-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--site-btn-active-color);
  background-color: var(--site-btn-active-bg);
  border-color: var(--site-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn:disabled {
  color: var(--site-btn-disabled-color);
  pointer-events: none;
  background-color: var(--site-btn-disabled-bg);
  border-color: var(--site-btn-disabled-border-color);
  opacity: var(--site-btn-disabled-opacity);
}

.btn-primary {
  --site-btn-color: #fff;
  --site-btn-bg: #0d6efd;
  --site-btn-border-color: #0d6efd;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #0b5ed7;
  --site-btn-hover-border-color: #0a58ca;
  --site-btn-focus-shadow-rgb: 49, 132, 253;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #0a58ca;
  --site-btn-active-border-color: #0a53be;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #0d6efd;
  --site-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --site-btn-color: #fff;
  --site-btn-bg: #6c757d;
  --site-btn-border-color: #6c757d;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #5c636a;
  --site-btn-hover-border-color: #565e64;
  --site-btn-focus-shadow-rgb: 130, 138, 145;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #565e64;
  --site-btn-active-border-color: #51585e;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #6c757d;
  --site-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --site-btn-color: #fff;
  --site-btn-bg: #198754;
  --site-btn-border-color: #198754;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #157347;
  --site-btn-hover-border-color: #146c43;
  --site-btn-focus-shadow-rgb: 60, 153, 110;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #146c43;
  --site-btn-active-border-color: #13653f;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #198754;
  --site-btn-disabled-border-color: #198754;
}

.btn-info {
  --site-btn-color: #000;
  --site-btn-bg: #0dcaf0;
  --site-btn-border-color: #0dcaf0;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #31d2f2;
  --site-btn-hover-border-color: #25cff2;
  --site-btn-focus-shadow-rgb: 11, 172, 204;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #3dd5f3;
  --site-btn-active-border-color: #25cff2;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #0dcaf0;
  --site-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --site-btn-color: #000;
  --site-btn-bg: #ffc107;
  --site-btn-border-color: #ffc107;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #ffca2c;
  --site-btn-hover-border-color: #ffc720;
  --site-btn-focus-shadow-rgb: 217, 164, 6;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #ffcd39;
  --site-btn-active-border-color: #ffc720;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #ffc107;
  --site-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --site-btn-color: #fff;
  --site-btn-bg: #dc3545;
  --site-btn-border-color: #dc3545;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #bb2d3b;
  --site-btn-hover-border-color: #b02a37;
  --site-btn-focus-shadow-rgb: 225, 83, 97;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #b02a37;
  --site-btn-active-border-color: #a52834;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #dc3545;
  --site-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --site-btn-color: #000;
  --site-btn-bg: #f8f9fa;
  --site-btn-border-color: #f8f9fa;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #d3d4d5;
  --site-btn-hover-border-color: #c6c7c8;
  --site-btn-focus-shadow-rgb: 211, 212, 213;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #c6c7c8;
  --site-btn-active-border-color: #babbbc;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #f8f9fa;
  --site-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --site-btn-color: #fff;
  --site-btn-bg: #212529;
  --site-btn-border-color: #212529;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #424649;
  --site-btn-hover-border-color: #373b3e;
  --site-btn-focus-shadow-rgb: 66, 70, 73;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #4d5154;
  --site-btn-active-border-color: #373b3e;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #212529;
  --site-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --site-btn-color: #0d6efd;
  --site-btn-border-color: #0d6efd;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #0d6efd;
  --site-btn-hover-border-color: #0d6efd;
  --site-btn-focus-shadow-rgb: 13, 110, 253;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #0d6efd;
  --site-btn-active-border-color: #0d6efd;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #0d6efd;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #0d6efd;
  --site-gradient: none;
}

.btn-outline-secondary {
  --site-btn-color: #6c757d;
  --site-btn-border-color: #6c757d;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #6c757d;
  --site-btn-hover-border-color: #6c757d;
  --site-btn-focus-shadow-rgb: 108, 117, 125;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #6c757d;
  --site-btn-active-border-color: #6c757d;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #6c757d;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #6c757d;
  --site-gradient: none;
}

.btn-outline-success {
  --site-btn-color: #198754;
  --site-btn-border-color: #198754;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #198754;
  --site-btn-hover-border-color: #198754;
  --site-btn-focus-shadow-rgb: 25, 135, 84;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #198754;
  --site-btn-active-border-color: #198754;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #198754;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #198754;
  --site-gradient: none;
}

.btn-outline-info {
  --site-btn-color: #0dcaf0;
  --site-btn-border-color: #0dcaf0;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #0dcaf0;
  --site-btn-hover-border-color: #0dcaf0;
  --site-btn-focus-shadow-rgb: 13, 202, 240;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #0dcaf0;
  --site-btn-active-border-color: #0dcaf0;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #0dcaf0;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #0dcaf0;
  --site-gradient: none;
}

.btn-outline-warning {
  --site-btn-color: #ffc107;
  --site-btn-border-color: #ffc107;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #ffc107;
  --site-btn-hover-border-color: #ffc107;
  --site-btn-focus-shadow-rgb: 255, 193, 7;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #ffc107;
  --site-btn-active-border-color: #ffc107;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #ffc107;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #ffc107;
  --site-gradient: none;
}

.btn-outline-danger {
  --site-btn-color: #dc3545;
  --site-btn-border-color: #dc3545;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #dc3545;
  --site-btn-hover-border-color: #dc3545;
  --site-btn-focus-shadow-rgb: 220, 53, 69;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #dc3545;
  --site-btn-active-border-color: #dc3545;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #dc3545;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #dc3545;
  --site-gradient: none;
}

.btn-outline-light {
  --site-btn-color: #f8f9fa;
  --site-btn-border-color: #f8f9fa;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #f8f9fa;
  --site-btn-hover-border-color: #f8f9fa;
  --site-btn-focus-shadow-rgb: 248, 249, 250;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #f8f9fa;
  --site-btn-active-border-color: #f8f9fa;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #f8f9fa;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #f8f9fa;
  --site-gradient: none;
}

.btn-outline-dark {
  --site-btn-color: #212529;
  --site-btn-border-color: #212529;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #212529;
  --site-btn-hover-border-color: #212529;
  --site-btn-focus-shadow-rgb: 33, 37, 41;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #212529;
  --site-btn-active-border-color: #212529;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #212529;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #212529;
  --site-gradient: none;
}

.btn-link {
  --site-btn-font-weight: 400;
  --site-btn-color: var(--site-link-color);
  --site-btn-bg: transparent;
  --site-btn-border-color: transparent;
  --site-btn-hover-color: var(--site-link-hover-color);
  --site-btn-hover-border-color: transparent;
  --site-btn-active-color: var(--site-link-hover-color);
  --site-btn-active-border-color: transparent;
  --site-btn-disabled-color: #6c757d;
  --site-btn-disabled-border-color: transparent;
  --site-btn-box-shadow: 0 0 0 #000;
  --site-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--site-btn-color);
}
.btn-link:hover {
  color: var(--site-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --site-btn-padding-y: 0.5rem;
  --site-btn-padding-x: 1rem;
  --site-btn-font-size: 1.25rem;
  --site-btn-border-radius: var(--site-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --site-btn-padding-y: 0.25rem;
  --site-btn-padding-x: 0.5rem;
  --site-btn-font-size: 0.875rem;
  --site-btn-border-radius: var(--site-border-radius-sm);
}

.collapse:not(.show) {
  display: none;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-group {
  border-radius: var(--site-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--site-border-width));
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--site-border-width));
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:nth-child(n+3),
.btn-group-vertical > :not(.btn-check) + .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --site-nav-link-padding-x: 1rem;
  --site-nav-link-padding-y: 0.5rem;
  --site-nav-link-font-weight: ;
  --site-nav-link-color: var(--site-link-color);
  --site-nav-link-hover-color: var(--site-link-hover-color);
  --site-nav-link-disabled-color: var(--site-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--site-nav-link-padding-y) var(--site-nav-link-padding-x);
  font-size: var(--site-nav-link-font-size);
  font-weight: var(--site-nav-link-font-weight);
  color: var(--site-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--site-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .nav-link:disabled {
  color: var(--site-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.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);
}

.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%;
  }
}

.border {
  border: var(--site-border-width) var(--site-border-style) var(--site-border-color) !important;
}

.w-100 {
  width: 100% !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.m-auto {
  margin: auto !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !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-black {
  --site-text-opacity: 1;
  color: rgba(var(--site-black-rgb), var(--site-text-opacity)) !important;
}

.quiz-section {
  background-image: url("images/high2.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.quiz-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
.main-menu {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .main-menu .element {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .main-menu .element img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
    .main-menu .element.depth-iconfont {
      font-size: 3.125rem;
      line-height: 3.125rem; }
  .main-menu .box {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .main-menu .box, .main-menu .box:hover {
      color: inherit;
      text-decoration: none; }
  .main-menu .depth-iconfont + .box {
    vertical-align: -1px; }
  .main-menu.navbar-fixed-top {
    position: fixed; }
  .main-menu .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; }

.quiz-section {
  background-image: url("images/high2.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.quiz-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
@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;
}

.quiz-section {
  background-image: url("images/high2.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.quiz-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
section {
  background-color: #ffffff;
}

body {
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  color: #232323;
  position: relative;
}

button {
  background-color: transparent;
  border-color: transparent;
}

section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}

a.depth-iconfont:hover {
  text-decoration: none;
}

a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}.block-title,
.chapter-title,
.header-text,
.lead-h2,
.main-heading,
.page-h,
.section-h,
.section-heading,
.topic-title {
  font-style: normal;
  line-height: 1.3;
}

.linewrap {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h4,
.display-1,
.display-2,
.display-4,
.display-5,
.cellwrap,
span,
p,
a {
  line-height: 1;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}

b,
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;
}

.sectionunit {
  text-align: left;
}

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-box {
  width: 100%;
}.block-action,
.main-btn,
.page-btn,
.primary-cta,
.section-cta {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  font-size: 0;
}

.btn {
  font-weight: 600;
  border-width: 1px;
  font-style: normal;
  margin: 0.6rem 0.6rem;
  white-space: normal;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}

.btn-sm {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-md {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-lg {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-form {
  margin: 0;
}
.btn-form:hover {
  cursor: pointer;
}nav .block-action,
nav .main-btn,
nav .page-btn,
nav .primary-cta,
nav .section-cta {
  margin-left: 0rem;
  margin-right: 0rem;
}

.btn .depth-iconfont,
.btn.btn-sm .depth-iconfont {
  order: 1;
  cursor: pointer;
  margin-left: 0.5rem;
  vertical-align: sub;
}

.btn.btn-md .depth-iconfont,
.btn.btn-md .depth-iconfont {
  margin-left: 0.8rem;
}

[type=submit] {
  -webkit-appearance: none;
}

@keyframes arrowdown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes gradient-animation {
  from {
    background-position: 0% 100%;
    animation-timing-function: ease-in-out;
  }
  to {
    background-position: 100% 0%;
    animation-timing-function: ease-in-out;
  }
}

.menu .navbar-brand {
  display: flex;
}
.menu .navbar-brand span {
  display: flex;
  display: flex;
}
.menu .navbar-brand .navbar-brand {
  display: flex;
}
.menu .navbar-brand .element 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 .depth-iconfont {
  margin-right: 0.5rem;
}

.navbar {
  display: flex;
  }

.navbar-collapse {
  }

.nav-dropdown .link {
  padding: 0.667em 1.667em !important;
  margin: 0 !important;
}

.nav {
  display: flex;
  }

.row {
  display: flex;
  }

.justify-content-center {
  }

.card-wrapper {
  }

.navbar-toggler {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
  box-shadow: none;
}

html,
body {
  height: auto;
  min-height: 100vh;
}

.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
  text-align: center;
}

.row > * {
  padding-right: 1rem;
  padding-left: 1rem;
}

form .row {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
form .row [class*=col] {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}form .block-action,
form .main-btn,
form .page-btn,
form .primary-cta,
form .section-cta {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .btn {
  min-height: 48px;
}

.unitrow {
  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: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > [class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 992px) {
  .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 992px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.item {
  position: relative;
}
.quiz-section {
  background-image: url("images/high2.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.quiz-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
@font-face {
  font-family: 'resolution2';
  font-display: swap;
  src: url('fonts/animation2.woff2') format('woff2'), url('fonts/animation2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="curve-"], [class*=" curve-"] {
  
  font-family: 'resolution2' !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;
}
.curve-canvas-letter:before {
  content: "\e945";
}
.curve-canvas-map-pin:before {
  content: "\e94c";
}
.curve-canvas-mobile-2:before {
  content: "\e94e";
}

.quiz-section {
  background-image: url("images/high2.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.quiz-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .depth-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .depth-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .depth-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .depth-iconfont {
  font-size: 2.5rem;
}
.cellwrap {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}
.cellwrap > .depth-iconfont {
  font-size: 1.1875rem;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((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.5 * (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.5 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .cellwrap {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((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.5 * (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.5 * (1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62))));
  }
  .cellwrap {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.5 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 62rem) / (87 - 62))));
  }
}

.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.btn-primary {
  box-shadow: #1b1846 0px 8px 15px -5px;
}
.btn-primary,
.btn-primary:active {
  background-color: #383193 !important;
  border-color: #383193 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  color: inherit;
  background-color: #473eb9 !important;
  border-color: #473eb9 !important;
  box-shadow: #0c0b20 0px 8px 15px -5px;
}

.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #473eb9 !important;
  border-color: #473eb9 !important;
}
.btn-secondary {
  box-shadow: #0c0a26 0px 8px 15px -5px;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #251e78 !important;
  border-color: #251e78 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  color: inherit;
  background-color: #3228a1 !important;
  border-color: #3228a1 !important;
  box-shadow: #000000 0px 8px 15px -5px;
}

.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3228a1 !important;
  border-color: #3228a1 !important;
}
.btn-info {
  box-shadow: #1b1846 0px 8px 15px -5px;
}
.btn-info,
.btn-info:active {
  background-color: #383193 !important;
  border-color: #383193 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  color: inherit;
  background-color: #473eb9 !important;
  border-color: #473eb9 !important;
  box-shadow: #0c0b20 0px 8px 15px -5px;
}

.btn-info:disabled {
  color: #ffffff !important;
  background-color: #473eb9 !important;
  border-color: #473eb9 !important;
}
.btn-success {
  box-shadow: #000000 0px 8px 15px -5px;
}
.btn-success,
.btn-success:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  color: inherit;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: #000000 0px 8px 15px -5px;
}

.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-warning {
  box-shadow: #cccccc 0px 8px 15px -5px;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #666666 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: #b3b3b3 0px 8px 15px -5px;
}

.btn-warning:disabled {
  color: #666666 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger {
  box-shadow: #c2c2c2 0px 8px 15px -5px;
}
.btn-danger,
.btn-danger:active {
  background-color: #f5f5f5 !important;
  border-color: #f5f5f5 !important;
  color: #5c5c5c !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: #a9a9a9 0px 8px 15px -5px;
}

.btn-danger:disabled {
  color: #5c5c5c !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white {
  box-shadow: #c2c2c2 0px 8px 15px -5px;
}
.btn-white,
.btn-white:active {
  background-color: #f5f5f5 !important;
  border-color: #f5f5f5 !important;
  color: #5c5c5c !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: #a9a9a9 0px 8px 15px -5px;
}

.btn-white:disabled {
  color: #5c5c5c !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  box-shadow: #000000 0px 8px 15px -5px;
}
.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: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: #000000 0px 8px 15px -5px;
}

.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #383193;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.active {
  color: #1f1b52 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #383193 !important;
  border-color: #383193 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #251e78;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.active {
  color: #100d33 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #251e78 !important;
  border-color: #251e78 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #383193;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.active {
  color: #1f1b52 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #383193 !important;
  border-color: #383193 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5f5f5;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.active {
  color: #cacaca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #767676 !important;
  background-color: #f5f5f5 !important;
  border-color: #f5f5f5 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5f5f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.active {
  color: #cacaca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-white-outline:disabled {
  color: #767676 !important;
  background-color: #f5f5f5 !important;
  border-color: #f5f5f5 !important;
}
.text-primary {
  color: #383193 !important;
}
.text-secondary {
  color: #251e78 !important;
}
.text-info {
  color: #383193 !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1b1846 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0c0a26 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1b1846 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}.block-action .btn:not(.btn-form),
.main-btn .btn:not(.btn-form),
.page-btn .btn:not(.btn-form),
.primary-cta .btn:not(.btn-form),
.section-cta .btn:not(.btn-form) {
  border-radius: 10px;
}
a,
a:hover {
  color: #383193;
}

html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}.block-action .btn,
.main-btn .btn,
.page-btn .btn,
.primary-cta .btn,
.section-cta .btn {
  padding: 12px 24px;
  font-weight: 500;
  border: none !important;
}.block-action .btn .depth-iconfont,
.main-btn .btn .depth-iconfont,
.page-btn .btn .depth-iconfont,
.primary-cta .btn .depth-iconfont,
.section-cta .btn .depth-iconfont {
  margin-left: 12px;
}.block-action .btn-black,
.main-btn .btn-black,
.page-btn .btn-black,
.primary-cta .btn-black,
.section-cta .btn-black {
  box-shadow: #000000 0 0.602187px 1.08394px -1.25px, #333333 0px 2.28853px 4.11936px -2.5px, #4d4d4d 0px 10px 18px -3.75px, #666666 0px 0.706592px 0.706592px -0.583333px, #999999 0px 1.80656px 1.80656px -1.16667px, #b3b3b3 0px 3.62176px 3.62176px -1.75px, #cccccc 0px 6.8656px 6.8656px -2.33333px, #e6e6e6 0px 8.6468px 8.6468px -2.91667px, #f2f2f2 0px 10px 10px -3.5px;
}.block-action .btn-black:hover,
.main-btn .btn-black:hover,
.page-btn .btn-black:hover,
.primary-cta .btn-black:hover,
.section-cta .btn-black:hover,
.block-action .btn-black:focus,
.main-btn .btn-black:focus,
.page-btn .btn-black:focus,
.primary-cta .btn-black:focus,
.section-cta .btn-black:focus {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  box-shadow: #000000 0 0.602187px 1.08394px -1.25px, #1a1a1a 0px 2.28853px 4.11936px -2.5px, #333333 0px 10px 18px -3.75px, #4d4d4d 0px 0.706592px 0.706592px -0.583333px, #808080 0px 1.80656px 1.80656px -1.16667px, #999999 0px 3.62176px 3.62176px -1.75px, #b3b3b3 0px 6.8656px 6.8656px -2.33333px, #cccccc 0px 8.6468px 8.6468px -2.91667px, #d9d9d9 0px 10px 10px -3.5px;
}.block-action .btn-white,
.main-btn .btn-white,
.page-btn .btn-white,
.primary-cta .btn-white,
.section-cta .btn-white {
  color: #000000 !important;
  box-shadow: #808080 0px 0.706592px 0.706592px -0.583333px, #999999 0px 1.80656px 1.80656px -1.16667px, #b3b3b3 0px 3.62176px 3.62176px -1.75px, #bfbfbf 0px 6.8656px 6.8656px -2.33333px, #cccccc 0px 8.6468px 8.6468px -2.91667px, #e6e6e6 0px 10px 10px -3.5px, #ffffff 0px 3px 1px 0px inset;
}.block-action .btn-white:hover,
.main-btn .btn-white:hover,
.page-btn .btn-white:hover,
.primary-cta .btn-white:hover,
.section-cta .btn-white:hover,
.block-action .btn-white:focus,
.main-btn .btn-white:focus,
.page-btn .btn-white:focus,
.primary-cta .btn-white:focus,
.section-cta .btn-white:focus {
  background-color: #fafafa !important;
  color: #000000 !important;
  box-shadow: #737373 0px 0.706592px 0.706592px -0.583333px, #8c8c8c 0px 1.80656px 1.80656px -1.16667px, #a6a6a6 0px 3.62176px 3.62176px -1.75px, #b3b3b3 0px 6.8656px 6.8656px -2.33333px, #bfbfbf 0px 8.6468px 8.6468px -2.91667px, #d9d9d9 0px 10px 10px -3.5px, #ffffff 0px 3px 1px 0px inset;
}
img,
.card-wrapper,
.card,
.item-wrapper {
  border-radius: 20px !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.rowunit .main-menu {
  position: relative !important;
}
.rowunit .main-menu {
  position: absolute !important;
}
.rowunit .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .rowunit .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.rowunit .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rowunit .nav-link {
  position: relative;
}
.rowunit .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .rowunit .container {
    flex-wrap: nowrap;
  }
}
.rowunit .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.rowunit .gridunitbox:hover {
  color: #383193 !important;
}
.rowunit .nav-item:focus,
.rowunit .nav-link:focus {
  outline: none;
}
.rowunit .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.rowunit .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.rowunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rowunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rowunit .navbar .element img {
    height: 3rem !important;
  }
  .rowunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rowunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rowunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rowunit .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rowunit .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.rowunit .navbar-brand .box:hover,
.rowunit .navbar-brand .box:focus {
  color: #383193 !important;
}
.rowunit .navbar-brand .element a {
  outline: none;
}
.rowunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rowunit ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rowunit ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rowunit .navbar-buttons {
  text-align: center;
}
.rowunit .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.rowunit .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .rowunit .navbar-buttons .btn {
    width: auto !important;
  }
}
.rowunit button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.rowunit .main-menu {
  padding: 0 1rem;
}
.rowunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rowunit .navbar {
    height: 70px;
  }
  .rowunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rowunit .navbar-nav {
  margin: 0 auto;
}
.rowunit .nav-item {
  padding: 0;
  margin: 0;
}
.rowunit .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.rowunit .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.rowunit .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.rowunit .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rowunit .navbar {
    justify-content: flex-start !important;
  }
  .rowunit .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rowunit .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rowunit .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rowunit .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .rowunit .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.rowunit .mainfield {
  min-height: 110px;
}
.interfacebox {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("images/yellow1.jpg");
}
.interfacebox .tileunit .logo-wrapper {
  margin-bottom: 16px;
}
.interfacebox .tileunit .logo-wrapper img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  display: inline-flex;
  border-radius: 100% !important;
  box-shadow: 0 20px 20px -5px #383193;
}.interfacebox .tileunit .bodycore .block-title,
.interfacebox .tileunit .bodycore .chapter-title,
.interfacebox .tileunit .bodycore .header-text,
.interfacebox .tileunit .bodycore .lead-h2,
.interfacebox .tileunit .bodycore .main-heading,
.interfacebox .tileunit .bodycore .page-h,
.interfacebox .tileunit .bodycore .section-h,
.interfacebox .tileunit .bodycore .section-heading,
.interfacebox .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #aaa7cf, #383193 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.interfacebox .tileunit .bodycore .block-title,
.interfacebox .tileunit .bodycore .chapter-title,
.interfacebox .tileunit .bodycore .header-text,
.interfacebox .tileunit .bodycore .lead-h2,
.interfacebox .tileunit .bodycore .main-heading,
.interfacebox .tileunit .bodycore .page-h,
.interfacebox .tileunit .bodycore .section-h,
.interfacebox .tileunit .bodycore .section-heading,
.interfacebox .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #aaa7cf, #383193 40%);
  }
}
.interfacebox .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .interfacebox .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.interfacebox .tileunit .block-action,
.interfacebox .tileunit .main-btn,
.interfacebox .tileunit .page-btn,
.interfacebox .tileunit .primary-cta,
.interfacebox .tileunit .section-cta {
  margin-top: 22px;
}
.interfacebox .trackbox {
  color: #000000;
  text-align: center;
}.interfacebox .block-title,
.interfacebox .chapter-title,
.interfacebox .header-text,
.interfacebox .lead-h2,
.interfacebox .main-heading,
.interfacebox .page-h,
.interfacebox .section-h,
.interfacebox .section-heading,
.interfacebox .topic-title {
  color: #000000;
}
.interfacebox .linewrap,
.interfacebox .text-wrapper {
  color: #000000;
  text-align: center;
}.interfacebox .block-title,
.interfacebox .chapter-title,
.interfacebox .header-text,
.interfacebox .lead-h2,
.interfacebox .main-heading,
.interfacebox .page-h,
.interfacebox .section-h,
.interfacebox .section-heading,
.interfacebox .topic-title,
.interfacebox .bodycore,
.interfacebox .block-action,
.interfacebox .main-btn,
.interfacebox .page-btn,
.interfacebox .primary-cta,
.interfacebox .section-cta,
.interfacebox .logo-wrapper {
  text-align: center;
}
.boxcore {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.boxcore .tileunit {
  margin: 0 -30px;
}
.boxcore .tileunit .card {
  padding: 0 30px;
}
.boxcore .trackbox {
  margin-bottom: 16px;
  color: #877e72;
}
.boxcore .holdbox {
  margin-bottom: 16px;
}.boxcore .holdbox .block-title,
.boxcore .holdbox .chapter-title,
.boxcore .holdbox .header-text,
.boxcore .holdbox .lead-h2,
.boxcore .holdbox .main-heading,
.boxcore .holdbox .page-h,
.boxcore .holdbox .section-h,
.boxcore .holdbox .section-heading,
.boxcore .holdbox .topic-title {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(170deg, #383193 20%, #aaa7cf);
  margin-bottom: 0;
}
.boxcore .text-wrapper .linewrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .boxcore .text-wrapper .linewrap {
    width: 100%;
  }
}.boxcore .block-action,
.boxcore .main-btn,
.boxcore .page-btn,
.boxcore .primary-cta,
.boxcore .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .boxcore .stagebox {
    margin-top: 40px;
  }
}
.boxcore .stagebox img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .boxcore .stagebox img {
    height: 300px;
  }
}.boxcore .block-title,
.boxcore .chapter-title,
.boxcore .header-text,
.boxcore .lead-h2,
.boxcore .main-heading,
.boxcore .page-h,
.boxcore .section-h,
.boxcore .section-heading,
.boxcore .topic-title {
  color: #ffedd6;
}
.boxcore .linewrap {
  color: #ffedd6;
}.boxcore .linewrap,
.boxcore .text-wrapper,
.boxcore .block-action,
.boxcore .main-btn,
.boxcore .page-btn,
.boxcore .primary-cta,
.boxcore .section-cta {
  color: #000000;
}.boxcore .block-title,
.boxcore .chapter-title,
.boxcore .header-text,
.boxcore .lead-h2,
.boxcore .main-heading,
.boxcore .page-h,
.boxcore .section-h,
.boxcore .section-heading,
.boxcore .topic-title,
.boxcore .holdbox {
  text-align: center;
}
.block {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.block .viewbox {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #383193 0, #ffffff 43%, #7670bc 100%);
}
.block .sectionwrap {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #383193 0, #ffffff 43%, #7670bc 100%);
}
.block .inset {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #383193 0, #ffffff 43%, #7670bc 100%);
}
.block .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .block .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .block .container {
    padding: 0 30px;
  }
}
.block .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}.block .tileunit .block-title,
.block .tileunit .chapter-title,
.block .tileunit .header-text,
.block .tileunit .lead-h2,
.block .tileunit .main-heading,
.block .tileunit .page-h,
.block .tileunit .section-h,
.block .tileunit .section-heading,
.block .tileunit .topic-title {
  margin-bottom: 40px;
}
.block .tileunit .text-wrapper .linewrap {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .block .tileunit .text-wrapper .linewrap {
    margin-bottom: 30px;
    width: 100%;
  }
}.block .block-title,
.block .chapter-title,
.block .header-text,
.block .lead-h2,
.block .main-heading,
.block .page-h,
.block .section-h,
.block .section-heading,
.block .topic-title {
  color: #ffffff;
}
.block .linewrap,
.block .text-wrapper {
  color: #000000;
  text-align: center;
}.block .block-title,
.block .chapter-title,
.block .header-text,
.block .lead-h2,
.block .main-heading,
.block .page-h,
.block .section-h,
.block .section-heading,
.block .topic-title,
.block .block-action,
.block .main-btn,
.block .page-btn,
.block .primary-cta,
.block .section-cta {
  text-align: center;
  color: #383193;
}
.formgrid {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.formgrid .tileunit {
  margin: 0 -30px;
}
.formgrid .tileunit .card {
  padding: 0 30px;
}
.formgrid .trackbox {
  margin-bottom: 16px;
  color: #877e72;
}
.formgrid .holdbox {
  margin-bottom: 16px;
}.formgrid .holdbox .block-title,
.formgrid .holdbox .chapter-title,
.formgrid .holdbox .header-text,
.formgrid .holdbox .lead-h2,
.formgrid .holdbox .main-heading,
.formgrid .holdbox .page-h,
.formgrid .holdbox .section-h,
.formgrid .holdbox .section-heading,
.formgrid .holdbox .topic-title {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(170deg, #383193 20%, #aaa7cf);
  margin-bottom: 0;
}
.formgrid .text-wrapper .linewrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .formgrid .text-wrapper .linewrap {
    width: 100%;
  }
}.formgrid .block-action,
.formgrid .main-btn,
.formgrid .page-btn,
.formgrid .primary-cta,
.formgrid .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .formgrid .stagebox {
    margin-top: 40px;
  }
}
.formgrid .stagebox img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .formgrid .stagebox img {
    height: 300px;
  }
}.formgrid .block-title,
.formgrid .chapter-title,
.formgrid .header-text,
.formgrid .lead-h2,
.formgrid .main-heading,
.formgrid .page-h,
.formgrid .section-h,
.formgrid .section-heading,
.formgrid .topic-title {
  color: #ffedd6;
}
.formgrid .linewrap {
  color: #ffedd6;
}.formgrid .linewrap,
.formgrid .text-wrapper,
.formgrid .block-action,
.formgrid .main-btn,
.formgrid .page-btn,
.formgrid .primary-cta,
.formgrid .section-cta {
  color: #000000;
}
.outer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.outer .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 124px 14%;
  background-color: #f8f8f8;
  padding: 124px 24px;
}
@media (max-width: 1640px) {
  .outer .card-wrapper {
    padding: 124px 5%;
  }
}
@media (max-width: 1200px) {
  .outer .card-wrapper {
    padding: 124px 24px;
  }
}
@media (max-width: 992px) {
  .outer .card-wrapper {
    padding: 24px 12px;
  }
}
@media (max-width: 992px) {
  .outer .card-wrapper {
    padding: 24px 12px;
  }
}
.outer .card-wrapper .tileunit {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .outer .card-wrapper .tileunit {
    margin-bottom: 48px;
  }
}
.outer .card-wrapper .tileunit .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .outer .card-wrapper .bodycore {
    margin-bottom: 12px;
  }
}
.outer .card-wrapper .bodycore .trackbox {
  margin-bottom: 12px;
}.outer .card-wrapper .bodycore .holdbox .block-title,
.outer .card-wrapper .bodycore .holdbox .chapter-title,
.outer .card-wrapper .bodycore .holdbox .header-text,
.outer .card-wrapper .bodycore .holdbox .lead-h2,
.outer .card-wrapper .bodycore .holdbox .main-heading,
.outer .card-wrapper .bodycore .holdbox .page-h,
.outer .card-wrapper .bodycore .holdbox .section-h,
.outer .card-wrapper .bodycore .holdbox .section-heading,
.outer .card-wrapper .bodycore .holdbox .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {.outer .card-wrapper .bodycore .holdbox .block-title,
.outer .card-wrapper .bodycore .holdbox .chapter-title,
.outer .card-wrapper .bodycore .holdbox .header-text,
.outer .card-wrapper .bodycore .holdbox .lead-h2,
.outer .card-wrapper .bodycore .holdbox .main-heading,
.outer .card-wrapper .bodycore .holdbox .page-h,
.outer .card-wrapper .bodycore .holdbox .section-h,
.outer .card-wrapper .bodycore .holdbox .section-heading,
.outer .card-wrapper .bodycore .holdbox .topic-title {
    width: 100%;
  }
}
.outer .card-wrapper .text-wrapper .linewrap {
  margin-bottom: 0;
}.outer .card-wrapper .text-wrapper .block-action,
.outer .card-wrapper .text-wrapper .main-btn,
.outer .card-wrapper .text-wrapper .page-btn,
.outer .card-wrapper .text-wrapper .primary-cta,
.outer .card-wrapper .text-wrapper .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.outer .card-wrapper .mainbox {
  margin: 0 -6px;
}
.outer .card-wrapper .mainbox .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .outer .card-wrapper .mainbox .item {
    margin-bottom: 12px;
  }
  .outer .card-wrapper .mainbox .item:last-child {
    margin-bottom: 0;
  }
}
.outer .card-wrapper .mainbox .item .item-wrapper {
  height: 100%;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #7670bc;
}
@media (max-width: 992px) {
  .outer .card-wrapper .mainbox .item .item-wrapper {
    padding: 24px 12px;
  }
}
.outer .card-wrapper .mainbox .item .item-wrapper .card-box .gridunitbox {
  margin-bottom: 24px;
}
.outer .card-wrapper .mainbox .item .item-wrapper .card-box .gridunitbox .depth-iconfont {
  display: inline-flex;
  font-size: 45px;
}
.outer .card-wrapper .mainbox .item .item-wrapper .card-box .item-title {
  margin-bottom: 0;
}
.outer .btn-wrapper {
  margin-top: -5%;
}
.outer .trackbox {
  color: #000000;
  text-align: center;
}.outer .block-title,
.outer .chapter-title,
.outer .header-text,
.outer .lead-h2,
.outer .main-heading,
.outer .page-h,
.outer .section-h,
.outer .section-heading,
.outer .topic-title {
  color: #f1ff91;
}
.outer .item-title {
  color: #ffffff;
  text-align: center;
}.outer .block-title,
.outer .chapter-title,
.outer .header-text,
.outer .lead-h2,
.outer .main-heading,
.outer .page-h,
.outer .section-h,
.outer .section-heading,
.outer .topic-title,
.outer .gridunitbox,
.outer .holdbox {
  text-align: center;
}.outer .block-title,
.outer .chapter-title,
.outer .header-text,
.outer .lead-h2,
.outer .main-heading,
.outer .page-h,
.outer .section-h,
.outer .section-heading,
.outer .topic-title,
.outer .holdbox {
  color: #383193;
}
.outer .item-title,
.outer .gridunitbox {
  color: #000000;
}
.stepwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.stepwrap .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.stepwrap .tileunit .block-action,
.stepwrap .tileunit .main-btn,
.stepwrap .tileunit .page-btn,
.stepwrap .tileunit .primary-cta,
.stepwrap .tileunit .section-cta {
  margin-bottom: 22px;
}
.stepwrap .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.stepwrap .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap:hover,
.stepwrap .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.stepwrap .tileunit .gridlayer {
  margin-bottom: 0;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title {
  color: #000000;
}
.stepwrap .linewrap,
.stepwrap .text-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .list,
.stepwrap .nav-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .gridlayer {
  color: #000000;
  text-align: center;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title,
.stepwrap .bodycore,
.stepwrap .block-action,
.stepwrap .main-btn,
.stepwrap .page-btn,
.stepwrap .primary-cta,
.stepwrap .section-cta {
  text-align: center;
}
.rowunit .main-menu {
  position: relative !important;
}
.rowunit .main-menu {
  position: absolute !important;
}
.rowunit .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .rowunit .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.rowunit .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rowunit .nav-link {
  position: relative;
}
.rowunit .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .rowunit .container {
    flex-wrap: nowrap;
  }
}
.rowunit .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.rowunit .gridunitbox:hover {
  color: #383193 !important;
}
.rowunit .nav-item:focus,
.rowunit .nav-link:focus {
  outline: none;
}
.rowunit .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.rowunit .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.rowunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rowunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rowunit .navbar .element img {
    height: 3rem !important;
  }
  .rowunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rowunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rowunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rowunit .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rowunit .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.rowunit .navbar-brand .box:hover,
.rowunit .navbar-brand .box:focus {
  color: #383193 !important;
}
.rowunit .navbar-brand .element a {
  outline: none;
}
.rowunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rowunit ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rowunit ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rowunit .navbar-buttons {
  text-align: center;
}
.rowunit .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.rowunit .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .rowunit .navbar-buttons .btn {
    width: auto !important;
  }
}
.rowunit button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.rowunit .main-menu {
  padding: 0 1rem;
}
.rowunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rowunit .navbar {
    height: 70px;
  }
  .rowunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rowunit .navbar-nav {
  margin: 0 auto;
}
.rowunit .nav-item {
  padding: 0;
  margin: 0;
}
.rowunit .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.rowunit .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.rowunit .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.rowunit .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rowunit .navbar {
    justify-content: flex-start !important;
  }
  .rowunit .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rowunit .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rowunit .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rowunit .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .rowunit .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.rowunit .mainfield {
  min-height: 110px;
}
.pinbox {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-image: url("images/shallow1.jpg");
}
.pinbox .row {
  margin: 0 -20px;
}
.pinbox .card {
  padding: 0 20px;
}
.pinbox .stagebox {
  height: 100%;
}
@media (max-width: 992px) {
  .pinbox .stagebox {
    margin-top: 20px;
  }
}
.pinbox .stagebox img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .pinbox .stagebox img {
    height: 350px;
  }
}.pinbox .block-action .btn::after,
.pinbox .main-btn .btn::after,
.pinbox .page-btn .btn::after,
.pinbox .primary-cta .btn::after,
.pinbox .section-cta .btn::after,
.pinbox .block-action .btn::before,
.pinbox .main-btn .btn::before,
.pinbox .page-btn .btn::before,
.pinbox .primary-cta .btn::before,
.pinbox .section-cta .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}.pinbox .block-action .btn:hover,
.pinbox .main-btn .btn:hover,
.pinbox .page-btn .btn:hover,
.pinbox .primary-cta .btn:hover,
.pinbox .section-cta .btn:hover,
.pinbox .block-action .btn:focus,
.pinbox .main-btn .btn:focus,
.pinbox .page-btn .btn:focus,
.pinbox .primary-cta .btn:focus,
.pinbox .section-cta .btn:focus {
  color: #ffffff !important;
}.pinbox .block-action .btn:hover::after,
.pinbox .main-btn .btn:hover::after,
.pinbox .page-btn .btn:hover::after,
.pinbox .primary-cta .btn:hover::after,
.pinbox .section-cta .btn:hover::after,
.pinbox .block-action .btn:focus::after,
.pinbox .main-btn .btn:focus::after,
.pinbox .page-btn .btn:focus::after,
.pinbox .primary-cta .btn:focus::after,
.pinbox .section-cta .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.pinbox .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #ffffff;
  padding: 80px;
  min-height: 800px;
}
@media (max-width: 1440px) {
  .pinbox .card-wrapper {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .pinbox .card-wrapper {
    padding: 20px;
    min-height: auto;
  }
}.pinbox .card-wrapper .bodycore .block-title,
.pinbox .card-wrapper .bodycore .chapter-title,
.pinbox .card-wrapper .bodycore .header-text,
.pinbox .card-wrapper .bodycore .lead-h2,
.pinbox .card-wrapper .bodycore .main-heading,
.pinbox .card-wrapper .bodycore .page-h,
.pinbox .card-wrapper .bodycore .section-h,
.pinbox .card-wrapper .bodycore .section-heading,
.pinbox .card-wrapper .bodycore .topic-title {
  display: inline-block;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #383193, #aaa7cf);
  margin-bottom: 40px;
}
@media (max-width: 992px) {.pinbox .card-wrapper .bodycore .block-title,
.pinbox .card-wrapper .bodycore .chapter-title,
.pinbox .card-wrapper .bodycore .header-text,
.pinbox .card-wrapper .bodycore .lead-h2,
.pinbox .card-wrapper .bodycore .main-heading,
.pinbox .card-wrapper .bodycore .page-h,
.pinbox .card-wrapper .bodycore .section-h,
.pinbox .card-wrapper .bodycore .section-heading,
.pinbox .card-wrapper .bodycore .topic-title {
    margin-bottom: 20px;
  }
}
.pinbox .card-wrapper .linewrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .pinbox .card-wrapper .linewrap {
    margin-bottom: 20px;
  }
}.pinbox .block-title,
.pinbox .chapter-title,
.pinbox .header-text,
.pinbox .lead-h2,
.pinbox .main-heading,
.pinbox .page-h,
.pinbox .section-h,
.pinbox .section-heading,
.pinbox .topic-title {
  color: #ffffff;
}
.pinbox .linewrap {
  color: #000000;
}.pinbox .block-title,
.pinbox .chapter-title,
.pinbox .header-text,
.pinbox .lead-h2,
.pinbox .main-heading,
.pinbox .page-h,
.pinbox .section-h,
.pinbox .section-heading,
.pinbox .topic-title,
.pinbox .block-action,
.pinbox .main-btn,
.pinbox .page-btn,
.pinbox .primary-cta,
.pinbox .section-cta,
.pinbox .bodycore {
  text-align: center;
  color: #383193;
}
.dockband {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.dockband .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .dockband .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .dockband .container {
    padding: 0 24px;
  }
}
.dockband .row {
  justify-content: center;
}
.dockband .tileunit {
  border-radius: 40px;
  background-color: #f8f8f8;
  padding: 64px;
}
@media (max-width: 992px) {
  .dockband .tileunit {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .dockband .tileunit {
    padding: 32px;
  }
}.dockband .tileunit .block-title,
.dockband .tileunit .chapter-title,
.dockband .tileunit .header-text,
.dockband .tileunit .lead-h2,
.dockband .tileunit .main-heading,
.dockband .tileunit .page-h,
.dockband .tileunit .section-h,
.dockband .tileunit .section-heading,
.dockband .tileunit .topic-title {
  margin-bottom: 0;
}
.dockband .tileunit .linewrap {
  margin: 16px 0 0;
}.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: #383193;
  text-align: center;
}
.dockband .linewrap {
  color: #000000;
  text-align: center;
}
.partbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.partbox .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .partbox .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .partbox .container {
    padding: 0 30px;
  }
}
.partbox .tileunit {
  display: flex;
  position: relative;
  padding-bottom: 180px;
  border-bottom: 1px solid #504aa2;
}
@media (max-width: 992px) {
  .partbox .tileunit {
    display: block;
  }
}
.partbox .tileunit .card {
  justify-content: center;
}
.partbox .tileunit .mainfield {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .partbox .tileunit .mainfield {
    width: 100%;
    padding: 40px 0 60px;
  }
}.partbox .tileunit .mainfield .block-title,
.partbox .tileunit .mainfield .chapter-title,
.partbox .tileunit .mainfield .header-text,
.partbox .tileunit .mainfield .lead-h2,
.partbox .tileunit .mainfield .main-heading,
.partbox .tileunit .mainfield .page-h,
.partbox .tileunit .mainfield .section-h,
.partbox .tileunit .mainfield .section-heading,
.partbox .tileunit .mainfield .topic-title {
  margin-bottom: 35px;
}
.partbox .tileunit .mainfield .linewrap {
  margin-bottom: 40px;
}
.partbox .tileunit .stagebox {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .partbox .tileunit .stagebox {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.partbox .tileunit .stagebox::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 6rem;
  width: 82px;
  height: 82px;
  border-radius: 100%;
  background-color: #7670bc;
  opacity: .9;
  z-index: 1;
}
.partbox .tileunit .stagebox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partbox .tileunit .stagebox .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #eaffe2;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .partbox .tileunit .stagebox .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.partbox .tileunit .stagebox .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .partbox .tileunit .stagebox .list .item-wrap {
    display: block;
  }
}
.partbox .tileunit .stagebox .list .item-wrap:last-child {
  margin-bottom: 0;
}
.partbox .tileunit .stagebox .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
@media (max-width: 992px) {
  .partbox .tileunit .stagebox .list .item-wrap::before {
    top: 10px;
  }
}.partbox .block-title,
.partbox .chapter-title,
.partbox .header-text,
.partbox .lead-h2,
.partbox .main-heading,
.partbox .page-h,
.partbox .section-h,
.partbox .section-heading,
.partbox .topic-title {
  color: #144031;
}
.partbox .linewrap {
  color: #000000;
}
.partbox .list {
  color: #144031;
}.partbox .block-title,
.partbox .chapter-title,
.partbox .header-text,
.partbox .lead-h2,
.partbox .main-heading,
.partbox .page-h,
.partbox .section-h,
.partbox .section-heading,
.partbox .topic-title,
.partbox .block-action,
.partbox .main-btn,
.partbox .page-btn,
.partbox .primary-cta,
.partbox .section-cta {
  color: #383193;
}
.linedockbox {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .linedockbox .col-padding {
    padding-right: 4rem;
  }
}
.linedockbox .coverwrap {
  background: #504aa2;
  padding: 2rem;
  margin-left: 0;
  margin-right: auto;
  border-radius: 3rem;
  margin-bottom: 2rem;
  border-bottom-left-radius: 0;
  color: #ffffff;
}
@media (min-width: 767px) {
  .linedockbox .coverwrap {
    max-width: 80%;
  }
}
.linedockbox .nodewrap {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 3rem;
  border-bottom-right-radius: 0;
  margin-right: 0;
  margin-bottom: 2rem;
  margin-left: auto;
}
@media (min-width: 767px) {
  .linedockbox .nodewrap {
    max-width: 80%;
  }
}.linedockbox .block-title,
.linedockbox .chapter-title,
.linedockbox .header-text,
.linedockbox .lead-h2,
.linedockbox .main-heading,
.linedockbox .page-h,
.linedockbox .section-h,
.linedockbox .section-heading,
.linedockbox .topic-title {
  color: #383193;
}
.linedockbox .linewrap {
  color: #000000;
}
.stepwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.stepwrap .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.stepwrap .tileunit .block-action,
.stepwrap .tileunit .main-btn,
.stepwrap .tileunit .page-btn,
.stepwrap .tileunit .primary-cta,
.stepwrap .tileunit .section-cta {
  margin-bottom: 22px;
}
.stepwrap .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.stepwrap .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap:hover,
.stepwrap .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.stepwrap .tileunit .gridlayer {
  margin-bottom: 0;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title {
  color: #000000;
}
.stepwrap .linewrap,
.stepwrap .text-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .list,
.stepwrap .nav-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .gridlayer {
  color: #000000;
  text-align: center;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title,
.stepwrap .bodycore,
.stepwrap .block-action,
.stepwrap .main-btn,
.stepwrap .page-btn,
.stepwrap .primary-cta,
.stepwrap .section-cta {
  text-align: center;
}
.rowunit .main-menu {
  position: relative !important;
}
.rowunit .main-menu {
  position: absolute !important;
}
.rowunit .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .rowunit .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.rowunit .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rowunit .nav-link {
  position: relative;
}
.rowunit .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .rowunit .container {
    flex-wrap: nowrap;
  }
}
.rowunit .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.rowunit .gridunitbox:hover {
  color: #383193 !important;
}
.rowunit .nav-item:focus,
.rowunit .nav-link:focus {
  outline: none;
}
.rowunit .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.rowunit .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.rowunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rowunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rowunit .navbar .element img {
    height: 3rem !important;
  }
  .rowunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rowunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rowunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rowunit .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rowunit .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.rowunit .navbar-brand .box:hover,
.rowunit .navbar-brand .box:focus {
  color: #383193 !important;
}
.rowunit .navbar-brand .element a {
  outline: none;
}
.rowunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rowunit ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rowunit ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rowunit .navbar-buttons {
  text-align: center;
}
.rowunit .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.rowunit .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .rowunit .navbar-buttons .btn {
    width: auto !important;
  }
}
.rowunit button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.rowunit .main-menu {
  padding: 0 1rem;
}
.rowunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rowunit .navbar {
    height: 70px;
  }
  .rowunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rowunit .navbar-nav {
  margin: 0 auto;
}
.rowunit .nav-item {
  padding: 0;
  margin: 0;
}
.rowunit .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.rowunit .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.rowunit .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.rowunit .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rowunit .navbar {
    justify-content: flex-start !important;
  }
  .rowunit .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rowunit .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rowunit .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rowunit .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .rowunit .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.rowunit .mainfield {
  min-height: 110px;
}
.pathwrap {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("images/warm1.jpg");
}
.pathwrap .card-wrapper {
  padding: 60px;
  background-color: #ffffff;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 15px -8px #aaa7cf;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .pathwrap .card-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .pathwrap .card-wrapper {
    padding: 24px;
  }
}.pathwrap .card-wrapper .bodycore .block-title,
.pathwrap .card-wrapper .bodycore .chapter-title,
.pathwrap .card-wrapper .bodycore .header-text,
.pathwrap .card-wrapper .bodycore .lead-h2,
.pathwrap .card-wrapper .bodycore .main-heading,
.pathwrap .card-wrapper .bodycore .page-h,
.pathwrap .card-wrapper .bodycore .section-h,
.pathwrap .card-wrapper .bodycore .section-heading,
.pathwrap .card-wrapper .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #f5f5f5, #504aa2 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.pathwrap .card-wrapper .bodycore .block-title,
.pathwrap .card-wrapper .bodycore .chapter-title,
.pathwrap .card-wrapper .bodycore .header-text,
.pathwrap .card-wrapper .bodycore .lead-h2,
.pathwrap .card-wrapper .bodycore .main-heading,
.pathwrap .card-wrapper .bodycore .page-h,
.pathwrap .card-wrapper .bodycore .section-h,
.pathwrap .card-wrapper .bodycore .section-heading,
.pathwrap .card-wrapper .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #f5f5f5, #504aa2 40%);
  }
}
.pathwrap .card-wrapper .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .pathwrap .card-wrapper .text-wrapper .linewrap {
    width: 100%;
  }
}.pathwrap .card-wrapper .block-action,
.pathwrap .card-wrapper .main-btn,
.pathwrap .card-wrapper .page-btn,
.pathwrap .card-wrapper .primary-cta,
.pathwrap .card-wrapper .section-cta {
  margin-top: 22px;
}
.pathwrap .trackbox {
  color: #000000;
  text-align: center;
}.pathwrap .block-title,
.pathwrap .chapter-title,
.pathwrap .header-text,
.pathwrap .lead-h2,
.pathwrap .main-heading,
.pathwrap .page-h,
.pathwrap .section-h,
.pathwrap .section-heading,
.pathwrap .topic-title {
  color: #000000;
}
.pathwrap .linewrap,
.pathwrap .text-wrapper {
  color: #000000;
  text-align: center;
}.pathwrap .block-title,
.pathwrap .chapter-title,
.pathwrap .header-text,
.pathwrap .lead-h2,
.pathwrap .main-heading,
.pathwrap .page-h,
.pathwrap .section-h,
.pathwrap .section-heading,
.pathwrap .topic-title,
.pathwrap .bodycore,
.pathwrap .block-action,
.pathwrap .main-btn,
.pathwrap .page-btn,
.pathwrap .primary-cta,
.pathwrap .section-cta {
  text-align: center;
}
.section {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.section .tileunit {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .section .tileunit {
    margin-bottom: 32px;
  }
}.section .tileunit .bodycore .block-title,
.section .tileunit .bodycore .chapter-title,
.section .tileunit .bodycore .header-text,
.section .tileunit .bodycore .lead-h2,
.section .tileunit .bodycore .main-heading,
.section .tileunit .bodycore .page-h,
.section .tileunit .bodycore .section-h,
.section .tileunit .bodycore .section-heading,
.section .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.section .tileunit .bodycore .block-title,
.section .tileunit .bodycore .chapter-title,
.section .tileunit .bodycore .header-text,
.section .tileunit .bodycore .lead-h2,
.section .tileunit .bodycore .main-heading,
.section .tileunit .bodycore .page-h,
.section .tileunit .bodycore .section-h,
.section .tileunit .bodycore .section-heading,
.section .tileunit .bodycore .topic-title {
    width: 100%;
  }
}
.section .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .section .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}
.section .mainbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -12px;
}
.section .mainbox .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .section .mainbox .item {
    margin-bottom: 18px;
  }
}
.section .mainbox .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 15px -8px #aaa7cf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .section .mainbox .item .item-wrapper {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .section .mainbox .item .item-wrapper .item-img {
    margin-bottom: 24px;
  }
}
.section .mainbox .item .item-wrapper .item-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #aaa7cf;
}
@media (max-width: 992px) {
  .section .mainbox .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.section .mainbox .item .item-wrapper .item-content {
  padding-top: 20px;
}
@media (max-width: 992px) {
  .section .mainbox .item .item-wrapper .item-content {
    padding-top: 0;
  }
}
.section .mainbox .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.section .mainbox .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}.section .mainbox .item .item-wrapper .item-content .block-action,
.section .mainbox .item .item-wrapper .item-content .main-btn,
.section .mainbox .item .item-wrapper .item-content .page-btn,
.section .mainbox .item .item-wrapper .item-content .primary-cta,
.section .mainbox .item .item-wrapper .item-content .section-cta {
  margin-top: 10px;
}.section .mainbox .item .item-wrapper .item-content .block-action .btn,
.section .mainbox .item .item-wrapper .item-content .main-btn .btn,
.section .mainbox .item .item-wrapper .item-content .page-btn .btn,
.section .mainbox .item .item-wrapper .item-content .primary-cta .btn,
.section .mainbox .item .item-wrapper .item-content .section-cta .btn {
  margin-bottom: 0;
}
.section .mainbox .nestedbox .item-wrapper {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 24px;
}
@media (max-width: 992px) {
  .section .mainbox .nestedbox .item-wrapper {
    display: block;
  }
}
.section .card_1 {
  width: 60%;
}
@media (max-width: 992px) {
  .section .card_1 {
    width: 100%;
  }
}
.section .card_2 {
  width: 40%;
}
@media (max-width: 992px) {
  .section .card_2 {
    width: 100%;
  }
}
.section .trackbox {
  color: #000000;
  text-align: center;
}.section .block-title,
.section .chapter-title,
.section .header-text,
.section .lead-h2,
.section .main-heading,
.section .page-h,
.section .section-h,
.section .section-heading,
.section .topic-title,
.section .bodycore {
  color: #000000;
}
.section .linewrap,
.section .text-wrapper {
  color: #515151;
  text-align: center;
}
.section .item-title {
  color: #000000;
}
.section .item-text {
  color: #000000;
}.section .block-title,
.section .chapter-title,
.section .header-text,
.section .lead-h2,
.section .main-heading,
.section .page-h,
.section .section-h,
.section .section-heading,
.section .topic-title,
.section .bodycore {
  text-align: center;
}
.section .item-title {
  color: #504aa2;
}
.nodecol {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.nodecol .tileunit {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .nodecol .tileunit {
    margin-bottom: 32px;
  }
}.nodecol .tileunit .bodycore .block-title,
.nodecol .tileunit .bodycore .chapter-title,
.nodecol .tileunit .bodycore .header-text,
.nodecol .tileunit .bodycore .lead-h2,
.nodecol .tileunit .bodycore .main-heading,
.nodecol .tileunit .bodycore .page-h,
.nodecol .tileunit .bodycore .section-h,
.nodecol .tileunit .bodycore .section-heading,
.nodecol .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.nodecol .tileunit .bodycore .block-title,
.nodecol .tileunit .bodycore .chapter-title,
.nodecol .tileunit .bodycore .header-text,
.nodecol .tileunit .bodycore .lead-h2,
.nodecol .tileunit .bodycore .main-heading,
.nodecol .tileunit .bodycore .page-h,
.nodecol .tileunit .bodycore .section-h,
.nodecol .tileunit .bodycore .section-heading,
.nodecol .tileunit .bodycore .topic-title {
    width: 100%;
  }
}
.nodecol .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .nodecol .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}
.nodecol .mainbox {
  margin: 0 -12px;
  justify-content: center;
}
.nodecol .mainbox .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .nodecol .mainbox .item {
    margin-bottom: 18px;
  }
}
.nodecol .mainbox .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 15px -8px #aaa7cf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .nodecol .mainbox .item .item-wrapper {
    padding: 24px;
  }
}
.nodecol .mainbox .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.nodecol .mainbox .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}.nodecol .mainbox .item .item-wrapper .item-content .block-action,
.nodecol .mainbox .item .item-wrapper .item-content .main-btn,
.nodecol .mainbox .item .item-wrapper .item-content .page-btn,
.nodecol .mainbox .item .item-wrapper .item-content .primary-cta,
.nodecol .mainbox .item .item-wrapper .item-content .section-cta {
  margin-top: 10px;
}.nodecol .mainbox .item .item-wrapper .item-content .block-action .btn,
.nodecol .mainbox .item .item-wrapper .item-content .main-btn .btn,
.nodecol .mainbox .item .item-wrapper .item-content .page-btn .btn,
.nodecol .mainbox .item .item-wrapper .item-content .primary-cta .btn,
.nodecol .mainbox .item .item-wrapper .item-content .section-cta .btn {
  margin-bottom: 0;
}
.nodecol .trackbox {
  color: #000000;
  text-align: center;
}.nodecol .block-title,
.nodecol .chapter-title,
.nodecol .header-text,
.nodecol .lead-h2,
.nodecol .main-heading,
.nodecol .page-h,
.nodecol .section-h,
.nodecol .section-heading,
.nodecol .topic-title,
.nodecol .bodycore {
  color: #000000;
  text-align: center;
}
.nodecol .linewrap,
.nodecol .text-wrapper {
  color: #515151;
  text-align: center;
}
.nodecol .item-title {
  color: #000000;
}
.nodecol .item-text {
  color: #000000;
}.nodecol .item-title,
.nodecol .block-action,
.nodecol .main-btn,
.nodecol .page-btn,
.nodecol .primary-cta,
.nodecol .section-cta {
  color: #504aa2;
}
.stub {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.stub .tileunit {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .stub .tileunit {
    margin-bottom: 32px;
  }
}.stub .tileunit .bodycore .block-title,
.stub .tileunit .bodycore .chapter-title,
.stub .tileunit .bodycore .header-text,
.stub .tileunit .bodycore .lead-h2,
.stub .tileunit .bodycore .main-heading,
.stub .tileunit .bodycore .page-h,
.stub .tileunit .bodycore .section-h,
.stub .tileunit .bodycore .section-heading,
.stub .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.stub .tileunit .bodycore .block-title,
.stub .tileunit .bodycore .chapter-title,
.stub .tileunit .bodycore .header-text,
.stub .tileunit .bodycore .lead-h2,
.stub .tileunit .bodycore .main-heading,
.stub .tileunit .bodycore .page-h,
.stub .tileunit .bodycore .section-h,
.stub .tileunit .bodycore .section-heading,
.stub .tileunit .bodycore .topic-title {
    width: 100%;
  }
}
.stub .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .stub .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}
.stub .mainbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -12px;
}
.stub .mainbox .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .stub .mainbox .item {
    margin-bottom: 18px;
  }
}
.stub .mainbox .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 15px -8px #aaa7cf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .stub .mainbox .item .item-wrapper {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .stub .mainbox .item .item-wrapper .item-img {
    margin-bottom: 24px;
  }
}
.stub .mainbox .item .item-wrapper .item-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #aaa7cf;
}
@media (max-width: 992px) {
  .stub .mainbox .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.stub .mainbox .item .item-wrapper .item-content {
  padding-top: 20px;
}
@media (max-width: 992px) {
  .stub .mainbox .item .item-wrapper .item-content {
    padding-top: 0;
  }
}
.stub .mainbox .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.stub .mainbox .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}.stub .mainbox .item .item-wrapper .item-content .block-action,
.stub .mainbox .item .item-wrapper .item-content .main-btn,
.stub .mainbox .item .item-wrapper .item-content .page-btn,
.stub .mainbox .item .item-wrapper .item-content .primary-cta,
.stub .mainbox .item .item-wrapper .item-content .section-cta {
  margin-top: 10px;
}.stub .mainbox .item .item-wrapper .item-content .block-action .btn,
.stub .mainbox .item .item-wrapper .item-content .main-btn .btn,
.stub .mainbox .item .item-wrapper .item-content .page-btn .btn,
.stub .mainbox .item .item-wrapper .item-content .primary-cta .btn,
.stub .mainbox .item .item-wrapper .item-content .section-cta .btn {
  margin-bottom: 0;
}
.stub .mainbox .nestedbox .item-wrapper {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 24px;
}
@media (max-width: 992px) {
  .stub .mainbox .nestedbox .item-wrapper {
    display: block;
  }
}
.stub .card_1 {
  width: 60%;
}
@media (max-width: 992px) {
  .stub .card_1 {
    width: 100%;
  }
}
.stub .card_2 {
  width: 40%;
}
@media (max-width: 992px) {
  .stub .card_2 {
    width: 100%;
  }
}
.stub .trackbox {
  color: #000000;
  text-align: center;
}.stub .block-title,
.stub .chapter-title,
.stub .header-text,
.stub .lead-h2,
.stub .main-heading,
.stub .page-h,
.stub .section-h,
.stub .section-heading,
.stub .topic-title,
.stub .bodycore {
  color: #000000;
}
.stub .linewrap,
.stub .text-wrapper {
  color: #515151;
  text-align: center;
}
.stub .item-title {
  color: #000000;
}
.stub .item-text {
  color: #000000;
}.stub .block-title,
.stub .chapter-title,
.stub .header-text,
.stub .lead-h2,
.stub .main-heading,
.stub .page-h,
.stub .section-h,
.stub .section-heading,
.stub .topic-title,
.stub .bodycore {
  text-align: center;
}
.stub .item-title {
  color: #504aa2;
}
.stepwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.stepwrap .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.stepwrap .tileunit .block-action,
.stepwrap .tileunit .main-btn,
.stepwrap .tileunit .page-btn,
.stepwrap .tileunit .primary-cta,
.stepwrap .tileunit .section-cta {
  margin-bottom: 22px;
}
.stepwrap .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.stepwrap .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap:hover,
.stepwrap .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.stepwrap .tileunit .gridlayer {
  margin-bottom: 0;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title {
  color: #000000;
}
.stepwrap .linewrap,
.stepwrap .text-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .list,
.stepwrap .nav-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .gridlayer {
  color: #000000;
  text-align: center;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title,
.stepwrap .bodycore,
.stepwrap .block-action,
.stepwrap .main-btn,
.stepwrap .page-btn,
.stepwrap .primary-cta,
.stepwrap .section-cta {
  text-align: center;
}
.rowunit .main-menu {
  position: relative !important;
}
.rowunit .main-menu {
  position: absolute !important;
}
.rowunit .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .rowunit .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.rowunit .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rowunit .nav-link {
  position: relative;
}
.rowunit .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .rowunit .container {
    flex-wrap: nowrap;
  }
}
.rowunit .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.rowunit .gridunitbox:hover {
  color: #383193 !important;
}
.rowunit .nav-item:focus,
.rowunit .nav-link:focus {
  outline: none;
}
.rowunit .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.rowunit .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.rowunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rowunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rowunit .navbar .element img {
    height: 3rem !important;
  }
  .rowunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rowunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rowunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rowunit .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rowunit .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.rowunit .navbar-brand .box:hover,
.rowunit .navbar-brand .box:focus {
  color: #383193 !important;
}
.rowunit .navbar-brand .element a {
  outline: none;
}
.rowunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rowunit ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rowunit ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rowunit .navbar-buttons {
  text-align: center;
}
.rowunit .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.rowunit .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .rowunit .navbar-buttons .btn {
    width: auto !important;
  }
}
.rowunit button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.rowunit .main-menu {
  padding: 0 1rem;
}
.rowunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rowunit .navbar {
    height: 70px;
  }
  .rowunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rowunit .navbar-nav {
  margin: 0 auto;
}
.rowunit .nav-item {
  padding: 0;
  margin: 0;
}
.rowunit .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.rowunit .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.rowunit .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.rowunit .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rowunit .navbar {
    justify-content: flex-start !important;
  }
  .rowunit .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rowunit .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rowunit .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rowunit .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .rowunit .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.rowunit .mainfield {
  min-height: 110px;
}
.view {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("images/dry2.jpg");
}
.view .svg-container {
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
  height: 300px;
}
.view svg {
  position: absolute;
  top: 50px;
  width: 1700px;
  right: -80px;
  transform: scaleX(1) scaleY(1.3) rotate(0deg);
  animation: 1.5s ease-in-out infinite alternate svg;
}
.view svg path {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .view svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .view svg {
    width: 800px;
  }
}
@keyframes svg {
  from {
    transform: scaleX(1.2) scaleY(1.35) rotate(-1deg);
  }
  to {
    transform: scaleX(1) scaleY(1.3) rotate(0deg);
  }
}.view .block-title,
.view .chapter-title,
.view .header-text,
.view .lead-h2,
.view .main-heading,
.view .page-h,
.view .section-h,
.view .section-heading,
.view .topic-title {
  color: #504aa2;
  text-align: center;
}
@media (min-width: 1400px) {
  .view .col-12 {
    padding: 0 2rem;
  }
  .view .row {
    margin: 0 -2rem;
  }
}.view .linewrap,
.view .block-action,
.view .main-btn,
.view .page-btn,
.view .primary-cta,
.view .section-cta {
  color: #000000;
}
.tilegrid {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.tilegrid .tileunit {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .tilegrid .tileunit {
    margin-bottom: 32px;
  }
}.tilegrid .tileunit .bodycore .block-title,
.tilegrid .tileunit .bodycore .chapter-title,
.tilegrid .tileunit .bodycore .header-text,
.tilegrid .tileunit .bodycore .lead-h2,
.tilegrid .tileunit .bodycore .main-heading,
.tilegrid .tileunit .bodycore .page-h,
.tilegrid .tileunit .bodycore .section-h,
.tilegrid .tileunit .bodycore .section-heading,
.tilegrid .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.tilegrid .tileunit .bodycore .block-title,
.tilegrid .tileunit .bodycore .chapter-title,
.tilegrid .tileunit .bodycore .header-text,
.tilegrid .tileunit .bodycore .lead-h2,
.tilegrid .tileunit .bodycore .main-heading,
.tilegrid .tileunit .bodycore .page-h,
.tilegrid .tileunit .bodycore .section-h,
.tilegrid .tileunit .bodycore .section-heading,
.tilegrid .tileunit .bodycore .topic-title {
    width: 100%;
  }
}
.tilegrid .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tilegrid .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}
.tilegrid .mainbox {
  margin: 0 -12px;
  justify-content: center;
}
.tilegrid .mainbox .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .tilegrid .mainbox .item {
    margin-bottom: 18px;
  }
}
.tilegrid .mainbox .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 15px -8px #aaa7cf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .tilegrid .mainbox .item .item-wrapper {
    padding: 24px;
  }
}
.tilegrid .mainbox .item .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .tilegrid .mainbox .item .item-wrapper .item-img {
    margin-bottom: 24px;
  }
}
.tilegrid .mainbox .item .item-wrapper .item-img img {
  display: inline-block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 100% !important;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 20px -8px #aaa7cf;
}
.tilegrid .mainbox .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.tilegrid .mainbox .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}.tilegrid .mainbox .item .item-wrapper .item-content .block-action,
.tilegrid .mainbox .item .item-wrapper .item-content .main-btn,
.tilegrid .mainbox .item .item-wrapper .item-content .page-btn,
.tilegrid .mainbox .item .item-wrapper .item-content .primary-cta,
.tilegrid .mainbox .item .item-wrapper .item-content .section-cta {
  margin-top: 10px;
}.tilegrid .mainbox .item .item-wrapper .item-content .block-action .btn,
.tilegrid .mainbox .item .item-wrapper .item-content .main-btn .btn,
.tilegrid .mainbox .item .item-wrapper .item-content .page-btn .btn,
.tilegrid .mainbox .item .item-wrapper .item-content .primary-cta .btn,
.tilegrid .mainbox .item .item-wrapper .item-content .section-cta .btn {
  margin-bottom: 0;
}
.tilegrid .trackbox {
  color: #000000;
  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 .bodycore {
  color: #000000;
  text-align: center;
}
.tilegrid .linewrap,
.tilegrid .text-wrapper {
  color: #515151;
  text-align: center;
}
.tilegrid .item-title {
  color: #000000;
}
.tilegrid .item-text {
  color: #000000;
}.tilegrid .item-title,
.tilegrid .block-action,
.tilegrid .main-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-cta {
  color: #504aa2;
}
.neutralbox {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.neutralbox .tileunit {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .neutralbox .tileunit {
    margin-bottom: 32px;
  }
}.neutralbox .tileunit .bodycore .block-title,
.neutralbox .tileunit .bodycore .chapter-title,
.neutralbox .tileunit .bodycore .header-text,
.neutralbox .tileunit .bodycore .lead-h2,
.neutralbox .tileunit .bodycore .main-heading,
.neutralbox .tileunit .bodycore .page-h,
.neutralbox .tileunit .bodycore .section-h,
.neutralbox .tileunit .bodycore .section-heading,
.neutralbox .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.neutralbox .tileunit .bodycore .block-title,
.neutralbox .tileunit .bodycore .chapter-title,
.neutralbox .tileunit .bodycore .header-text,
.neutralbox .tileunit .bodycore .lead-h2,
.neutralbox .tileunit .bodycore .main-heading,
.neutralbox .tileunit .bodycore .page-h,
.neutralbox .tileunit .bodycore .section-h,
.neutralbox .tileunit .bodycore .section-heading,
.neutralbox .tileunit .bodycore .topic-title {
    width: 100%;
  }
}
.neutralbox .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .neutralbox .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}
.neutralbox .mainbox {
  margin: 0 -12px;
  justify-content: center;
}
.neutralbox .mainbox .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .neutralbox .mainbox .item {
    margin-bottom: 18px;
  }
}
.neutralbox .mainbox .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 15px -8px #aaa7cf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .neutralbox .mainbox .item .item-wrapper {
    padding: 24px;
  }
}
.neutralbox .mainbox .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.neutralbox .mainbox .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}.neutralbox .mainbox .item .item-wrapper .item-content .block-action,
.neutralbox .mainbox .item .item-wrapper .item-content .main-btn,
.neutralbox .mainbox .item .item-wrapper .item-content .page-btn,
.neutralbox .mainbox .item .item-wrapper .item-content .primary-cta,
.neutralbox .mainbox .item .item-wrapper .item-content .section-cta {
  margin-top: 10px;
}.neutralbox .mainbox .item .item-wrapper .item-content .block-action .btn,
.neutralbox .mainbox .item .item-wrapper .item-content .main-btn .btn,
.neutralbox .mainbox .item .item-wrapper .item-content .page-btn .btn,
.neutralbox .mainbox .item .item-wrapper .item-content .primary-cta .btn,
.neutralbox .mainbox .item .item-wrapper .item-content .section-cta .btn {
  margin-bottom: 0;
}
.neutralbox .trackbox {
  color: #000000;
  text-align: center;
}.neutralbox .block-title,
.neutralbox .chapter-title,
.neutralbox .header-text,
.neutralbox .lead-h2,
.neutralbox .main-heading,
.neutralbox .page-h,
.neutralbox .section-h,
.neutralbox .section-heading,
.neutralbox .topic-title,
.neutralbox .bodycore {
  color: #000000;
  text-align: center;
}
.neutralbox .linewrap,
.neutralbox .text-wrapper {
  color: #515151;
  text-align: center;
}
.neutralbox .item-title {
  color: #000000;
}
.neutralbox .item-text {
  color: #000000;
}.neutralbox .item-title,
.neutralbox .block-action,
.neutralbox .main-btn,
.neutralbox .page-btn,
.neutralbox .primary-cta,
.neutralbox .section-cta {
  color: #504aa2;
}
.slot {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.slot .tileunit {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .slot .tileunit {
    margin-bottom: 32px;
  }
}.slot .tileunit .bodycore .block-title,
.slot .tileunit .bodycore .chapter-title,
.slot .tileunit .bodycore .header-text,
.slot .tileunit .bodycore .lead-h2,
.slot .tileunit .bodycore .main-heading,
.slot .tileunit .bodycore .page-h,
.slot .tileunit .bodycore .section-h,
.slot .tileunit .bodycore .section-heading,
.slot .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.slot .tileunit .bodycore .block-title,
.slot .tileunit .bodycore .chapter-title,
.slot .tileunit .bodycore .header-text,
.slot .tileunit .bodycore .lead-h2,
.slot .tileunit .bodycore .main-heading,
.slot .tileunit .bodycore .page-h,
.slot .tileunit .bodycore .section-h,
.slot .tileunit .bodycore .section-heading,
.slot .tileunit .bodycore .topic-title {
    width: 100%;
  }
}
.slot .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .slot .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}
.slot .mainbox {
  margin: 0 -12px;
  justify-content: center;
}
.slot .mainbox .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .slot .mainbox .item {
    margin-bottom: 18px;
  }
}
.slot .mainbox .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 15px -8px #aaa7cf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .slot .mainbox .item .item-wrapper {
    padding: 24px;
  }
}
.slot .mainbox .item .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .slot .mainbox .item .item-wrapper .item-img {
    margin-bottom: 24px;
  }
}
.slot .mainbox .item .item-wrapper .item-img img {
  display: inline-block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 100% !important;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 20px -8px #aaa7cf;
}
.slot .mainbox .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.slot .mainbox .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}.slot .mainbox .item .item-wrapper .item-content .block-action,
.slot .mainbox .item .item-wrapper .item-content .main-btn,
.slot .mainbox .item .item-wrapper .item-content .page-btn,
.slot .mainbox .item .item-wrapper .item-content .primary-cta,
.slot .mainbox .item .item-wrapper .item-content .section-cta {
  margin-top: 10px;
}.slot .mainbox .item .item-wrapper .item-content .block-action .btn,
.slot .mainbox .item .item-wrapper .item-content .main-btn .btn,
.slot .mainbox .item .item-wrapper .item-content .page-btn .btn,
.slot .mainbox .item .item-wrapper .item-content .primary-cta .btn,
.slot .mainbox .item .item-wrapper .item-content .section-cta .btn {
  margin-bottom: 0;
}
.slot .trackbox {
  color: #000000;
  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 .bodycore {
  color: #000000;
  text-align: center;
}
.slot .linewrap,
.slot .text-wrapper {
  color: #515151;
  text-align: center;
}
.slot .item-title {
  color: #000000;
}
.slot .item-text {
  color: #000000;
}.slot .item-title,
.slot .block-action,
.slot .main-btn,
.slot .page-btn,
.slot .primary-cta,
.slot .section-cta {
  color: #504aa2;
}
.boxsegment {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.boxsegment .tileunit {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .boxsegment .tileunit {
    margin-bottom: 32px;
  }
}.boxsegment .tileunit .bodycore .block-title,
.boxsegment .tileunit .bodycore .chapter-title,
.boxsegment .tileunit .bodycore .header-text,
.boxsegment .tileunit .bodycore .lead-h2,
.boxsegment .tileunit .bodycore .main-heading,
.boxsegment .tileunit .bodycore .page-h,
.boxsegment .tileunit .bodycore .section-h,
.boxsegment .tileunit .bodycore .section-heading,
.boxsegment .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.boxsegment .tileunit .bodycore .block-title,
.boxsegment .tileunit .bodycore .chapter-title,
.boxsegment .tileunit .bodycore .header-text,
.boxsegment .tileunit .bodycore .lead-h2,
.boxsegment .tileunit .bodycore .main-heading,
.boxsegment .tileunit .bodycore .page-h,
.boxsegment .tileunit .bodycore .section-h,
.boxsegment .tileunit .bodycore .section-heading,
.boxsegment .tileunit .bodycore .topic-title {
    width: 100%;
  }
}
.boxsegment .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .boxsegment .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}
.boxsegment .mainbox {
  margin: 0 -12px;
  justify-content: center;
}
.boxsegment .mainbox .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .boxsegment .mainbox .item {
    margin-bottom: 18px;
  }
}
.boxsegment .mainbox .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #7670bc;
  box-shadow: 0 8px 15px -8px #aaa7cf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .boxsegment .mainbox .item .item-wrapper {
    padding: 24px;
  }
}
.boxsegment .mainbox .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.boxsegment .mainbox .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}.boxsegment .mainbox .item .item-wrapper .item-content .block-action,
.boxsegment .mainbox .item .item-wrapper .item-content .main-btn,
.boxsegment .mainbox .item .item-wrapper .item-content .page-btn,
.boxsegment .mainbox .item .item-wrapper .item-content .primary-cta,
.boxsegment .mainbox .item .item-wrapper .item-content .section-cta {
  margin-top: 10px;
}.boxsegment .mainbox .item .item-wrapper .item-content .block-action .btn,
.boxsegment .mainbox .item .item-wrapper .item-content .main-btn .btn,
.boxsegment .mainbox .item .item-wrapper .item-content .page-btn .btn,
.boxsegment .mainbox .item .item-wrapper .item-content .primary-cta .btn,
.boxsegment .mainbox .item .item-wrapper .item-content .section-cta .btn {
  margin-bottom: 0;
}
.boxsegment .trackbox {
  color: #000000;
  text-align: center;
}.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 .bodycore {
  color: #000000;
  text-align: center;
}
.boxsegment .linewrap,
.boxsegment .text-wrapper {
  color: #515151;
  text-align: center;
}
.boxsegment .item-title {
  color: #000000;
}
.boxsegment .item-text {
  color: #000000;
}.boxsegment .item-title,
.boxsegment .block-action,
.boxsegment .main-btn,
.boxsegment .page-btn,
.boxsegment .primary-cta,
.boxsegment .section-cta {
  color: #504aa2;
}
.stepwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.stepwrap .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.stepwrap .tileunit .block-action,
.stepwrap .tileunit .main-btn,
.stepwrap .tileunit .page-btn,
.stepwrap .tileunit .primary-cta,
.stepwrap .tileunit .section-cta {
  margin-bottom: 22px;
}
.stepwrap .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.stepwrap .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap:hover,
.stepwrap .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.stepwrap .tileunit .gridlayer {
  margin-bottom: 0;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title {
  color: #000000;
}
.stepwrap .linewrap,
.stepwrap .text-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .list,
.stepwrap .nav-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .gridlayer {
  color: #000000;
  text-align: center;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title,
.stepwrap .bodycore,
.stepwrap .block-action,
.stepwrap .main-btn,
.stepwrap .page-btn,
.stepwrap .primary-cta,
.stepwrap .section-cta {
  text-align: center;
}
.rowunit .main-menu {
  position: relative !important;
}
.rowunit .main-menu {
  position: absolute !important;
}
.rowunit .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .rowunit .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.rowunit .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rowunit .nav-link {
  position: relative;
}
.rowunit .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .rowunit .container {
    flex-wrap: nowrap;
  }
}
.rowunit .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.rowunit .gridunitbox:hover {
  color: #383193 !important;
}
.rowunit .nav-item:focus,
.rowunit .nav-link:focus {
  outline: none;
}
.rowunit .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.rowunit .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.rowunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rowunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rowunit .navbar .element img {
    height: 3rem !important;
  }
  .rowunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rowunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rowunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rowunit .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rowunit .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.rowunit .navbar-brand .box:hover,
.rowunit .navbar-brand .box:focus {
  color: #383193 !important;
}
.rowunit .navbar-brand .element a {
  outline: none;
}
.rowunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rowunit ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rowunit ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rowunit .navbar-buttons {
  text-align: center;
}
.rowunit .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.rowunit .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .rowunit .navbar-buttons .btn {
    width: auto !important;
  }
}
.rowunit button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.rowunit .main-menu {
  padding: 0 1rem;
}
.rowunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rowunit .navbar {
    height: 70px;
  }
  .rowunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rowunit .navbar-nav {
  margin: 0 auto;
}
.rowunit .nav-item {
  padding: 0;
  margin: 0;
}
.rowunit .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.rowunit .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.rowunit .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.rowunit .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rowunit .navbar {
    justify-content: flex-start !important;
  }
  .rowunit .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rowunit .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rowunit .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rowunit .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .rowunit .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.rowunit .mainfield {
  min-height: 110px;
}
.tilewrap {
  padding-top: 9rem;
  background-color: #ffffff;
}
.tilewrap .tileunit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 3rem;
}.tilewrap .tileunit .bodycore .block-title,
.tilewrap .tileunit .bodycore .chapter-title,
.tilewrap .tileunit .bodycore .header-text,
.tilewrap .tileunit .bodycore .lead-h2,
.tilewrap .tileunit .bodycore .main-heading,
.tilewrap .tileunit .bodycore .page-h,
.tilewrap .tileunit .bodycore .section-h,
.tilewrap .tileunit .bodycore .section-heading,
.tilewrap .tileunit .bodycore .topic-title {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #383193 40%, #aaa7cf 90%);
  margin-bottom: 20px;
}
.tilewrap .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tilewrap .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.tilewrap .tileunit .block-action,
.tilewrap .tileunit .main-btn,
.tilewrap .tileunit .page-btn,
.tilewrap .tileunit .primary-cta,
.tilewrap .tileunit .section-cta {
  margin-top: 40px;
}
@media (max-width: 992px) {.tilewrap .tileunit .block-action,
.tilewrap .tileunit .main-btn,
.tilewrap .tileunit .page-btn,
.tilewrap .tileunit .primary-cta,
.tilewrap .tileunit .section-cta {
    margin-top: 20px;
  }
}
.tilewrap .tileunit .stagebox {
  margin-top: 70px;
  -webkit-mask-image: linear-gradient(#000000 80%, transparent 95%);
  mask-image: linear-gradient(#000000 80%, transparent 95%);
}
@media (max-width: 992px) {
  .tilewrap .tileunit .stagebox {
    margin-top: 40px;
  }
}
.tilewrap .tileunit .stagebox img {
  height: 690px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .tilewrap .tileunit .stagebox img {
    height: 320px;
  }
}
.tilewrap .trackbox {
  color: #334155;
  text-align: center;
}.tilewrap .block-title,
.tilewrap .chapter-title,
.tilewrap .header-text,
.tilewrap .lead-h2,
.tilewrap .main-heading,
.tilewrap .page-h,
.tilewrap .section-h,
.tilewrap .section-heading,
.tilewrap .topic-title {
  color: #0f172a;
}
.tilewrap .linewrap,
.tilewrap .text-wrapper {
  color: #000000;
  text-align: center;
}.tilewrap .block-title,
.tilewrap .chapter-title,
.tilewrap .header-text,
.tilewrap .lead-h2,
.tilewrap .main-heading,
.tilewrap .page-h,
.tilewrap .section-h,
.tilewrap .section-heading,
.tilewrap .topic-title,
.tilewrap .block-action,
.tilewrap .main-btn,
.tilewrap .page-btn,
.tilewrap .primary-cta,
.tilewrap .section-cta,
.tilewrap .bodycore {
  text-align: center;
}
.packwrap {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.packwrap .tileunit {
  margin: 0 -30px;
}
.packwrap .tileunit .card {
  padding: 0 30px;
}
.packwrap .trackbox {
  margin-bottom: 16px;
  color: #877e72;
}
.packwrap .holdbox {
  margin-bottom: 16px;
}.packwrap .holdbox .block-title,
.packwrap .holdbox .chapter-title,
.packwrap .holdbox .header-text,
.packwrap .holdbox .lead-h2,
.packwrap .holdbox .main-heading,
.packwrap .holdbox .page-h,
.packwrap .holdbox .section-h,
.packwrap .holdbox .section-heading,
.packwrap .holdbox .topic-title {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(170deg, #383193 20%, #aaa7cf);
  margin-bottom: 0;
}
.packwrap .text-wrapper .linewrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .packwrap .text-wrapper .linewrap {
    width: 100%;
  }
}.packwrap .block-action,
.packwrap .main-btn,
.packwrap .page-btn,
.packwrap .primary-cta,
.packwrap .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .packwrap .stagebox {
    margin-top: 40px;
  }
}
.packwrap .stagebox img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .packwrap .stagebox img {
    height: 300px;
  }
}.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: #ffedd6;
}
.packwrap .linewrap {
  color: #ffedd6;
}.packwrap .linewrap,
.packwrap .text-wrapper,
.packwrap .block-action,
.packwrap .main-btn,
.packwrap .page-btn,
.packwrap .primary-cta,
.packwrap .section-cta {
  color: #000000;
}
.bar {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.bar .viewbox {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #383193 0, #ffffff 43%, #7670bc 100%);
}
.bar .sectionwrap {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #383193 0, #ffffff 43%, #7670bc 100%);
}
.bar .inset {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #383193 0, #ffffff 43%, #7670bc 100%);
}
.bar .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .bar .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .bar .container {
    padding: 0 30px;
  }
}
.bar .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}.bar .tileunit .block-title,
.bar .tileunit .chapter-title,
.bar .tileunit .header-text,
.bar .tileunit .lead-h2,
.bar .tileunit .main-heading,
.bar .tileunit .page-h,
.bar .tileunit .section-h,
.bar .tileunit .section-heading,
.bar .tileunit .topic-title {
  margin-bottom: 40px;
}
.bar .tileunit .text-wrapper .linewrap {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .bar .tileunit .text-wrapper .linewrap {
    margin-bottom: 30px;
    width: 100%;
  }
}.bar .block-title,
.bar .chapter-title,
.bar .header-text,
.bar .lead-h2,
.bar .main-heading,
.bar .page-h,
.bar .section-h,
.bar .section-heading,
.bar .topic-title {
  color: #ffffff;
}
.bar .linewrap,
.bar .text-wrapper {
  color: #000000;
  text-align: center;
}.bar .block-title,
.bar .chapter-title,
.bar .header-text,
.bar .lead-h2,
.bar .main-heading,
.bar .page-h,
.bar .section-h,
.bar .section-heading,
.bar .topic-title,
.bar .block-action,
.bar .main-btn,
.bar .page-btn,
.bar .primary-cta,
.bar .section-cta {
  text-align: center;
  color: #504aa2;
}
.stepbox {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.stepbox .tileunit {
  margin: 0 -30px;
}
.stepbox .tileunit .card {
  padding: 0 30px;
}
.stepbox .trackbox {
  margin-bottom: 16px;
  color: #877e72;
}
.stepbox .holdbox {
  margin-bottom: 16px;
}.stepbox .holdbox .block-title,
.stepbox .holdbox .chapter-title,
.stepbox .holdbox .header-text,
.stepbox .holdbox .lead-h2,
.stepbox .holdbox .main-heading,
.stepbox .holdbox .page-h,
.stepbox .holdbox .section-h,
.stepbox .holdbox .section-heading,
.stepbox .holdbox .topic-title {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(170deg, #383193 20%, #aaa7cf);
  margin-bottom: 0;
}
.stepbox .text-wrapper .linewrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .stepbox .text-wrapper .linewrap {
    width: 100%;
  }
}.stepbox .block-action,
.stepbox .main-btn,
.stepbox .page-btn,
.stepbox .primary-cta,
.stepbox .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .stepbox .stagebox {
    margin-top: 40px;
  }
}
.stepbox .stagebox img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .stepbox .stagebox img {
    height: 300px;
  }
}.stepbox .block-title,
.stepbox .chapter-title,
.stepbox .header-text,
.stepbox .lead-h2,
.stepbox .main-heading,
.stepbox .page-h,
.stepbox .section-h,
.stepbox .section-heading,
.stepbox .topic-title {
  color: #ffedd6;
}
.stepbox .linewrap {
  color: #ffedd6;
}.stepbox .linewrap,
.stepbox .text-wrapper,
.stepbox .block-action,
.stepbox .main-btn,
.stepbox .page-btn,
.stepbox .primary-cta,
.stepbox .section-cta {
  color: #000000;
}.stepbox .block-title,
.stepbox .chapter-title,
.stepbox .header-text,
.stepbox .lead-h2,
.stepbox .main-heading,
.stepbox .page-h,
.stepbox .section-h,
.stepbox .section-heading,
.stepbox .topic-title,
.stepbox .holdbox {
  text-align: left;
}
.stepwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.stepwrap .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.stepwrap .tileunit .block-action,
.stepwrap .tileunit .main-btn,
.stepwrap .tileunit .page-btn,
.stepwrap .tileunit .primary-cta,
.stepwrap .tileunit .section-cta {
  margin-bottom: 22px;
}
.stepwrap .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.stepwrap .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap:hover,
.stepwrap .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.stepwrap .tileunit .gridlayer {
  margin-bottom: 0;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title {
  color: #000000;
}
.stepwrap .linewrap,
.stepwrap .text-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .list,
.stepwrap .nav-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .gridlayer {
  color: #000000;
  text-align: center;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title,
.stepwrap .bodycore,
.stepwrap .block-action,
.stepwrap .main-btn,
.stepwrap .page-btn,
.stepwrap .primary-cta,
.stepwrap .section-cta {
  text-align: center;
}
.rowunit .main-menu {
  position: relative !important;
}
.rowunit .main-menu {
  position: absolute !important;
}
.rowunit .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .rowunit .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.rowunit .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rowunit .nav-link {
  position: relative;
}
.rowunit .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .rowunit .container {
    flex-wrap: nowrap;
  }
}
.rowunit .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.rowunit .gridunitbox:hover {
  color: #383193 !important;
}
.rowunit .nav-item:focus,
.rowunit .nav-link:focus {
  outline: none;
}
.rowunit .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.rowunit .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.rowunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rowunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rowunit .navbar .element img {
    height: 3rem !important;
  }
  .rowunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rowunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rowunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rowunit .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rowunit .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.rowunit .navbar-brand .box:hover,
.rowunit .navbar-brand .box:focus {
  color: #383193 !important;
}
.rowunit .navbar-brand .element a {
  outline: none;
}
.rowunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rowunit ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rowunit ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rowunit .navbar-buttons {
  text-align: center;
}
.rowunit .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.rowunit .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .rowunit .navbar-buttons .btn {
    width: auto !important;
  }
}
.rowunit button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.rowunit .main-menu {
  padding: 0 1rem;
}
.rowunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rowunit .navbar {
    height: 70px;
  }
  .rowunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rowunit .navbar-nav {
  margin: 0 auto;
}
.rowunit .nav-item {
  padding: 0;
  margin: 0;
}
.rowunit .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.rowunit .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.rowunit .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.rowunit .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rowunit .navbar {
    justify-content: flex-start !important;
  }
  .rowunit .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rowunit .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rowunit .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rowunit .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .rowunit .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.rowunit .mainfield {
  min-height: 110px;
}
.stackcol {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("images/sharp1.jpg");
}
.stackcol .tileunit {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .stackcol .tileunit {
    margin-bottom: 32px;
  }
}.stackcol .tileunit .bodycore .block-title,
.stackcol .tileunit .bodycore .chapter-title,
.stackcol .tileunit .bodycore .header-text,
.stackcol .tileunit .bodycore .lead-h2,
.stackcol .tileunit .bodycore .main-heading,
.stackcol .tileunit .bodycore .page-h,
.stackcol .tileunit .bodycore .section-h,
.stackcol .tileunit .bodycore .section-heading,
.stackcol .tileunit .bodycore .topic-title {
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #aaa7cf, #383193 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stackcol .tileunit .text-wrapper .linewrap {
  margin-bottom: 0;
}
.stackcol .trackbox {
  color: #000000;
  text-align: center;
}.stackcol .block-title,
.stackcol .chapter-title,
.stackcol .header-text,
.stackcol .lead-h2,
.stackcol .main-heading,
.stackcol .page-h,
.stackcol .section-h,
.stackcol .section-heading,
.stackcol .topic-title,
.stackcol .bodycore {
  color: #000000;
  text-align: center;
}
.stackcol .linewrap,
.stackcol .text-wrapper {
  color: #000000;
  text-align: center;
}
.stackcol label {
  color: #000000;
}
.fieldbox {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.fieldbox .tileunit {
  margin: 0 -30px;
}
.fieldbox .tileunit .card {
  padding: 0 30px;
}
.fieldbox .trackbox {
  margin-bottom: 16px;
  color: #877e72;
}
.fieldbox .holdbox {
  margin-bottom: 16px;
}.fieldbox .holdbox .block-title,
.fieldbox .holdbox .chapter-title,
.fieldbox .holdbox .header-text,
.fieldbox .holdbox .lead-h2,
.fieldbox .holdbox .main-heading,
.fieldbox .holdbox .page-h,
.fieldbox .holdbox .section-h,
.fieldbox .holdbox .section-heading,
.fieldbox .holdbox .topic-title {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(170deg, #383193 20%, #aaa7cf);
  margin-bottom: 0;
}
.fieldbox .text-wrapper .linewrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .fieldbox .text-wrapper .linewrap {
    width: 100%;
  }
}.fieldbox .block-action,
.fieldbox .main-btn,
.fieldbox .page-btn,
.fieldbox .primary-cta,
.fieldbox .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .fieldbox .stagebox {
    margin-top: 40px;
  }
}
.fieldbox .stagebox img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .fieldbox .stagebox img {
    height: 300px;
  }
}.fieldbox .block-title,
.fieldbox .chapter-title,
.fieldbox .header-text,
.fieldbox .lead-h2,
.fieldbox .main-heading,
.fieldbox .page-h,
.fieldbox .section-h,
.fieldbox .section-heading,
.fieldbox .topic-title {
  color: #ffedd6;
}
.fieldbox .linewrap {
  color: #ffedd6;
}.fieldbox .linewrap,
.fieldbox .text-wrapper,
.fieldbox .block-action,
.fieldbox .main-btn,
.fieldbox .page-btn,
.fieldbox .primary-cta,
.fieldbox .section-cta {
  color: #000000;
}
.zoneunit {
  padding-top: 5rem;
  padding-bottom: 3rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.zoneunit .viewbox {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #504aa2 100%);
}
.zoneunit .sectionwrap {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #504aa2 100%);
}
.zoneunit .inset {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #504aa2 100%);
}
@media (max-width: 992px) {
  .zoneunit .container {
    padding: 0 30px;
  }
}
.zoneunit .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}.zoneunit .tileunit .block-title,
.zoneunit .tileunit .chapter-title,
.zoneunit .tileunit .header-text,
.zoneunit .tileunit .lead-h2,
.zoneunit .tileunit .main-heading,
.zoneunit .tileunit .page-h,
.zoneunit .tileunit .section-h,
.zoneunit .tileunit .section-heading,
.zoneunit .tileunit .topic-title {
  margin-bottom: 40px;
}
.zoneunit .tileunit .text-wrapper .linewrap {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .zoneunit .tileunit .text-wrapper .linewrap {
    margin-bottom: 30px;
    width: 100%;
  }
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}
.zoneunit .linewrap,
.zoneunit .text-wrapper {
  color: #000000;
  text-align: left;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title,
.zoneunit .block-action,
.zoneunit .main-btn,
.zoneunit .page-btn,
.zoneunit .primary-cta,
.zoneunit .section-cta {
  text-align: center;
  color: #504aa2;
}
.stepwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.stepwrap .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.stepwrap .tileunit .block-action,
.stepwrap .tileunit .main-btn,
.stepwrap .tileunit .page-btn,
.stepwrap .tileunit .primary-cta,
.stepwrap .tileunit .section-cta {
  margin-bottom: 22px;
}
.stepwrap .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.stepwrap .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap:hover,
.stepwrap .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.stepwrap .tileunit .gridlayer {
  margin-bottom: 0;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title {
  color: #000000;
}
.stepwrap .linewrap,
.stepwrap .text-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .list,
.stepwrap .nav-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .gridlayer {
  color: #000000;
  text-align: center;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title,
.stepwrap .bodycore,
.stepwrap .block-action,
.stepwrap .main-btn,
.stepwrap .page-btn,
.stepwrap .primary-cta,
.stepwrap .section-cta {
  text-align: center;
}
.rowunit .main-menu {
  position: relative !important;
}
.rowunit .main-menu {
  position: absolute !important;
}
.rowunit .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .rowunit .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.rowunit .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rowunit .nav-link {
  position: relative;
}
.rowunit .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .rowunit .container {
    flex-wrap: nowrap;
  }
}
.rowunit .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.rowunit .gridunitbox:hover {
  color: #383193 !important;
}
.rowunit .nav-item:focus,
.rowunit .nav-link:focus {
  outline: none;
}
.rowunit .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.rowunit .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.rowunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rowunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rowunit .navbar .element img {
    height: 3rem !important;
  }
  .rowunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rowunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rowunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rowunit .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rowunit .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.rowunit .navbar-brand .box:hover,
.rowunit .navbar-brand .box:focus {
  color: #383193 !important;
}
.rowunit .navbar-brand .element a {
  outline: none;
}
.rowunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rowunit ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rowunit ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rowunit .navbar-buttons {
  text-align: center;
}
.rowunit .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.rowunit .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .rowunit .navbar-buttons .btn {
    width: auto !important;
  }
}
.rowunit button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.rowunit .main-menu {
  padding: 0 1rem;
}
.rowunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rowunit .navbar {
    height: 70px;
  }
  .rowunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rowunit .navbar-nav {
  margin: 0 auto;
}
.rowunit .nav-item {
  padding: 0;
  margin: 0;
}
.rowunit .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.rowunit .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.rowunit .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.rowunit .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rowunit .navbar {
    justify-content: flex-start !important;
  }
  .rowunit .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rowunit .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rowunit .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rowunit .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .rowunit .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.rowunit .mainfield {
  min-height: 110px;
}
.domlayer {
  padding-top: 9rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.domlayer .viewbox {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.domlayer .sectionwrap {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.domlayer .inset {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.domlayer .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .domlayer .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .domlayer .container {
    padding: 0 30px;
  }
}
.domlayer .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}.domlayer .tileunit .block-title,
.domlayer .tileunit .chapter-title,
.domlayer .tileunit .header-text,
.domlayer .tileunit .lead-h2,
.domlayer .tileunit .main-heading,
.domlayer .tileunit .page-h,
.domlayer .tileunit .section-h,
.domlayer .tileunit .section-heading,
.domlayer .tileunit .topic-title {
  margin-bottom: 40px;
}
.domlayer .tileunit .text-wrapper .linewrap {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .domlayer .tileunit .text-wrapper .linewrap {
    margin-bottom: 30px;
    width: 100%;
  }
}.domlayer .block-title,
.domlayer .chapter-title,
.domlayer .header-text,
.domlayer .lead-h2,
.domlayer .main-heading,
.domlayer .page-h,
.domlayer .section-h,
.domlayer .section-heading,
.domlayer .topic-title {
  color: #ffffff;
}
.domlayer .linewrap,
.domlayer .text-wrapper {
  color: #000000;
  text-align: center;
}.domlayer .block-title,
.domlayer .chapter-title,
.domlayer .header-text,
.domlayer .lead-h2,
.domlayer .main-heading,
.domlayer .page-h,
.domlayer .section-h,
.domlayer .section-heading,
.domlayer .topic-title,
.domlayer .block-action,
.domlayer .main-btn,
.domlayer .page-btn,
.domlayer .primary-cta,
.domlayer .section-cta {
  text-align: center;
  color: #504aa2;
}
.item {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.item .row {
  justify-content: space-between;
}
.item .tileunit {
  padding: 90px;
  border-radius: 3rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .item .tileunit {
    padding: 40px 16px;
    border-radius: 2rem;
  }
}.item .tileunit .block-title,
.item .tileunit .chapter-title,
.item .tileunit .header-text,
.item .tileunit .lead-h2,
.item .tileunit .main-heading,
.item .tileunit .page-h,
.item .tileunit .section-h,
.item .tileunit .section-heading,
.item .tileunit .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.item .tileunit .block-title,
.item .tileunit .chapter-title,
.item .tileunit .header-text,
.item .tileunit .lead-h2,
.item .tileunit .main-heading,
.item .tileunit .page-h,
.item .tileunit .section-h,
.item .tileunit .section-heading,
.item .tileunit .topic-title {
    margin-bottom: 20px;
  }
}
.item .tileunit .linewrap {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .item .tileunit .linewrap {
    margin-bottom: 20px;
  }
}
.item .tileunit .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}.item .block-title,
.item .chapter-title,
.item .header-text,
.item .lead-h2,
.item .main-heading,
.item .page-h,
.item .section-h,
.item .section-heading,
.item .topic-title {
  color: #000000;
}
.item .linewrap {
  color: #000000;
}
.stepwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.stepwrap .tileunit .bodycore .block-title,
.stepwrap .tileunit .bodycore .chapter-title,
.stepwrap .tileunit .bodycore .header-text,
.stepwrap .tileunit .bodycore .lead-h2,
.stepwrap .tileunit .bodycore .main-heading,
.stepwrap .tileunit .bodycore .page-h,
.stepwrap .tileunit .bodycore .section-h,
.stepwrap .tileunit .bodycore .section-heading,
.stepwrap .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.stepwrap .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.stepwrap .tileunit .block-action,
.stepwrap .tileunit .main-btn,
.stepwrap .tileunit .page-btn,
.stepwrap .tileunit .primary-cta,
.stepwrap .tileunit .section-cta {
  margin-bottom: 22px;
}
.stepwrap .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.stepwrap .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .stepwrap .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.stepwrap .tileunit .nav-wrapper .list .item-wrap:hover,
.stepwrap .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.stepwrap .tileunit .gridlayer {
  margin-bottom: 0;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title {
  color: #000000;
}
.stepwrap .linewrap,
.stepwrap .text-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .list,
.stepwrap .nav-wrapper {
  color: #000000;
  text-align: center;
}
.stepwrap .gridlayer {
  color: #000000;
  text-align: center;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .header-text,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title,
.stepwrap .bodycore,
.stepwrap .block-action,
.stepwrap .main-btn,
.stepwrap .page-btn,
.stepwrap .primary-cta,
.stepwrap .section-cta {
  text-align: center;
}
.shelllayer .main-menu {
  position: relative !important;
}
.shelllayer .main-menu {
  position: absolute !important;
}
.shelllayer .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .shelllayer .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.shelllayer .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.shelllayer .nav-link {
  position: relative;
}
.shelllayer .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .shelllayer .container {
    flex-wrap: nowrap;
  }
}
.shelllayer .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.shelllayer .gridunitbox:hover {
  color: #383193 !important;
}
.shelllayer .nav-item:focus,
.shelllayer .nav-link:focus {
  outline: none;
}
.shelllayer .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.shelllayer .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.shelllayer .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .shelllayer .navbar .nav-item .nav-link::before {
    display: none;
  }
  .shelllayer .navbar .element img {
    height: 3rem !important;
  }
  .shelllayer .navbar ul.navbar-nav li {
    margin: auto;
  }
  .shelllayer .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .shelllayer .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.shelllayer .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.shelllayer .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.shelllayer .navbar-brand .box:hover,
.shelllayer .navbar-brand .box:focus {
  color: #383193 !important;
}
.shelllayer .navbar-brand .element a {
  outline: none;
}
.shelllayer .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.shelllayer ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .shelllayer ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.shelllayer .navbar-buttons {
  text-align: center;
}
.shelllayer .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.shelllayer .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .shelllayer .navbar-buttons .btn {
    width: auto !important;
  }
}
.shelllayer button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.shelllayer .main-menu {
  padding: 0 1rem;
}
.shelllayer a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .shelllayer .navbar {
    height: 70px;
  }
  .shelllayer .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.shelllayer .navbar-nav {
  margin: 0 auto;
}
.shelllayer .nav-item {
  padding: 0;
  margin: 0;
}
.shelllayer .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.shelllayer .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.shelllayer .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.shelllayer .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .shelllayer .navbar {
    justify-content: flex-start !important;
  }
  .shelllayer .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .shelllayer .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .shelllayer .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .shelllayer .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .shelllayer .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.shelllayer .mainfield {
  min-height: 110px;
}
.zonecore {
  padding-top: 9rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.zonecore .viewbox {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.zonecore .sectionwrap {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.zonecore .inset {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.zonecore .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .zonecore .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .zonecore .container {
    padding: 0 30px;
  }
}
.zonecore .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}.zonecore .tileunit .block-title,
.zonecore .tileunit .chapter-title,
.zonecore .tileunit .header-text,
.zonecore .tileunit .lead-h2,
.zonecore .tileunit .main-heading,
.zonecore .tileunit .page-h,
.zonecore .tileunit .section-h,
.zonecore .tileunit .section-heading,
.zonecore .tileunit .topic-title {
  margin-bottom: 40px;
}
.zonecore .tileunit .text-wrapper .linewrap {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .zonecore .tileunit .text-wrapper .linewrap {
    margin-bottom: 30px;
    width: 100%;
  }
}.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 {
  color: #ffffff;
}
.zonecore .linewrap,
.zonecore .text-wrapper {
  color: #000000;
  text-align: center;
}.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,
.zonecore .block-action,
.zonecore .main-btn,
.zonecore .page-btn,
.zonecore .primary-cta,
.zonecore .section-cta {
  text-align: center;
  color: #504aa2;
}
.stacklayer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.stacklayer .row {
  justify-content: space-between;
}
.stacklayer .tileunit {
  padding: 90px;
  border-radius: 3rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .stacklayer .tileunit {
    padding: 40px 16px;
    border-radius: 2rem;
  }
}.stacklayer .tileunit .block-title,
.stacklayer .tileunit .chapter-title,
.stacklayer .tileunit .header-text,
.stacklayer .tileunit .lead-h2,
.stacklayer .tileunit .main-heading,
.stacklayer .tileunit .page-h,
.stacklayer .tileunit .section-h,
.stacklayer .tileunit .section-heading,
.stacklayer .tileunit .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.stacklayer .tileunit .block-title,
.stacklayer .tileunit .chapter-title,
.stacklayer .tileunit .header-text,
.stacklayer .tileunit .lead-h2,
.stacklayer .tileunit .main-heading,
.stacklayer .tileunit .page-h,
.stacklayer .tileunit .section-h,
.stacklayer .tileunit .section-heading,
.stacklayer .tileunit .topic-title {
    margin-bottom: 20px;
  }
}
.stacklayer .tileunit .linewrap {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .stacklayer .tileunit .linewrap {
    margin-bottom: 20px;
  }
}
.stacklayer .tileunit .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}.stacklayer .block-title,
.stacklayer .chapter-title,
.stacklayer .header-text,
.stacklayer .lead-h2,
.stacklayer .main-heading,
.stacklayer .page-h,
.stacklayer .section-h,
.stacklayer .section-heading,
.stacklayer .topic-title {
  color: #000000;
}
.stacklayer .linewrap {
  color: #000000;
}
.notch {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.notch .tileunit .bodycore .block-title,
.notch .tileunit .bodycore .chapter-title,
.notch .tileunit .bodycore .header-text,
.notch .tileunit .bodycore .lead-h2,
.notch .tileunit .bodycore .main-heading,
.notch .tileunit .bodycore .page-h,
.notch .tileunit .bodycore .section-h,
.notch .tileunit .bodycore .section-heading,
.notch .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.notch .tileunit .bodycore .block-title,
.notch .tileunit .bodycore .chapter-title,
.notch .tileunit .bodycore .header-text,
.notch .tileunit .bodycore .lead-h2,
.notch .tileunit .bodycore .main-heading,
.notch .tileunit .bodycore .page-h,
.notch .tileunit .bodycore .section-h,
.notch .tileunit .bodycore .section-heading,
.notch .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.notch .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .notch .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.notch .tileunit .block-action,
.notch .tileunit .main-btn,
.notch .tileunit .page-btn,
.notch .tileunit .primary-cta,
.notch .tileunit .section-cta {
  margin-bottom: 22px;
}
.notch .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .notch .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.notch .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.notch .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .notch .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.notch .tileunit .nav-wrapper .list .item-wrap:hover,
.notch .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.notch .tileunit .gridlayer {
  margin-bottom: 0;
}.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: #000000;
}
.notch .linewrap,
.notch .text-wrapper {
  color: #000000;
  text-align: center;
}
.notch .list,
.notch .nav-wrapper {
  color: #000000;
  text-align: center;
}
.notch .gridlayer {
  color: #000000;
  text-align: center;
}.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 .bodycore,
.notch .block-action,
.notch .main-btn,
.notch .page-btn,
.notch .primary-cta,
.notch .section-cta {
  text-align: center;
}
.drawbox .main-menu {
  position: relative !important;
}
.drawbox .main-menu {
  position: absolute !important;
}
.drawbox .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .drawbox .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.drawbox .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.drawbox .nav-link {
  position: relative;
}
.drawbox .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .drawbox .container {
    flex-wrap: nowrap;
  }
}
.drawbox .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.drawbox .gridunitbox:hover {
  color: #383193 !important;
}
.drawbox .nav-item:focus,
.drawbox .nav-link:focus {
  outline: none;
}
.drawbox .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.drawbox .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.drawbox .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .drawbox .navbar .nav-item .nav-link::before {
    display: none;
  }
  .drawbox .navbar .element img {
    height: 3rem !important;
  }
  .drawbox .navbar ul.navbar-nav li {
    margin: auto;
  }
  .drawbox .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .drawbox .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.drawbox .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.drawbox .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.drawbox .navbar-brand .box:hover,
.drawbox .navbar-brand .box:focus {
  color: #383193 !important;
}
.drawbox .navbar-brand .element a {
  outline: none;
}
.drawbox .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.drawbox ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .drawbox ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.drawbox .navbar-buttons {
  text-align: center;
}
.drawbox .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.drawbox .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .drawbox .navbar-buttons .btn {
    width: auto !important;
  }
}
.drawbox button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.drawbox .main-menu {
  padding: 0 1rem;
}
.drawbox a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .drawbox .navbar {
    height: 70px;
  }
  .drawbox .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.drawbox .navbar-nav {
  margin: 0 auto;
}
.drawbox .nav-item {
  padding: 0;
  margin: 0;
}
.drawbox .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.drawbox .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.drawbox .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.drawbox .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .drawbox .navbar {
    justify-content: flex-start !important;
  }
  .drawbox .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .drawbox .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .drawbox .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .drawbox .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .drawbox .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.drawbox .mainfield {
  min-height: 110px;
}
.module {
  padding-top: 9rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.module .viewbox {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.module .sectionwrap {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.module .inset {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.module .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .module .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .module .container {
    padding: 0 30px;
  }
}
.module .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}.module .tileunit .block-title,
.module .tileunit .chapter-title,
.module .tileunit .header-text,
.module .tileunit .lead-h2,
.module .tileunit .main-heading,
.module .tileunit .page-h,
.module .tileunit .section-h,
.module .tileunit .section-heading,
.module .tileunit .topic-title {
  margin-bottom: 40px;
}
.module .tileunit .text-wrapper .linewrap {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .module .tileunit .text-wrapper .linewrap {
    margin-bottom: 30px;
    width: 100%;
  }
}.module .block-title,
.module .chapter-title,
.module .header-text,
.module .lead-h2,
.module .main-heading,
.module .page-h,
.module .section-h,
.module .section-heading,
.module .topic-title {
  color: #ffffff;
}
.module .linewrap,
.module .text-wrapper {
  color: #000000;
  text-align: center;
}.module .block-title,
.module .chapter-title,
.module .header-text,
.module .lead-h2,
.module .main-heading,
.module .page-h,
.module .section-h,
.module .section-heading,
.module .topic-title,
.module .block-action,
.module .main-btn,
.module .page-btn,
.module .primary-cta,
.module .section-cta {
  text-align: center;
  color: #504aa2;
}
.strip {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.strip .row {
  justify-content: space-between;
}
.strip .tileunit {
  padding: 90px;
  border-radius: 3rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .strip .tileunit {
    padding: 40px 16px;
    border-radius: 2rem;
  }
}.strip .tileunit .block-title,
.strip .tileunit .chapter-title,
.strip .tileunit .header-text,
.strip .tileunit .lead-h2,
.strip .tileunit .main-heading,
.strip .tileunit .page-h,
.strip .tileunit .section-h,
.strip .tileunit .section-heading,
.strip .tileunit .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.strip .tileunit .block-title,
.strip .tileunit .chapter-title,
.strip .tileunit .header-text,
.strip .tileunit .lead-h2,
.strip .tileunit .main-heading,
.strip .tileunit .page-h,
.strip .tileunit .section-h,
.strip .tileunit .section-heading,
.strip .tileunit .topic-title {
    margin-bottom: 20px;
  }
}
.strip .tileunit .linewrap {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .strip .tileunit .linewrap {
    margin-bottom: 20px;
  }
}
.strip .tileunit .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}.strip .block-title,
.strip .chapter-title,
.strip .header-text,
.strip .lead-h2,
.strip .main-heading,
.strip .page-h,
.strip .section-h,
.strip .section-heading,
.strip .topic-title {
  color: #000000;
}
.strip .linewrap {
  color: #000000;
}
.clipbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.clipbox .tileunit .bodycore .block-title,
.clipbox .tileunit .bodycore .chapter-title,
.clipbox .tileunit .bodycore .header-text,
.clipbox .tileunit .bodycore .lead-h2,
.clipbox .tileunit .bodycore .main-heading,
.clipbox .tileunit .bodycore .page-h,
.clipbox .tileunit .bodycore .section-h,
.clipbox .tileunit .bodycore .section-heading,
.clipbox .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.clipbox .tileunit .bodycore .block-title,
.clipbox .tileunit .bodycore .chapter-title,
.clipbox .tileunit .bodycore .header-text,
.clipbox .tileunit .bodycore .lead-h2,
.clipbox .tileunit .bodycore .main-heading,
.clipbox .tileunit .bodycore .page-h,
.clipbox .tileunit .bodycore .section-h,
.clipbox .tileunit .bodycore .section-heading,
.clipbox .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.clipbox .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .clipbox .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.clipbox .tileunit .block-action,
.clipbox .tileunit .main-btn,
.clipbox .tileunit .page-btn,
.clipbox .tileunit .primary-cta,
.clipbox .tileunit .section-cta {
  margin-bottom: 22px;
}
.clipbox .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .clipbox .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.clipbox .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.clipbox .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .clipbox .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.clipbox .tileunit .nav-wrapper .list .item-wrap:hover,
.clipbox .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.clipbox .tileunit .gridlayer {
  margin-bottom: 0;
}.clipbox .block-title,
.clipbox .chapter-title,
.clipbox .header-text,
.clipbox .lead-h2,
.clipbox .main-heading,
.clipbox .page-h,
.clipbox .section-h,
.clipbox .section-heading,
.clipbox .topic-title {
  color: #000000;
}
.clipbox .linewrap,
.clipbox .text-wrapper {
  color: #000000;
  text-align: center;
}
.clipbox .list,
.clipbox .nav-wrapper {
  color: #000000;
  text-align: center;
}
.clipbox .gridlayer {
  color: #000000;
  text-align: center;
}.clipbox .block-title,
.clipbox .chapter-title,
.clipbox .header-text,
.clipbox .lead-h2,
.clipbox .main-heading,
.clipbox .page-h,
.clipbox .section-h,
.clipbox .section-heading,
.clipbox .topic-title,
.clipbox .bodycore,
.clipbox .block-action,
.clipbox .main-btn,
.clipbox .page-btn,
.clipbox .primary-cta,
.clipbox .section-cta {
  text-align: center;
}
.levelwrap .main-menu {
  position: relative !important;
}
.levelwrap .main-menu {
  position: absolute !important;
}
.levelwrap .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .levelwrap .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.levelwrap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.levelwrap .nav-link {
  position: relative;
}
.levelwrap .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .levelwrap .container {
    flex-wrap: nowrap;
  }
}
.levelwrap .gridunitbox {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.levelwrap .gridunitbox:hover {
  color: #383193 !important;
}
.levelwrap .nav-item:focus,
.levelwrap .nav-link:focus {
  outline: none;
}
.levelwrap .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.levelwrap .navbar .element img {
  width: auto;
  border-radius: 6px !important;
}
.levelwrap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .levelwrap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .levelwrap .navbar .element img {
    height: 3rem !important;
  }
  .levelwrap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .levelwrap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .levelwrap .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.levelwrap .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.levelwrap .navbar-brand .box {
  line-height: inherit !important;
  font-weight: 700;
}
.levelwrap .navbar-brand .box:hover,
.levelwrap .navbar-brand .box:focus {
  color: #383193 !important;
}
.levelwrap .navbar-brand .element a {
  outline: none;
}
.levelwrap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.levelwrap ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .levelwrap ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.levelwrap .navbar-buttons {
  text-align: center;
}
.levelwrap .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.levelwrap .navbar-buttons .btn .depth-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .levelwrap .navbar-buttons .btn {
    width: auto !important;
  }
}
.levelwrap button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.levelwrap .main-menu {
  padding: 0 1rem;
}
.levelwrap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .levelwrap .navbar {
    height: 70px;
  }
  .levelwrap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.levelwrap .navbar-nav {
  margin: 0 auto;
}
.levelwrap .nav-item {
  padding: 0;
  margin: 0;
}
.levelwrap .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.levelwrap .nav-item .nav-link::after {
  color: #383193 !important;
  transform: rotate(0);
  transition: .3s;
}
.levelwrap .nav-item .nav-link:hover {
  background-color: transparent;
  color: #383193 !important;
}
.levelwrap .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .levelwrap .navbar {
    justify-content: flex-start !important;
  }
  .levelwrap .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .levelwrap .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .levelwrap .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .levelwrap .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .levelwrap .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.levelwrap .mainfield {
  min-height: 110px;
}
.layoutnode {
  padding-top: 9rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.layoutnode .viewbox {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.layoutnode .sectionwrap {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.layoutnode .inset {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #aaa7cf 0, #ffffff 43%, #f5f5f5 100%);
}
.layoutnode .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .layoutnode .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .layoutnode .container {
    padding: 0 30px;
  }
}
.layoutnode .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}.layoutnode .tileunit .block-title,
.layoutnode .tileunit .chapter-title,
.layoutnode .tileunit .header-text,
.layoutnode .tileunit .lead-h2,
.layoutnode .tileunit .main-heading,
.layoutnode .tileunit .page-h,
.layoutnode .tileunit .section-h,
.layoutnode .tileunit .section-heading,
.layoutnode .tileunit .topic-title {
  margin-bottom: 40px;
}
.layoutnode .tileunit .text-wrapper .linewrap {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutnode .tileunit .text-wrapper .linewrap {
    margin-bottom: 30px;
    width: 100%;
  }
}.layoutnode .block-title,
.layoutnode .chapter-title,
.layoutnode .header-text,
.layoutnode .lead-h2,
.layoutnode .main-heading,
.layoutnode .page-h,
.layoutnode .section-h,
.layoutnode .section-heading,
.layoutnode .topic-title {
  color: #ffffff;
}
.layoutnode .linewrap,
.layoutnode .text-wrapper {
  color: #000000;
  text-align: center;
}.layoutnode .block-title,
.layoutnode .chapter-title,
.layoutnode .header-text,
.layoutnode .lead-h2,
.layoutnode .main-heading,
.layoutnode .page-h,
.layoutnode .section-h,
.layoutnode .section-heading,
.layoutnode .topic-title,
.layoutnode .block-action,
.layoutnode .main-btn,
.layoutnode .page-btn,
.layoutnode .primary-cta,
.layoutnode .section-cta {
  text-align: center;
  color: #504aa2;
}
.patch {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.patch .row {
  justify-content: space-between;
}
.patch .tileunit {
  padding: 90px;
  border-radius: 3rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .patch .tileunit {
    padding: 40px 16px;
    border-radius: 2rem;
  }
}.patch .tileunit .block-title,
.patch .tileunit .chapter-title,
.patch .tileunit .header-text,
.patch .tileunit .lead-h2,
.patch .tileunit .main-heading,
.patch .tileunit .page-h,
.patch .tileunit .section-h,
.patch .tileunit .section-heading,
.patch .tileunit .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.patch .tileunit .block-title,
.patch .tileunit .chapter-title,
.patch .tileunit .header-text,
.patch .tileunit .lead-h2,
.patch .tileunit .main-heading,
.patch .tileunit .page-h,
.patch .tileunit .section-h,
.patch .tileunit .section-heading,
.patch .tileunit .topic-title {
    margin-bottom: 20px;
  }
}
.patch .tileunit .linewrap {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .patch .tileunit .linewrap {
    margin-bottom: 20px;
  }
}
.patch .tileunit .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}.patch .block-title,
.patch .chapter-title,
.patch .header-text,
.patch .lead-h2,
.patch .main-heading,
.patch .page-h,
.patch .section-h,
.patch .section-heading,
.patch .topic-title {
  color: #000000;
}
.patch .linewrap {
  color: #000000;
}
.alignbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/soft1.jpg");
}.alignbox .tileunit .bodycore .block-title,
.alignbox .tileunit .bodycore .chapter-title,
.alignbox .tileunit .bodycore .header-text,
.alignbox .tileunit .bodycore .lead-h2,
.alignbox .tileunit .bodycore .main-heading,
.alignbox .tileunit .bodycore .page-h,
.alignbox .tileunit .bodycore .section-h,
.alignbox .tileunit .bodycore .section-heading,
.alignbox .tileunit .bodycore .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #ffffff, #251e78 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.alignbox .tileunit .bodycore .block-title,
.alignbox .tileunit .bodycore .chapter-title,
.alignbox .tileunit .bodycore .header-text,
.alignbox .tileunit .bodycore .lead-h2,
.alignbox .tileunit .bodycore .main-heading,
.alignbox .tileunit .bodycore .page-h,
.alignbox .tileunit .bodycore .section-h,
.alignbox .tileunit .bodycore .section-heading,
.alignbox .tileunit .bodycore .topic-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #ffffff, #251e78 40%);
  }
}
.alignbox .tileunit .text-wrapper .linewrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .alignbox .tileunit .text-wrapper .linewrap {
    width: 100%;
  }
}.alignbox .tileunit .block-action,
.alignbox .tileunit .main-btn,
.alignbox .tileunit .page-btn,
.alignbox .tileunit .primary-cta,
.alignbox .tileunit .section-cta {
  margin-bottom: 22px;
}
.alignbox .tileunit .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .alignbox .tileunit .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.alignbox .tileunit .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.alignbox .tileunit .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .alignbox .tileunit .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.alignbox .tileunit .nav-wrapper .list .item-wrap:hover,
.alignbox .tileunit .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.alignbox .tileunit .gridlayer {
  margin-bottom: 0;
}.alignbox .block-title,
.alignbox .chapter-title,
.alignbox .header-text,
.alignbox .lead-h2,
.alignbox .main-heading,
.alignbox .page-h,
.alignbox .section-h,
.alignbox .section-heading,
.alignbox .topic-title {
  color: #000000;
}
.alignbox .linewrap,
.alignbox .text-wrapper {
  color: #000000;
  text-align: center;
}
.alignbox .list,
.alignbox .nav-wrapper {
  color: #000000;
  text-align: center;
}
.alignbox .gridlayer {
  color: #000000;
  text-align: center;
}.alignbox .block-title,
.alignbox .chapter-title,
.alignbox .header-text,
.alignbox .lead-h2,
.alignbox .main-heading,
.alignbox .page-h,
.alignbox .section-h,
.alignbox .section-heading,
.alignbox .topic-title,
.alignbox .bodycore,
.alignbox .block-action,
.alignbox .main-btn,
.alignbox .page-btn,
.alignbox .primary-cta,
.alignbox .section-cta {
  text-align: center;
}

.contentbox {
  position: fixed;
  right: 20px;
  bottom: 20px;
  top: auto;
  transform: translateY(20px) scale(0.98);
  transform-origin: bottom right;
  width: calc(100% - 40px);
  max-width: 420px;
  padding: clamp(14px, 2.4vw, 20px);
  border-radius: 12px;
  background: #0f1f3d;
  color: #dce6f5;
  border: 1px solid #1e3a6e;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  z-index: 10000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.contentbox *,
.contentbox *::before,
.contentbox *::after {
  box-sizing: border-box;
}

.contentbox p {
  margin: 0;
}

.cluster {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.holdunit {
  flex: 1;
  min-width: 0;
}

.seal-icon {
  display: block;
  width: clamp(32px, 8vw, 44px);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.info-text {
  font-size: clamp(13px, 2.7vw, 14px);
  line-height: 1.55;
  color: #dce6f5;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: left;
}

.target {
  width: 100%;
  margin-top: 2px;
  text-align: center;
  color: #8da4c7;
}

.doc-links-note {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(12px, 2.5vw, 13px);
  line-height: 1.45;
  margin-bottom: 4px;
}

.bar-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  width: 100%;
  text-align: center;
}

.bar-links-row a {
  display: inline-block;
  font-size: clamp(12px, 2.5vw, 13px);
  line-height: 1.4;
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.bar-links-row span {
  display: inline-block;
  font-size: clamp(12px, 2.5vw, 13px);
  line-height: 1.4;
  color: #8da4c7;
  white-space: nowrap;
}

.elementbox {
  display: flex;
  gap: 10px;
  width: 100%;
}

#gotItBtn {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  font-size: clamp(13px, 2.7vw, 14px);
  line-height: 1.2;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
  flex: 1 1 0;
  min-width: 0;
  background: #f59e0b;
  color: #0f1f3d;
  border: none;
}

#gotItBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .contentbox {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    top: auto;
    transform: translateY(20px) scale(0.98);
    transform-origin: bottom center;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 24px - env(safe-area-inset-bottom, 0px));
    border-radius: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cluster {
    gap: 10px;
  }

  .elementbox {
    flex-direction: column;
    gap: 8px;
  }

  #gotItBtn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .contentbox {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    max-height: calc(100vh - 16px - env(safe-area-inset-bottom, 0px));
    padding: 12px;
  }

  .cluster {
    gap: 8px;
  }
}

.bright-round-body {
  padding: 0 !important;
  background: transparent;
}
.bright-round-body .layoutbase {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.bright-round-body .list-bottom {
  padding: 40px 40px 28px;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  text-align: center;
}
.bright-round-body .layoutunit {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 0;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bright-round-body .hint-badge {
  margin: 18px 0 8px;
  color: #111827;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
}
.bright-round-body .sub-text {
  margin: 0 auto;
  max-width: 520px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.bright-round-body .zone-marker {
  padding: 32px 40px 40px;
  color: #111827;
}
.bright-round-body .zone-marker *,
.bright-round-body .zone-marker *::before,
.bright-round-body .zone-marker *::after {
  box-sizing: border-box;
}
.bright-round-body .zone-marker [hidden] {
  display: none !important;
}
.bright-round-body .row-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.bright-round-body .sub-section {
  display: flex;
  flex-direction: column;
}
.bright-round-body .alt-dark-panel {
  grid-column: 1 / -1;
}
.bright-round-body .formcore {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
}
.bright-round-body .bold-check {
  width: 100%;
  padding: 14px 0;
  border: none !important;
  border-bottom: 1px solid #d1d5db !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111827 !important;
  font-size: 15px;
  box-shadow: none !important;
  text-align: center;
  transition: border-color 0.2s ease;
}
.bright-round-body .bold-check::placeholder {
  color: #9ca3af;
  opacity: 1;
  text-align: center;
}
.bright-round-body .bold-check:focus {
  outline: none;
  border-bottom-color: #111827 !important;
}
.bright-round-body select.bold-check {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  background-size: 16px !important;
  padding-right: 28px !important;
}
.bright-round-body select.bold-check option {
  background: #ffffff;
  color: #111827;
}
.bright-round-body textarea.bold-check {
  min-height: 170px;
  resize: vertical;
  text-align: left;
}
.bright-round-body textarea.bold-check::placeholder {
  text-align: left;
}
.bright-round-body .ui-large-field {
  padding: 0 0 18px;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
}
.bright-round-body .field-core-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bright-round-body .core-flat-row {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #111827;
  cursor: pointer;
}
.bright-round-body .clean-live-container {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.75;
  cursor: pointer;
}
.bright-round-body .clean-live-container a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.bright-round-body .clean-live-container a:hover {
  color: #000000;
}
.bright-round-body .post-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.bright-round-body .fold {
  min-width: 260px;
  padding: 15px 36px;
  border: 1px solid #111827;
  border-radius: 0 !important;
  background: #111827;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.18s ease, background 0.18s ease;
}
.bright-round-body .fold:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-2px);
}
.bright-round-body .fold:active {
  transform: translateY(0);
}
.bright-round-body .head-input {
  margin: 0;
  color: #6b7280;
  font-size: 12.5px;
  line-height: 1.8;
  text-align: center;
  padding: 0 8px;
}
.bright-round-body .root-side {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.bright-round-body .holder-back-container {
  background: #f3f4f6;
  border-left: 3px solid #16a34a;
  color: #166534;
}
.bright-round-body .soft-live-slot {
  background: #f9fafb;
  border-left: 3px solid #dc2626;
  color: #991b1b;
}
@media (max-width: 767px) {
  .bright-round-body {
    padding: 0 12px !important;
  }
  .bright-round-body .list-bottom {
    padding: 28px 20px 24px;
  }
  .bright-round-body .zone-marker {
    padding: 24px 20px 28px;
  }
  .bright-round-body .hint-badge {
    font-size: 28px;
  }
  .bright-round-body .fold {
    width: 100%;
    min-width: 0;
  }
}

.quiz-section {
  background-image: url("images/high2.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.quiz-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.contentbox {
  position: fixed;
  right: 20px;
  bottom: 20px;
  top: auto;
  transform: translateY(20px) scale(0.98);
  transform-origin: bottom right;
  width: calc(100% - 40px);
  max-width: 420px;
  padding: clamp(14px, 2.4vw, 20px);
  border-radius: 12px;
  background: #0f1f3d;
  color: #dce6f5;
  border: 1px solid #1e3a6e;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  z-index: 10000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.contentbox *,
.contentbox *::before,
.contentbox *::after {
  box-sizing: border-box;
}

.contentbox.shown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contentbox.gone {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
}

.contentbox p {
  margin: 0;
}

.cluster {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.holdunit {
  flex: 1;
  min-width: 0;
}

.seal-icon {
  display: block;
  width: clamp(32px, 8vw, 44px);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.info-text {
  font-size: clamp(13px, 2.7vw, 14px);
  line-height: 1.55;
  color: #dce6f5;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: left;
}

.target {
  width: 100%;
  margin-top: 2px;
  text-align: center;
  color: #8da4c7;
}

.doc-links-note {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(12px, 2.5vw, 13px);
  line-height: 1.45;
  margin-bottom: 4px;
}

.bar-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  width: 100%;
  text-align: center;
}

.bar-links-row a {
  display: inline-block;
  font-size: clamp(12px, 2.5vw, 13px);
  line-height: 1.4;
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.bar-links-row span {
  display: inline-block;
  font-size: clamp(12px, 2.5vw, 13px);
  line-height: 1.4;
  color: #8da4c7;
  white-space: nowrap;
}

.elementbox {
  display: flex;
  gap: 10px;
  width: 100%;
}

#gotItBtn {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  font-size: clamp(13px, 2.7vw, 14px);
  line-height: 1.2;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
  flex: 1 1 0;
  min-width: 0;
  background: #f59e0b;
  color: #0f1f3d;
  border: none;
}

#gotItBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .contentbox {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    top: auto;
    transform: translateY(20px) scale(0.98);
    transform-origin: bottom center;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 24px - env(safe-area-inset-bottom, 0px));
    border-radius: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contentbox.shown {
    transform: translateY(0) scale(1);
  }

  .contentbox.gone {
    transform: translateY(20px) scale(0.98);
  }

  .cluster {
    gap: 10px;
  }

  .elementbox {
    flex-direction: column;
    gap: 8px;
  }

  #gotItBtn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .contentbox {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    max-height: calc(100vh - 16px - env(safe-area-inset-bottom, 0px));
    padding: 12px;
  }

  .cluster {
    gap: 8px;
  }
}
.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%;
}
@media (max-width: 991.98px) {
  .menu.rowunit,
  .main-menu {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
  }

  .main-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
  }

  .main-menu .mainfield {
    position: relative;
    z-index: 99999 !important;
  }

  .main-menu .navbar-collapse {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99998 !important;

    background: rgba(255, 255, 255, 0.98) !important;
    padding: 18px 16px 24px !important;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }

  .main-menu .navbar-nav {
    width: 100% !important;
    gap: 8px;
    margin-bottom: 14px !important;
  }

  .main-menu .nav-link,
  .main-menu .navbar-nav .nav-link,
  .main-menu .text-black,
  .main-menu .box {
    color: #111111 !important;
  }

  .main-menu .nav-link {
    display: block !important;
    padding: 12px 10px !important;
    margin: 0 !important;
    border-radius: 10px;
  }

  .main-menu .nav-link:hover {
    background: rgba(0, 0, 0, 0.06) !important;
  }

  .main-menu .navbar-buttons {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  .main-menu .navbar-buttons .btn {
    width: 100% !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .main-menu .navbar-toggler {
    position: relative;
    z-index: 100000 !important;
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
  }

  .interfacebox.hero {
    position: relative;
    z-index: 1 !important;
  }
}