:root {

  --site-primary-rgb: 13, 110, 253;
  --site-white-rgb: 255, 255, 255;
  --site-body-font-family: var(--site-font-sans-serif);
  --site-body-font-size: 1rem;
  --site-body-font-weight: 400;
  --site-body-line-height: 1.5;
  --site-body-color: #212529;
  --site-body-color-rgb: 33, 37, 41;
  --site-body-bg: #fff;
  --site-emphasis-color-rgb: 0, 0, 0;
  --site-secondary-color: rgba(33, 37, 41, 0.75);
  --site-heading-color: inherit;
  --site-link-color: #0d6efd;
  --site-link-color-rgb: 13, 110, 253;
  --site-link-hover-color: #0a58ca;
  --site-link-hover-color-rgb: 10, 88, 202;
  --site-border-width: 1px;
  --site-border-color-translucent: rgba(0, 0, 0, 0.175);
  --site-border-radius: 0.375rem;
  --site-border-radius-sm: 0.25rem;
  --site-border-radius-lg: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--site-body-font-family);
  font-size: var(--site-body-font-size);
  font-weight: var(--site-body-font-weight);
  line-height: var(--site-body-line-height);
  color: var(--site-body-color);
  text-align: var(--site-body-text-align);
  background-color: var(--site-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

 h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--site-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

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 {
  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);
}

.card-title {
  margin-bottom: var(--site-card-title-spacer-y);
  color: var(--site-card-title-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.alert {
  --site-alert-bg: transparent;
  --site-alert-padding-x: 1rem;
  --site-alert-padding-y: 1rem;
  --site-alert-margin-bottom: 1rem;
  --site-alert-color: inherit;
  --site-alert-border-color: transparent;
  --site-alert-border: var(--site-border-width) solid var(--site-alert-border-color);
  --site-alert-border-radius: var(--site-border-radius);
  --site-alert-link-color: inherit;
  position: relative;
  padding: var(--site-alert-padding-y) var(--site-alert-padding-x);
  margin-bottom: var(--site-alert-margin-bottom);
  color: var(--site-alert-color);
  background-color: var(--site-alert-bg);
  border: var(--site-alert-border);
  border-radius: var(--site-alert-border-radius);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--site-progress-height);
  }
}

.btn-close {
  --site-btn-close-color: #000;
  --site-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --site-btn-close-opacity: 0.5;
  --site-btn-close-hover-opacity: 0.75;
  --site-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --site-btn-close-focus-opacity: 1;
  --site-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--site-btn-close-color);
  background: transparent var(--site-btn-close-bg) center/1em auto no-repeat;
  filter: var(--site-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--site-btn-close-opacity);
}
.btn-close:hover {
  color: var(--site-btn-close-color);
  text-decoration: none;
  opacity: var(--site-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--site-btn-close-focus-shadow);
  opacity: var(--site-btn-close-focus-opacity);
}
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--site-btn-close-disabled-opacity);
}

.btn-close-white {
  --site-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root {
  --site-btn-close-filter: ;
}

:root {
  --site-carousel-indicator-active-bg: #fff;
  --site-carousel-caption-color: #fff;
  --site-carousel-control-icon-filter: ;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) ;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}

.d-flex {
  display: flex !important;
}

.w-100 {
  width: 100% !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.m-0 {
  margin: 0 !important;
}

.m-auto {
  margin: auto !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-3 {
  padding: 1rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-primary {
  --site-text-opacity: 1;
  color: rgba(var(--site-primary-rgb), var(--site-text-opacity)) !important;
}

.text-white {
  --site-text-opacity: 1;
  color: rgba(var(--site-white-rgb), var(--site-text-opacity)) !important;
}
@media (min-width: 992px) {
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
}

.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/premium1.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quiz-title {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
  color: #555;
}

.quiz-form select,
.quiz-form input[type="number"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bbb;
  font-size: 15px;
  box-sizing: border-box;
}

.quiz-button {
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.quiz-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.primary-nav {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .primary-nav .floatbox {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .primary-nav .floatbox img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
  .primary-nav .linedockbox {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .primary-nav .linedockbox, .primary-nav .linedockbox:hover {
      color: inherit;
      text-decoration: none; }
  .primary-nav .navbar-brand span {
    vertical-align: -4px; }

.nav-dropdown {
  font-size: 0.75rem;
  font-weight: 500;
  height: auto !important; }
  .nav-dropdown .link {
    margin: .667em 1.667em;
    font-weight: 500;
    padding: 0;
    transition: color .2s ease-in-out; }
  .nav-dropdown .link::after {
    color: inherit; }
  .nav-dropdown .btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem; }

.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/premium1.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quiz-title {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
  color: #555;
}

.quiz-form select,
.quiz-form input[type="number"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bbb;
  font-size: 15px;
  box-sizing: border-box;
}

.quiz-button {
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.quiz-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
@font-face {
  font-family: 'Socicon';
  src: url('fonts/webicons.woff2') format('woff2'), url('fonts/webicons.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/premium1.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quiz-title {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
  color: #555;
}

.quiz-form select,
.quiz-form input[type="number"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bbb;
  font-size: 15px;
  box-sizing: border-box;
}

.quiz-button {
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.quiz-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
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 {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}.block-title,
.chapter-title,
.header-text,
.lead-h2,
.main-heading,
.page-h,
.section-h,
.section-heading,
.topic-title {
  font-style: normal;
  line-height: 1.3;
}.h-secondary {
  line-height: 1.3;
}

.drag-text {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.display-1,
.display-2,
.display-4,
.display-5,
.contentwrap,
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;
}

.drag-white {
  color: #ffffff;
}

.drag-black {
  color: #111111;
}

.mount {
  text-align: left;
}

.stagebox {
  text-align: center;
}

.drag-regular {
  font-weight: 400;
}

.drag-bold {
  font-weight: 700;
}

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-box {
  width: 100%;
}.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 .section-cta {
  margin-left: 0rem;
  margin-right: 0rem;
}

.drag-regular {
  font-weight: 400;
}

.drag-bold {
  font-weight: 700;
}

[type=submit] {
  -webkit-appearance: none;
}

@keyframes arrowdown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes gradient-animation {
  from {
    background-position: 0% 100%;
    animation-timing-function: ease-in-out;
  }
  to {
    background-position: 100% 0%;
    animation-timing-function: ease-in-out;
  }
}

.menu .navbar-brand {
  display: flex;
}
.menu .navbar-brand span {
  display: flex;
  display: flex;
}
.menu .navbar-brand .navbar-brand {
  display: flex;
}
.menu .navbar-brand .floatbox 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;
  }
}

.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 {
  }

.form-group:focus {
  outline: none;
}

.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 .section-cta {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

form .btn {
  min-height: 48px;
}

.drag-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

ul {
  margin-bottom: 2.3125rem;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.container,
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > [class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1200px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.item {
  position: relative;
}
.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/premium1.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quiz-title {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
  color: #555;
}

.quiz-form select,
.quiz-form input[type="number"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bbb;
  font-size: 15px;
  box-sizing: border-box;
}

.quiz-button {
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.quiz-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
@font-face {
  font-family: 'filter2';
  font-display: swap;
  src: url('fonts/kerning2.woff2') format('woff2'), url('fonts/kerning2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/premium1.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quiz-title {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
  color: #555;
}

.quiz-form select,
.quiz-form input[type="number"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bbb;
  font-size: 15px;
  box-sizing: border-box;
}

.quiz-button {
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.quiz-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn {
  border-width: 2px;
}
body {
  font-family: Geologica;
}
.display-1 {
  font-family: 'Geologica', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}
.display-2 {
  font-family: 'Geologica', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}
.display-4 {
  font-family: 'Geologica', sans-serif;
  font-size: 0.9rem;
  line-height: 1.3;
}
.display-5 {
  font-family: 'Geologica', sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
}
.contentwrap {
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .contentwrap {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}

.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,
.btn-primary:active {
  background-color: #e88ab6 !important;
  border-color: #e88ab6 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  color: inherit;
  background-color: #f0b5d1 !important;
  border-color: #f0b5d1 !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #f0b5d1 !important;
  border-color: #f0b5d1 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #75db60 !important;
  border-color: #75db60 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  color: inherit;
  background-color: #99e48a !important;
  border-color: #99e48a !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #99e48a !important;
  border-color: #99e48a !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #597db6 !important;
  border-color: #597db6 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  color: inherit;
  background-color: #7c99c6 !important;
  border-color: #7c99c6 !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7c99c6 !important;
  border-color: #7c99c6 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa770 !important;
  border-color: #ffa770 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffc6a3 !important;
  border-color: #ffc6a3 !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffc6a3 !important;
  border-color: #ffc6a3 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e2241f !important;
  border-color: #e2241f !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  color: inherit;
  background-color: #e8504c !important;
  border-color: #e8504c !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #e8504c !important;
  border-color: #e8504c !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}

.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #e88ab6;
  color: #e88ab6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.active {
  color: #da4289 !important;
  background-color: transparent !important;
  border-color: #da4289 !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e88ab6 !important;
  border-color: #e88ab6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #75db60;
  color: #75db60;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.active {
  color: #43ba2a !important;
  background-color: transparent !important;
  border-color: #43ba2a !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #75db60 !important;
  border-color: #75db60 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}

.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #597db6;
  color: #597db6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.active {
  color: #385480 !important;
  background-color: transparent !important;
  border-color: #385480 !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #597db6 !important;
  border-color: #597db6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffa770;
  color: #ffa770;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.active {
  color: #ff7219 !important;
  background-color: transparent !important;
  border-color: #ff7219 !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa770 !important;
  border-color: #ffa770 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e2241f;
  color: #e2241f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.active {
  color: #971714 !important;
  background-color: transparent !important;
  border-color: #971714 !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e2241f !important;
  border-color: #e2241f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}

.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e88ab6 !important;
}
.text-white {
  color: #fafafa !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #d73581 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}.section-cta .btn:not(.btn-form) {
  border-radius: 100px;
}
a,
a:hover {
  color: #e88ab6;
}

html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}.section-cta .btn {
  padding: 32px 88px;
  border-radius: 60px !important;
  font-weight: 400 !important;
}
@media (max-width: 992px) {.section-cta .btn {
    padding: 22px 40px;
  }
}.section-cta .btn-primary,
.section-cta .btn-secondary,
.section-cta .btn-success,
.section-cta .btn-info,
.section-cta .btn-warning,
.section-cta .btn-danger,
.section-cta .btn-black,
.section-cta .btn-white {
  border: none !important;
}.section-cta .btn-primary:hover,
.section-cta .btn-secondary:hover,
.section-cta .btn-success:hover,
.section-cta .btn-info:hover,
.section-cta .btn-warning:hover,
.section-cta .btn-danger:hover,
.section-cta .btn-black:hover,
.section-cta .btn-white:hover,
.section-cta .btn-primary:focus,
.section-cta .btn-secondary:focus,
.section-cta .btn-success:focus,
.section-cta .btn-info:focus,
.section-cta .btn-warning:focus,
.section-cta .btn-danger:focus,
.section-cta .btn-black:focus,
.section-cta .btn-white:focus {
  opacity: .7;
}
.card-wrap,
.card-wrapper,
.card,
.item-wrapper,
.card-box {
  border-radius: 30px !important;
}
img {
  border-radius: 26px !important;
}
*:focus-visible {
  outline: #002b7f solid 3px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.body {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .body .navbar-toggler {
    transform: scale(0.8);
  }
}
.body .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .body .navbar {
    padding: 0 128px !important;
  }
}
.body .navbar .floatbox img {
  width: auto;
}
.body .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .body .navbar {
    min-height: 72px;
  }
  .body .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .body .navbar .nav-item .nav-link::before {
    display: none;
  }
  .body .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .body .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.body .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.body .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.body .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.body .navbar-brand .floatbox a {
  outline: none;
}
.body .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.body .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.body .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .body .navbar-nav {
    padding-left: 1.5rem;
  }
}
.body .nav-link {
  width: fit-content;
  position: relative;
}
.body .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .body .floatbox {
    padding-left: 1rem;
  }
}
.body .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .body .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.body .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .body .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .body .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.body .nav-item:focus,
.body .nav-link:focus {
  outline: none;
}
.body .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.body ul.navbar-nav {
  flex-wrap: wrap;
}
.body button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.body .primary-nav {
  padding: 0 1rem;
}
.body a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .body .navbar {
    height: 70px;
  }
  .body .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.body .section-cta {
  margin: -0.6rem -0.6rem;
}
.body .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .body .navbar-brand {
    margin-right: auto;
  }
  .body .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .body .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .body .navbar-collapse {
    padding: 1rem;
  }
}
.foldbox {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #18121f;
}
.foldbox .unitband img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #e88ab6;
}
.foldbox .row {
  flex-direction: row-reverse;
}
.foldbox .row {
  align-items: center;
}
@media (max-width: 991px) {
  .foldbox .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}.foldbox .block-title,
.foldbox .chapter-title,
.foldbox .header-text,
.foldbox .lead-h2,
.foldbox .main-heading,
.foldbox .page-h,
.foldbox .section-h,
.foldbox .section-heading,
.foldbox .topic-title {
  color: #f4d7e6;
  text-align: center;
}
@media (max-width: 991px) {
  .foldbox .text-wrapper {
    text-align: center;
  }
}.foldbox .drag-text,
.foldbox .section-cta {
  color: #ffffff;
  text-align: center;
}.foldbox .section-cta {
  color: #fdfde1;
}.foldbox .section-cta {
  color: #fdfde1;
  text-align: center;
}
.rootsegment {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #21182a;
}
.rootsegment .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .rootsegment .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .rootsegment .container {
    padding: 0 26px;
  }
}
.rootsegment .row {
  justify-content: center;
}
.rootsegment .outline {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #18121f;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .rootsegment .outline {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .rootsegment .outline {
    padding: 100px 20px;
    display: block;
  }
}
.rootsegment .outline .zoneunitbox {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .rootsegment .outline .zoneunitbox {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}.rootsegment .outline .zoneunitbox .block-title,
.rootsegment .outline .zoneunitbox .chapter-title,
.rootsegment .outline .zoneunitbox .header-text,
.rootsegment .outline .zoneunitbox .lead-h2,
.rootsegment .outline .zoneunitbox .main-heading,
.rootsegment .outline .zoneunitbox .page-h,
.rootsegment .outline .zoneunitbox .section-h,
.rootsegment .outline .zoneunitbox .section-heading,
.rootsegment .outline .zoneunitbox .topic-title {
  margin-bottom: 30px;
}
.rootsegment .outline .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .rootsegment .outline .text-wrapper {
    width: 100%;
  }
}.rootsegment .outline .text-wrapper .h-secondary {
  margin-bottom: 20px;
}
.rootsegment .outline .text-wrapper .drag-text {
  margin-bottom: 20px;
}.rootsegment .block-title,
.rootsegment .chapter-title,
.rootsegment .header-text,
.rootsegment .lead-h2,
.rootsegment .main-heading,
.rootsegment .page-h,
.rootsegment .section-h,
.rootsegment .section-heading,
.rootsegment .topic-title {
  color: #f4d7e6;
  text-align: center;
}.rootsegment .h-secondary {
  color: #ffffff;
}
.rootsegment .drag-text {
  color: #ffffff;
  text-align: center;
}
.boxareaunit {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #18121f;
}
.boxareaunit img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .boxareaunit img {
    height: 350px;
  }
}.boxareaunit .block-title,
.boxareaunit .chapter-title,
.boxareaunit .header-text,
.boxareaunit .lead-h2,
.boxareaunit .main-heading,
.boxareaunit .page-h,
.boxareaunit .section-h,
.boxareaunit .section-heading,
.boxareaunit .topic-title {
  color: #ffffff;
  text-align: left;
}.boxareaunit .h-secondary {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 992px) {
  .boxareaunit .item-wrapper {
    margin-bottom: 2rem;
  }
}
.stacklayer {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #21182a;
}
.stacklayer .host {
  margin-bottom: 2.3rem;
}
@media (max-width: 991px) {
  .stacklayer .row {
    text-align: center;
  }
}
.stacklayer .drag-text {
  color: #ffffff;
}.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: #f4d7e6;
}
.fieldcore {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #18121f;
}
.fieldcore .card-wrapper {
  display: flex;
  background-color: #21182a;
  overflow: hidden;
}
@media (max-width: 992px) {
  .fieldcore .card-wrapper {
    display: block;
  }
}
.fieldcore .card-wrapper .unitband {
  position: relative;
  width: 55%;
  overflow: hidden;
}
@media (max-width: 992px) {
  .fieldcore .card-wrapper .unitband {
    width: 100%;
    height: 300px;
  }
}
.fieldcore .card-wrapper .unitband img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
.fieldcore .card-wrapper .outline {
  width: 45%;
  padding: 64px;
}
@media (max-width: 1440px) {
  .fieldcore .card-wrapper .outline {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .fieldcore .card-wrapper .outline {
    padding: 24px 16px 16px 16px;
    width: 100%;
  }
}
.fieldcore .card-wrapper .outline .zoneunitbox {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .fieldcore .card-wrapper .outline .zoneunitbox {
    margin-bottom: 24px;
  }
}.fieldcore .card-wrapper .outline .zoneunitbox .block-title,
.fieldcore .card-wrapper .outline .zoneunitbox .chapter-title,
.fieldcore .card-wrapper .outline .zoneunitbox .header-text,
.fieldcore .card-wrapper .outline .zoneunitbox .lead-h2,
.fieldcore .card-wrapper .outline .zoneunitbox .main-heading,
.fieldcore .card-wrapper .outline .zoneunitbox .page-h,
.fieldcore .card-wrapper .outline .zoneunitbox .section-h,
.fieldcore .card-wrapper .outline .zoneunitbox .section-heading,
.fieldcore .card-wrapper .outline .zoneunitbox .topic-title {
  margin-bottom: 0;
}.fieldcore .card-wrapper .outline .zoneunitbox .h-secondary {
  margin-bottom: 0;
}
.fieldcore .card-wrapper .outline .list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.fieldcore .card-wrapper .outline .list .item-wrap {
  margin-bottom: 16px;
}
.fieldcore .card-wrapper .outline .list .item-wrap:last-child {
  margin-bottom: 0;
}.fieldcore .card-wrapper .outline .section-cta {
  margin-top: 16px;
}.fieldcore .card-wrapper .outline .section-cta .btn {
  margin-bottom: 0;
}.fieldcore .block-title,
.fieldcore .chapter-title,
.fieldcore .header-text,
.fieldcore .lead-h2,
.fieldcore .main-heading,
.fieldcore .page-h,
.fieldcore .section-h,
.fieldcore .section-heading,
.fieldcore .topic-title {
  color: #ffffff;
}.fieldcore .h-secondary {
  color: #ffffff;
}
.fieldcore .list {
  color: #ffffff;
}.fieldcore .block-title,
.fieldcore .chapter-title,
.fieldcore .header-text,
.fieldcore .lead-h2,
.fieldcore .main-heading,
.fieldcore .page-h,
.fieldcore .section-h,
.fieldcore .section-heading,
.fieldcore .topic-title,
.fieldcore .section-cta {
  color: #f4d7e6;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}
.body {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .body .navbar-toggler {
    transform: scale(0.8);
  }
}
.body .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .body .navbar {
    padding: 0 128px !important;
  }
}
.body .navbar .floatbox img {
  width: auto;
}
.body .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .body .navbar {
    min-height: 72px;
  }
  .body .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .body .navbar .nav-item .nav-link::before {
    display: none;
  }
  .body .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .body .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.body .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.body .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.body .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.body .navbar-brand .floatbox a {
  outline: none;
}
.body .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.body .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.body .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .body .navbar-nav {
    padding-left: 1.5rem;
  }
}
.body .nav-link {
  width: fit-content;
  position: relative;
}
.body .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .body .floatbox {
    padding-left: 1rem;
  }
}
.body .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .body .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.body .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .body .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .body .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.body .nav-item:focus,
.body .nav-link:focus {
  outline: none;
}
.body .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.body ul.navbar-nav {
  flex-wrap: wrap;
}
.body button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.body .primary-nav {
  padding: 0 1rem;
}
.body a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .body .navbar {
    height: 70px;
  }
  .body .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.body .section-cta {
  margin: -0.6rem -0.6rem;
}
.body .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .body .navbar-brand {
    margin-right: auto;
  }
  .body .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .body .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .body .navbar-collapse {
    padding: 1rem;
  }
}
.trackbox {
  padding-top: 150px;
  padding-bottom: 45px;
  background-color: #21182a;
}
.trackbox .container {
  max-width: 1500px;
}
.trackbox .row {
  background: #18121f;
}
.trackbox .img-col {
  padding: 0;
}
.trackbox .part {
  padding: 4rem 6rem;
}
.trackbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trackbox h2 {
  padding: 0;
  margin: 0;
}
.trackbox .text-wrap {
  margin: auto;
}
.trackbox .drag-text {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 1200px) {
  .trackbox .row {
    margin: 2rem;
  }
  .trackbox .part {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .trackbox .row {
    margin: 0rem;
  }
  .trackbox .part {
    padding: 2rem 1rem;
  }
}.trackbox .block-title,
.trackbox .chapter-title,
.trackbox .header-text,
.trackbox .lead-h2,
.trackbox .main-heading,
.trackbox .page-h,
.trackbox .section-h,
.trackbox .section-heading,
.trackbox .topic-title {
  color: #f4d7e6;
  text-align: center;
}
.rowwrap {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #18121f;
}.rowwrap .zoneunitbox .block-title,
.rowwrap .zoneunitbox .chapter-title,
.rowwrap .zoneunitbox .header-text,
.rowwrap .zoneunitbox .lead-h2,
.rowwrap .zoneunitbox .main-heading,
.rowwrap .zoneunitbox .page-h,
.rowwrap .zoneunitbox .section-h,
.rowwrap .zoneunitbox .section-heading,
.rowwrap .zoneunitbox .topic-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {.rowwrap .zoneunitbox .block-title,
.rowwrap .zoneunitbox .chapter-title,
.rowwrap .zoneunitbox .header-text,
.rowwrap .zoneunitbox .lead-h2,
.rowwrap .zoneunitbox .main-heading,
.rowwrap .zoneunitbox .page-h,
.rowwrap .zoneunitbox .section-h,
.rowwrap .zoneunitbox .section-heading,
.rowwrap .zoneunitbox .topic-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.rowwrap .flowunit {
  justify-content: center;
  margin: 0 -12px;
}
.rowwrap .item {
  padding: 0 12px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .rowwrap .item {
    margin-bottom: 20px;
  }
}
.rowwrap .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}
@media (max-width: 992px) {
  .rowwrap .item .item-wrapper {
    padding: 20px;
  }
}
.rowwrap .item .item-wrapper .card-box .card-title_1,
.rowwrap .item .item-wrapper .card-box .card-title_2,
.rowwrap .item .item-wrapper .card-box .card-title_3 {
  margin-bottom: 20px;
}
.rowwrap .item .item-wrapper .card-box .card-text_1,
.rowwrap .item .item-wrapper .card-box .card-text_2,
.rowwrap .item .item-wrapper .card-box .card-text_3 {
  margin-bottom: 20px;
}
.rowwrap .item .item-wrapper .card-box .corewrapbox {
  width: 100%;
  height: 2px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}.rowwrap .item .item-wrapper .section-cta {
  margin-top: 50px;
  width: 100%;
}
@media (max-width: 992px) {.rowwrap .item .item-wrapper .section-cta {
    margin-top: 20px;
  }
}.rowwrap .item .item-wrapper .section-cta .btn {
  margin-bottom: 0;
  width: 100%;
  justify-content: space-between;
}
.rowwrap .item .card_1 {
  background-color: #21182a;
  transform: rotate(2deg);
}
@media (max-width: 992px) {
  .rowwrap .item .card_1 {
    transform: none;
  }
}
.rowwrap .item .card_2 {
  background-color: #21182a;
  transform: translateY(30px);
}
@media (max-width: 992px) {
  .rowwrap .item .card_2 {
    transform: none;
  }
}
.rowwrap .item .card_3 {
  background-color: #21182a;
  transform: rotate(-2deg);
}
@media (max-width: 992px) {
  .rowwrap .item .card_3 {
    transform: none;
  }
}
.rowwrap .btn-wrapper {
  margin-top: -6%;
}.rowwrap .block-title,
.rowwrap .chapter-title,
.rowwrap .header-text,
.rowwrap .lead-h2,
.rowwrap .main-heading,
.rowwrap .page-h,
.rowwrap .section-h,
.rowwrap .section-heading,
.rowwrap .topic-title,
.rowwrap .zoneunitbox {
  color: #323432;
  text-align: center;
}
.rowwrap .card-title_1 {
  color: #323432;
}
.rowwrap .card-text_1 {
  color: #ffffff;
  text-align: center;
}
.rowwrap .card-title_2 {
  color: #f1f5eb;
}
.rowwrap .card-text_2 {
  color: #f1f5eb;
  text-align: center;
}
.rowwrap .card-title_3 {
  color: #323432;
}
.rowwrap .card-text_3 {
  color: #ffffff;
  text-align: center;
}.rowwrap .card-title_2,
.rowwrap .section-cta {
  color: #f4d7e6;
  text-align: center;
}.rowwrap .card-title_3,
.rowwrap .section-cta {
  color: #f4d7e6;
  text-align: center;
}.rowwrap .card-title_1,
.rowwrap .section-cta {
  color: #f4d7e6;
  text-align: center;
}
.drawwrap {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #21182a;
  overflow: hidden;
}.drawwrap .zoneunitbox .block-title,
.drawwrap .zoneunitbox .chapter-title,
.drawwrap .zoneunitbox .header-text,
.drawwrap .zoneunitbox .lead-h2,
.drawwrap .zoneunitbox .main-heading,
.drawwrap .zoneunitbox .page-h,
.drawwrap .zoneunitbox .section-h,
.drawwrap .zoneunitbox .section-heading,
.drawwrap .zoneunitbox .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.drawwrap .zoneunitbox .block-title,
.drawwrap .zoneunitbox .chapter-title,
.drawwrap .zoneunitbox .header-text,
.drawwrap .zoneunitbox .lead-h2,
.drawwrap .zoneunitbox .main-heading,
.drawwrap .zoneunitbox .page-h,
.drawwrap .zoneunitbox .section-h,
.drawwrap .zoneunitbox .section-heading,
.drawwrap .zoneunitbox .topic-title {
    margin-bottom: 30px;
  }
}
.drawwrap .flowunit {
  margin: 0 -15px;
}
.drawwrap .flowunit .card {
  padding: 0 15px;
}
.drawwrap .card-wrapper {
  position: relative;
  height: 100%;
  will-change: transform;
  animation: none !important;
}
@media (max-width: 992px) {
  .drawwrap .card-wrapper {
    margin-bottom: 15px;
  }
}
.drawwrap .card-wrapper .corefield img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: none !important;
}
@media (max-width: 992px) {
  .drawwrap .card-wrapper .corefield img {
    position: static;
    height: 300px;
  }
}
.drawwrap .spanlayer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1200px) {
  .drawwrap .spanlayer {
    display: block;
  }
}
@media (max-width: 1200px) {
  .drawwrap .spanlayer .item {
    margin-bottom: 30px;
  }
  .drawwrap .spanlayer .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .drawwrap .spanlayer .item {
    margin-bottom: 15px;
  }
}
.drawwrap .spanlayer .item .item-wrapper {
  height: 100%;
  padding: 40px;
  background-color: #18121f;
}
@media (max-width: 992px) {
  .drawwrap .spanlayer .item .item-wrapper {
    padding: 30px;
  }
}
.drawwrap .spanlayer .item .item-wrapper .card-box .card-title {
  margin-bottom: 140px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e88ab6;
}
@media (max-width: 992px) {
  .drawwrap .spanlayer .item .item-wrapper .card-box .card-title {
    margin-bottom: 30px;
  }
}
.drawwrap .spanlayer .item .item-wrapper .card-box .card-desc {
  margin-bottom: 0;
}
.drawwrap .spanlayer .wrapbox .item-wrapper {
  padding: 0;
  background-color: transparent;
}
.drawwrap .spanlayer .wrapbox .item-wrapper .item-img {
  height: 100%;
}
.drawwrap .spanlayer .wrapbox .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .drawwrap .spanlayer .wrapbox .item-wrapper .item-img img {
    height: 300px;
  }
}
.drawwrap .btn-wrapper {
  margin-top: 35%;
}.drawwrap .block-title,
.drawwrap .chapter-title,
.drawwrap .header-text,
.drawwrap .lead-h2,
.drawwrap .main-heading,
.drawwrap .page-h,
.drawwrap .section-h,
.drawwrap .section-heading,
.drawwrap .topic-title {
  color: #000000;
}
.drawwrap .card-title {
  color: #f4d7e6;
  text-align: center;
}
.drawwrap .card-desc {
  color: #ffffff;
  text-align: center;
}
.tilebox {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #18121f;
}.tilebox .zoneunitbox .block-title,
.tilebox .zoneunitbox .chapter-title,
.tilebox .zoneunitbox .header-text,
.tilebox .zoneunitbox .lead-h2,
.tilebox .zoneunitbox .main-heading,
.tilebox .zoneunitbox .page-h,
.tilebox .zoneunitbox .section-h,
.tilebox .zoneunitbox .section-heading,
.tilebox .zoneunitbox .topic-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {.tilebox .zoneunitbox .block-title,
.tilebox .zoneunitbox .chapter-title,
.tilebox .zoneunitbox .header-text,
.tilebox .zoneunitbox .lead-h2,
.tilebox .zoneunitbox .main-heading,
.tilebox .zoneunitbox .page-h,
.tilebox .zoneunitbox .section-h,
.tilebox .zoneunitbox .section-heading,
.tilebox .zoneunitbox .topic-title {
    margin-bottom: 24px;
  }
}
.tilebox .flowunit {
  margin: 0 -8px;
}
.tilebox .flowunit .item {
  padding: 0 8px;
}
.tilebox .flowunit .item:nth-child(3n + 2) {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .tilebox .flowunit .item:nth-child(3n + 2) {
    transform: none;
  }
}
.tilebox .item {
  transform: translateY(-8rem);
  margin-bottom: 16px;
  animation: none !important;
  transform: none;
}
@media (max-width: 992px) {
  .tilebox .item {
    transform: none;
    margin-bottom: 12px;
  }
}
.tilebox .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .tilebox .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .tilebox .item .item-wrapper {
    height: auto;
    padding: 24px;
  }
}
.tilebox .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.tilebox .item .item-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #21182a;
  opacity: .5;
  pointer-events: none;
}
.tilebox .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.tilebox .item .item-wrapper .card-box .card-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .tilebox .item .item-wrapper .card-box .card-title {
    margin-bottom: 24px;
  }
}
.tilebox .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}.tilebox .item .item-wrapper .card-box .section-cta {
  margin-top: 24px;
}.tilebox .item .item-wrapper .card-box .section-cta .btn {
  margin-bottom: 0;
}.tilebox .block-title,
.tilebox .chapter-title,
.tilebox .header-text,
.tilebox .lead-h2,
.tilebox .main-heading,
.tilebox .page-h,
.tilebox .section-h,
.tilebox .section-heading,
.tilebox .topic-title {
  color: #8e73fe;
  text-align: center;
}
.tilebox .card-title {
  color: #2c2c26;
}
.tilebox .card-text {
  color: #ffffff;
  text-align: center;
}
.tilebox .card-title {
  color: #f4d7e6;
  text-align: center;
}
.inset {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #21182a;
}
.inset .zoneunitbox {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .inset .zoneunitbox {
    margin-bottom: 32px;
  }
}.inset .zoneunitbox .block-title,
.inset .zoneunitbox .chapter-title,
.inset .zoneunitbox .header-text,
.inset .zoneunitbox .lead-h2,
.inset .zoneunitbox .main-heading,
.inset .zoneunitbox .page-h,
.inset .zoneunitbox .section-h,
.inset .zoneunitbox .section-heading,
.inset .zoneunitbox .topic-title {
  margin-bottom: 32px;
}
.inset .zoneunitbox .text-wrapper .drag-text {
  display: inline-block;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .inset .zoneunitbox .text-wrapper .drag-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .inset .zoneunitbox .text-wrapper .drag-text {
    width: 100%;
  }
}
.inset .flowunit {
  justify-content: center;
  margin: 0 -12px;
}
.inset .flowunit .item {
  padding: 0 12px;
}
.inset .item {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .inset .item {
    margin-bottom: 16px;
  }
}
.inset .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 50px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 19px 45px 0 #0000001a;
}
@media (max-width: 992px) {
  .inset .item .item-wrapper {
    padding: 30px 20px;
    display: block;
  }
}
.inset .item .item-wrapper .item-content {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .inset .item .item-wrapper .item-content {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .inset .item .item-wrapper .item-content {
    width: 100%;
  }
}
.inset .item .item-wrapper .item-content .card-box .item-title {
  margin-bottom: 20px;
}
.inset .item .item-wrapper .item-content .card-box .item-text {
  margin-bottom: 0;
}.inset .item .item-wrapper .item-content .section-cta {
  margin-top: 40px;
}
@media (max-width: 992px) {.inset .item .item-wrapper .item-content .section-cta {
    margin-top: 20px;
  }
}.inset .item .item-wrapper .item-content .section-cta .btn {
  margin-bottom: 0;
}
.inset .item .item-wrapper .item-img {
  width: 30%;
}
@media (max-width: 992px) {
  .inset .item .item-wrapper .item-img {
    margin-bottom: 32px;
    width: 100%;
  }
}
.inset .item .item-wrapper .item-img img {
  height: 350px;
  width: 300px;
  object-fit: cover;
  border: 10px solid #e88ab6;
  box-shadow: 0 19px 45px 0 #0000001a;
}
@media (max-width: 992px) {
  .inset .item .item-wrapper .item-img img {
    height: 300px;
    width: 100%;
  }
}
.inset .item .card_1 {
  background-color: #18121f;
}
.inset .item .card_1 .item-img img {
  transform: rotate(-5deg) translateX(3rem);
}
@media (max-width: 992px) {
  .inset .item .card_1 .item-img img {
    transform: none;
  }
}
.inset .item .card_2 {
  background-color: #18121f;
}
.inset .item .card_2 .item-img img {
  transform: rotate(5deg) translateX(3rem);
}
@media (max-width: 992px) {
  .inset .item .card_2 .item-img img {
    transform: none;
  }
}
.inset .item .card_3 {
  background-color: #18121f;
}
.inset .item .card_3 .item-content {
  width: 40%;
}
@media (max-width: 1440px) {
  .inset .item .card_3 .item-content {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .inset .item .card_3 .item-content {
    width: 100%;
  }
}
.inset .item .card_3 .item-img {
  width: 40%;
}
@media (max-width: 992px) {
  .inset .item .card_3 .item-img {
    width: 100%;
  }
}
.inset .item .card_3 .item-img img {
  height: 400px;
  width: 100%;
  transform: rotate(5deg) translateY(5rem);
}
@media (max-width: 992px) {
  .inset .item .card_3 .item-img img {
    transform: none;
    height: 300px;
  }
}.inset .block-title,
.inset .chapter-title,
.inset .header-text,
.inset .lead-h2,
.inset .main-heading,
.inset .page-h,
.inset .section-h,
.inset .section-heading,
.inset .topic-title {
  color: #000c3f;
}
.inset .drag-text,
.inset .text-wrapper {
  color: #000c3f;
  text-align: center;
}.inset .block-title,
.inset .chapter-title,
.inset .header-text,
.inset .lead-h2,
.inset .main-heading,
.inset .page-h,
.inset .section-h,
.inset .section-heading,
.inset .topic-title {
  text-align: center;
}
.inset .item-title {
  color: #000c3f;
}
.inset .item-text {
  color: #ffffff;
  text-align: center;
}
.inset .item-title {
  text-align: center;
  color: #f4d7e6;
}
.coretrack {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #18121f;
}.coretrack .section-cta {
  margin-bottom: 22px;
}.coretrack .zoneunitbox .block-title,
.coretrack .zoneunitbox .chapter-title,
.coretrack .zoneunitbox .header-text,
.coretrack .zoneunitbox .lead-h2,
.coretrack .zoneunitbox .main-heading,
.coretrack .zoneunitbox .page-h,
.coretrack .zoneunitbox .section-h,
.coretrack .zoneunitbox .section-heading,
.coretrack .zoneunitbox .topic-title {
  margin-bottom: 32px;
}
.coretrack .text-wrapper .drag-text {
  margin-bottom: 0;
}.coretrack .block-title,
.coretrack .chapter-title,
.coretrack .header-text,
.coretrack .lead-h2,
.coretrack .main-heading,
.coretrack .page-h,
.coretrack .section-h,
.coretrack .section-heading,
.coretrack .topic-title {
  color: #000000;
}
.coretrack .drag-text {
  color: #000000;
}
.coretrack .drag-text,
.coretrack .text-wrapper {
  color: #ffffff;
}.coretrack .block-title,
.coretrack .chapter-title,
.coretrack .header-text,
.coretrack .lead-h2,
.coretrack .main-heading,
.coretrack .page-h,
.coretrack .section-h,
.coretrack .section-heading,
.coretrack .topic-title,
.coretrack .section-cta {
  color: #f4d7e6;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}
.body {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .body .navbar-toggler {
    transform: scale(0.8);
  }
}
.body .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .body .navbar {
    padding: 0 128px !important;
  }
}
.body .navbar .floatbox img {
  width: auto;
}
.body .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .body .navbar {
    min-height: 72px;
  }
  .body .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .body .navbar .nav-item .nav-link::before {
    display: none;
  }
  .body .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .body .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.body .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.body .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.body .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.body .navbar-brand .floatbox a {
  outline: none;
}
.body .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.body .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.body .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .body .navbar-nav {
    padding-left: 1.5rem;
  }
}
.body .nav-link {
  width: fit-content;
  position: relative;
}
.body .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .body .floatbox {
    padding-left: 1rem;
  }
}
.body .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .body .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.body .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .body .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .body .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.body .nav-item:focus,
.body .nav-link:focus {
  outline: none;
}
.body .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.body ul.navbar-nav {
  flex-wrap: wrap;
}
.body button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.body .primary-nav {
  padding: 0 1rem;
}
.body a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .body .navbar {
    height: 70px;
  }
  .body .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.body .section-cta {
  margin: -0.6rem -0.6rem;
}
.body .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .body .navbar-brand {
    margin-right: auto;
  }
  .body .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .body .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .body .navbar-collapse {
    padding: 1rem;
  }
}
.viewsegment {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #21182a;
}
.viewsegment .spanlayer {
  justify-content: space-between;
}
.viewsegment .outline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px;
  background-color: #18121f;
}
@media (max-width: 1440px) {
  .viewsegment .outline {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .viewsegment .outline {
    padding: 26px 22px 22px;
    margin-bottom: 12px;
  }
}.viewsegment .outline .pane .block-title,
.viewsegment .outline .pane .chapter-title,
.viewsegment .outline .pane .header-text,
.viewsegment .outline .pane .lead-h2,
.viewsegment .outline .pane .main-heading,
.viewsegment .outline .pane .page-h,
.viewsegment .outline .pane .section-h,
.viewsegment .outline .pane .section-heading,
.viewsegment .outline .pane .topic-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {.viewsegment .outline .pane .block-title,
.viewsegment .outline .pane .chapter-title,
.viewsegment .outline .pane .header-text,
.viewsegment .outline .pane .lead-h2,
.viewsegment .outline .pane .main-heading,
.viewsegment .outline .pane .page-h,
.viewsegment .outline .pane .section-h,
.viewsegment .outline .pane .section-heading,
.viewsegment .outline .pane .topic-title {
    margin-bottom: 32px;
  }
}
.viewsegment .outline .pane .drag-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .viewsegment .outline .pane .drag-text {
    margin-bottom: 22px;
  }
}.viewsegment .outline .pane .section-cta .btn {
  margin-bottom: 0;
}
.viewsegment .unitband {
  position: relative;
  border: 3px solid #18121f;
  background-color: #18121f;
  height: 100%;
}
@media (max-width: 992px) {
  .viewsegment .unitband {
    height: 350px;
  }
}
.viewsegment .unitband .corefield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.viewsegment .unitband .corefield img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}.viewsegment .block-title,
.viewsegment .chapter-title,
.viewsegment .header-text,
.viewsegment .lead-h2,
.viewsegment .main-heading,
.viewsegment .page-h,
.viewsegment .section-h,
.viewsegment .section-heading,
.viewsegment .topic-title {
  color: #191c25;
}
.viewsegment .drag-text {
  color: #ffffff;
  text-align: center;
}.viewsegment .block-title,
.viewsegment .chapter-title,
.viewsegment .header-text,
.viewsegment .lead-h2,
.viewsegment .main-heading,
.viewsegment .page-h,
.viewsegment .section-h,
.viewsegment .section-heading,
.viewsegment .topic-title,
.viewsegment .section-cta {
  text-align: center;
  color: #f4d7e6;
}
.stage {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #18121f;
}
.stage .outline {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .stage .outline {
    margin-bottom: 32px;
  }
}
.stage .outline .zoneunitbox {
  margin-bottom: 16px;
}.stage .outline .zoneunitbox .block-title,
.stage .outline .zoneunitbox .chapter-title,
.stage .outline .zoneunitbox .header-text,
.stage .outline .zoneunitbox .lead-h2,
.stage .outline .zoneunitbox .main-heading,
.stage .outline .zoneunitbox .page-h,
.stage .outline .zoneunitbox .section-h,
.stage .outline .zoneunitbox .section-heading,
.stage .outline .zoneunitbox .topic-title {
  margin-bottom: 0;
}.stage .outline .zoneunitbox .h-secondary {
  margin-bottom: 0;
}
.stage .outline .text-wrapper .drag-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .stage .outline .text-wrapper .drag-text {
    width: 100%;
  }
}
.stage .flowunit {
  margin: 0 -8px;
  align-items: center;
}
.stage .flowunit .item {
  padding: 0 8px;
  margin-bottom: 16px;
}
.stage .flowunit .item .item-wrapper {
  position: relative;
  overflow: hidden;
}
.stage .flowunit .item .item-wrapper .gridcell {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, transparent, #e88ab6);
  opacity: .3;
}
.stage .flowunit .item .item-wrapper .modlayer {
  position: absolute;
  top: -90%;
  left: -40%;
  width: 640px;
  height: 640px;
  border-radius: 100%;
  background-image: linear-gradient(0deg, transparent, #e88ab6);
  opacity: .3;
  z-index: 1;
}
@media (max-width: 1200px) {
  .stage .flowunit .item .item-wrapper .modlayer {
    left: -70%;
  }
}
@media (max-width: 768px) {
  .stage .flowunit .item .item-wrapper .modlayer {
    left: -120%;
  }
}
@media (max-width: 425px) {
  .stage .flowunit .item .item-wrapper .modlayer {
    left: -160%;
  }
}
.stage .flowunit .item .item-wrapper .modlayer.reverse {
  top: auto;
  left: auto;
  bottom: -90%;
  right: -40%;
  background-image: linear-gradient(180deg, transparent, #e88ab6);
}
@media (max-width: 1200px) {
  .stage .flowunit .item .item-wrapper .modlayer.reverse {
    left: auto;
    right: -70%;
  }
}
@media (max-width: 768px) {
  .stage .flowunit .item .item-wrapper .modlayer.reverse {
    left: auto;
    right: -120%;
  }
}
@media (max-width: 425px) {
  .stage .flowunit .item .item-wrapper .modlayer.reverse {
    left: auto;
    right: -160%;
  }
}
.stage .flowunit .item .item-wrapper .item-content {
  display: flex;
  justify-content: space-between;
  padding: 32px;
  min-height: 330px;
  border: 8px solid;
}
@media (max-width: 992px) {
  .stage .flowunit .item .item-wrapper .item-content {
    display: block;
    padding: 24px;
    min-height: auto;
    border: 4px solid;
  }
}
.stage .flowunit .item .item-wrapper .item-content .card-box {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .stage .flowunit .item .item-wrapper .item-content .card-box {
    margin-bottom: 24px;
  }
}
.stage .flowunit .item .item-wrapper .item-content .card-box .card-title_1,
.stage .flowunit .item .item-wrapper .item-content .card-box .card-title_2,
.stage .flowunit .item .item-wrapper .item-content .card-box .card-title_3,
.stage .flowunit .item .item-wrapper .item-content .card-box .card-title_4 {
  margin-bottom: 16px;
}
.stage .flowunit .item .item-wrapper .item-content .card-box .card-text_1,
.stage .flowunit .item .item-wrapper .item-content .card-box .card-text_2,
.stage .flowunit .item .item-wrapper .item-content .card-box .card-text_3,
.stage .flowunit .item .item-wrapper .item-content .card-box .card-text_4 {
  margin-bottom: 0;
}.stage .flowunit .item .item-wrapper .item-content .card-box .section-cta {
  margin-top: 24px;
}.stage .flowunit .item .item-wrapper .item-content .card-box .section-cta .btn {
  margin-bottom: 0;
  box-shadow: none !important;
}
.stage .flowunit .item .item-wrapper .item-content .item-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  margin-right: 24px;
}
@media (max-width: 992px) {
  .stage .flowunit .item .item-wrapper .item-content .item-img {
    display: block;
    margin-right: 0;
  }
}
.stage .flowunit .item .item-wrapper .item-content .item-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .stage .flowunit .item .item-wrapper .item-content .item-img img {
    margin: 0 auto;
  }
}
.stage .flowunit .item .item-wrapper .card_1 .card-box,
.stage .flowunit .item .item-wrapper .card_4 .card-box {
  width: 50%;
}
@media (max-width: 992px) {
  .stage .flowunit .item .item-wrapper .card_1 .card-box,
  .stage .flowunit .item .item-wrapper .card_4 .card-box {
    width: 100%;
  }
}
.stage .flowunit .item .item-wrapper .card_1 {
  background-color: #21182a;
  border-color: #21182a;
}
.stage .flowunit .item .item-wrapper .card_2 {
  background-color: #18121f;
  border-color: #18121f;
}
.stage .flowunit .item .item-wrapper .card_3 {
  background-color: #18121f;
  border-color: #18121f;
}
.stage .flowunit .item .item-wrapper .card_4 {
  background-color: #18121f;
  border-color: #18121f;
}
.stage .btn-wrapper {
  margin-right: 9%;
}.stage .block-title,
.stage .chapter-title,
.stage .header-text,
.stage .lead-h2,
.stage .main-heading,
.stage .page-h,
.stage .section-h,
.stage .section-heading,
.stage .topic-title {
  color: #111111;
  text-align: center;
}.stage .h-secondary {
  color: #ff6d99;
  text-align: center;
}
.stage .drag-text,
.stage .text-wrapper {
  color: #666666;
  text-align: center;
}
.stage .card-title_1 {
  color: #ffffff;
}
.stage .card-title_2 {
  color: #f4d7e6;
}
.stage .card-title_3 {
  color: #f4d7e6;
}
.stage .card-title_4 {
  color: #ffffff;
}
.stage .card-text_1 {
  color: #ffffff;
}
.stage .card-text_2 {
  color: #ffffff;
}
.stage .card-text_3 {
  color: #ffffff;
}
.stage .card-text_4 {
  color: #ffffff;
}.stage .card-title_1,
.stage .section-cta {
  color: #f4d7e6;
}.stage .card-title_4,
.stage .section-cta {
  color: #f4d7e6;
}
.contentgrid {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #21182a;
}
.contentgrid .drag-text {
  color: #ffffff;
}.contentgrid .h-secondary {
  color: #f3f6f9;
}.contentgrid .block-title,
.contentgrid .chapter-title,
.contentgrid .header-text,
.contentgrid .lead-h2,
.contentgrid .main-heading,
.contentgrid .page-h,
.contentgrid .section-h,
.contentgrid .section-heading,
.contentgrid .topic-title {
  color: #f4d7e6;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}
.body {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .body .navbar-toggler {
    transform: scale(0.8);
  }
}
.body .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .body .navbar {
    padding: 0 128px !important;
  }
}
.body .navbar .floatbox img {
  width: auto;
}
.body .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .body .navbar {
    min-height: 72px;
  }
  .body .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .body .navbar .nav-item .nav-link::before {
    display: none;
  }
  .body .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .body .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.body .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.body .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.body .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.body .navbar-brand .floatbox a {
  outline: none;
}
.body .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.body .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.body .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .body .navbar-nav {
    padding-left: 1.5rem;
  }
}
.body .nav-link {
  width: fit-content;
  position: relative;
}
.body .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .body .floatbox {
    padding-left: 1rem;
  }
}
.body .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .body .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.body .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .body .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .body .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.body .nav-item:focus,
.body .nav-link:focus {
  outline: none;
}
.body .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.body ul.navbar-nav {
  flex-wrap: wrap;
}
.body button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.body .primary-nav {
  padding: 0 1rem;
}
.body a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .body .navbar {
    height: 70px;
  }
  .body .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.body .section-cta {
  margin: -0.6rem -0.6rem;
}
.body .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .body .navbar-brand {
    margin-right: auto;
  }
  .body .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .body .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .body .navbar-collapse {
    padding: 1rem;
  }
}
.boxholder {
  padding-top: 9rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #21182a;
}
.boxholder .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .boxholder .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .boxholder .container {
    padding: 0 24px;
  }
}
.boxholder .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.boxholder .unitband {
  height: 100%;
}
.boxholder .unitband img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .boxholder .unitband img {
    height: 350px;
  }
}
.boxholder .outline {
  display: flex;
  align-items: center;
  background-color: #18121f;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .boxholder .outline {
    padding: 24px;
  }
}
.boxholder .outline .pane {
  width: 100%;
}.boxholder .outline .pane .block-title,
.boxholder .outline .pane .chapter-title,
.boxholder .outline .pane .header-text,
.boxholder .outline .pane .lead-h2,
.boxholder .outline .pane .main-heading,
.boxholder .outline .pane .page-h,
.boxholder .outline .pane .section-h,
.boxholder .outline .pane .section-heading,
.boxholder .outline .pane .topic-title {
  margin-bottom: 32px;
}
.boxholder .outline .pane .drag-text {
  margin-bottom: 16px;
}.boxholder .outline .pane .section-cta .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}.boxholder .outline .pane .section-cta .btn:hover,
.boxholder .outline .pane .section-cta .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}.boxholder .block-title,
.boxholder .chapter-title,
.boxholder .header-text,
.boxholder .lead-h2,
.boxholder .main-heading,
.boxholder .page-h,
.boxholder .section-h,
.boxholder .section-heading,
.boxholder .topic-title {
  color: #141414;
}
.boxholder .drag-text {
  color: #ffffff;
  text-align: center;
}.boxholder .block-title,
.boxholder .chapter-title,
.boxholder .header-text,
.boxholder .lead-h2,
.boxholder .main-heading,
.boxholder .page-h,
.boxholder .section-h,
.boxholder .section-heading,
.boxholder .topic-title,
.boxholder .zoneunitbox,
.boxholder .section-cta {
  text-align: center;
  color: #f4d7e6;
}
.sectionunit {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #18121f;
}
.sectionunit .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .sectionunit .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .sectionunit .container {
    padding: 0 24px;
  }
}
.sectionunit .row {
  justify-content: center;
}
.sectionunit .outline {
  border-radius: 40px;
  background-color: #21182a;
  padding: 64px;
}
@media (max-width: 992px) {
  .sectionunit .outline {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .sectionunit .outline {
    padding: 32px;
  }
}.sectionunit .outline .block-title,
.sectionunit .outline .chapter-title,
.sectionunit .outline .header-text,
.sectionunit .outline .lead-h2,
.sectionunit .outline .main-heading,
.sectionunit .outline .page-h,
.sectionunit .outline .section-h,
.sectionunit .outline .section-heading,
.sectionunit .outline .topic-title {
  margin-bottom: 0;
}
.sectionunit .outline .drag-text {
  margin: 16px 0 0;
}.sectionunit .block-title,
.sectionunit .chapter-title,
.sectionunit .header-text,
.sectionunit .lead-h2,
.sectionunit .main-heading,
.sectionunit .page-h,
.sectionunit .section-h,
.sectionunit .section-heading,
.sectionunit .topic-title {
  color: #FF3399;
}
.sectionunit .drag-text {
  color: #ffffff;
}
.subunit {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #21182a;
}
.subunit .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .subunit .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .subunit .container {
    padding: 0 25px;
  }
}
.subunit .row {
  justify-content: center;
}
.subunit .zoneunitbox {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .subunit .zoneunitbox {
    margin-bottom: 20px;
  }
}.subunit .zoneunitbox .block-title,
.subunit .zoneunitbox .chapter-title,
.subunit .zoneunitbox .header-text,
.subunit .zoneunitbox .lead-h2,
.subunit .zoneunitbox .main-heading,
.subunit .zoneunitbox .page-h,
.subunit .zoneunitbox .section-h,
.subunit .zoneunitbox .section-heading,
.subunit .zoneunitbox .topic-title {
  margin-bottom: 0;
}.subunit .section-cta {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {.subunit .section-cta {
    margin-bottom: 20px;
    text-align: right;
  }
}
.subunit .outline {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .subunit .outline {
    display: block;
  }
}
.subunit .outline .unitband {
  width: 50%;
}
@media (max-width: 992px) {
  .subunit .outline .unitband {
    width: 100%;
  }
}
.subunit .outline .unitband img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .subunit .outline .unitband img {
    height: 350px;
  }
}
.subunit .outline .cont-wrapper {
  padding: 50px 60px;
  background-color: #18121f;
  width: 50%;
}
@media (max-width: 992px) {
  .subunit .outline .cont-wrapper {
    padding: 30px;
    width: 100%;
  }
}.subunit .outline .cont-wrapper .block-title,
.subunit .outline .cont-wrapper .chapter-title,
.subunit .outline .cont-wrapper .header-text,
.subunit .outline .cont-wrapper .lead-h2,
.subunit .outline .cont-wrapper .main-heading,
.subunit .outline .cont-wrapper .page-h,
.subunit .outline .cont-wrapper .section-h,
.subunit .outline .cont-wrapper .section-heading,
.subunit .outline .cont-wrapper .topic-title {
  margin-bottom: 10px;
}
.subunit .outline .cont-wrapper .drag-text {
  margin-bottom: 0;
}
.subunit .outline .cont-wrapper .bodywrap {
  margin-top: 16px;
}
.subunit .drag-text {
  color: #ffffff;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}
.body {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .body .navbar-toggler {
    transform: scale(0.8);
  }
}
.body .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .body .navbar {
    padding: 0 128px !important;
  }
}
.body .navbar .floatbox img {
  width: auto;
}
.body .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .body .navbar {
    min-height: 72px;
  }
  .body .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .body .navbar .nav-item .nav-link::before {
    display: none;
  }
  .body .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .body .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.body .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.body .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.body .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.body .navbar-brand .floatbox a {
  outline: none;
}
.body .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.body .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.body .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .body .navbar-nav {
    padding-left: 1.5rem;
  }
}
.body .nav-link {
  width: fit-content;
  position: relative;
}
.body .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .body .floatbox {
    padding-left: 1rem;
  }
}
.body .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .body .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.body .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .body .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .body .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.body .nav-item:focus,
.body .nav-link:focus {
  outline: none;
}
.body .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.body ul.navbar-nav {
  flex-wrap: wrap;
}
.body button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.body .primary-nav {
  padding: 0 1rem;
}
.body a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .body .navbar {
    height: 70px;
  }
  .body .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.body .section-cta {
  margin: -0.6rem -0.6rem;
}
.body .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .body .navbar-brand {
    margin-right: auto;
  }
  .body .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .body .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .body .navbar-collapse {
    padding: 1rem;
  }
}
.layerbox {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #18121f;
}
.layerbox .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .layerbox .container-fluid {
    padding: 0 25px;
  }
}
.layerbox .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .layerbox .container {
    padding: 0 25px;
  }
}
.layerbox .row {
  border: 1px solid #21182a;
}
.layerbox .card {
  padding: 0;
}
.layerbox .card .unitband {
  height: 100%;
  display: flex;
  align-items: center;
}
.layerbox .card .unitband img {
  height: 100%;
  object-fit: cover;
  max-height: 610px;
}
@media (max-width: 992px) {
  .layerbox .card .unitband img {
    max-height: 100%;
    height: 300px;
  }
}
.layerbox .zoneunitbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 70px 60px;
  height: 100%;
  background-color: #21182a;
}
@media (max-width: 992px) {
  .layerbox .zoneunitbox {
    padding: 60px 25px;
  }
}
.layerbox .zoneunitbox .stack {
  width: 100%;
}.layerbox .zoneunitbox .stack .block-title,
.layerbox .zoneunitbox .stack .chapter-title,
.layerbox .zoneunitbox .stack .header-text,
.layerbox .zoneunitbox .stack .lead-h2,
.layerbox .zoneunitbox .stack .main-heading,
.layerbox .zoneunitbox .stack .page-h,
.layerbox .zoneunitbox .stack .section-h,
.layerbox .zoneunitbox .stack .section-heading,
.layerbox .zoneunitbox .stack .topic-title {
  margin-bottom: 20px;
}
.layerbox .zoneunitbox .stack .drag-text {
  margin-bottom: 20px;
}.layerbox .zoneunitbox .stack .section-cta {
  margin-top: 35px;
}.layerbox .block-title,
.layerbox .chapter-title,
.layerbox .header-text,
.layerbox .lead-h2,
.layerbox .main-heading,
.layerbox .page-h,
.layerbox .section-h,
.layerbox .section-heading,
.layerbox .topic-title {
  color: #ffffff;
}
.layerbox .drag-text {
  color: #ffffff;
  text-align: center;
}.layerbox .block-title,
.layerbox .chapter-title,
.layerbox .header-text,
.layerbox .lead-h2,
.layerbox .main-heading,
.layerbox .page-h,
.layerbox .section-h,
.layerbox .section-heading,
.layerbox .topic-title,
.layerbox .section-cta {
  color: #f4d7e6;
  text-align: center;
}
.shiftbox {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #21182a;
}
@media (max-width: 992px) {
  .shiftbox .container {
    padding: 0 30px;
  }
}
.shiftbox .row {
  justify-content: center;
}
.shiftbox .zoneunitbox {
  margin: 0 12%;
  border-bottom: 1px solid #e88ab6;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .shiftbox .zoneunitbox {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 992px) {
  .shiftbox .zoneunitbox {
    margin: 0;
  }
}.shiftbox .zoneunitbox .h-secondary {
  margin-bottom: 30px;
}.shiftbox .zoneunitbox .block-title,
.shiftbox .zoneunitbox .chapter-title,
.shiftbox .zoneunitbox .header-text,
.shiftbox .zoneunitbox .lead-h2,
.shiftbox .zoneunitbox .main-heading,
.shiftbox .zoneunitbox .page-h,
.shiftbox .zoneunitbox .section-h,
.shiftbox .zoneunitbox .section-heading,
.shiftbox .zoneunitbox .topic-title {
  margin-bottom: 50px;
}
.shiftbox .text-wrapper .drag-text {
  margin-bottom: 16px;
}.shiftbox .h-secondary {
  color: #f1f4e9;
  text-align: center;
}.shiftbox .block-title,
.shiftbox .chapter-title,
.shiftbox .header-text,
.shiftbox .lead-h2,
.shiftbox .main-heading,
.shiftbox .page-h,
.shiftbox .section-h,
.shiftbox .section-heading,
.shiftbox .topic-title {
  color: #f4d7e6;
  text-align: center;
}
.shiftbox .drag-text {
  color: #ffffff;
  text-align: center;
}
.core {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #18121f;
}
.core .container,
.core .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .core .container,
  .core .container-fluid {
    padding: 0 20px;
  }
}
.core .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #e88ab6;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .core .row {
    padding: 85px 8px;
  }
}
.core .zoneunitbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .core .zoneunitbox {
    padding: 0;
  }
}.core .zoneunitbox .block-title,
.core .zoneunitbox .chapter-title,
.core .zoneunitbox .header-text,
.core .zoneunitbox .lead-h2,
.core .zoneunitbox .main-heading,
.core .zoneunitbox .page-h,
.core .zoneunitbox .section-h,
.core .zoneunitbox .section-heading,
.core .zoneunitbox .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {.core .zoneunitbox .block-title,
.core .zoneunitbox .chapter-title,
.core .zoneunitbox .header-text,
.core .zoneunitbox .lead-h2,
.core .zoneunitbox .main-heading,
.core .zoneunitbox .page-h,
.core .zoneunitbox .section-h,
.core .zoneunitbox .section-heading,
.core .zoneunitbox .topic-title {
    margin-bottom: 20px;
  }
}
.core .zoneunitbox .drag-text {
  margin-bottom: 20px;
}
.core .unitband {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .core .unitband {
    margin-bottom: 50px;
    height: auto;
  }
}
.core .unitband img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .core .unitband img {
    height: 300px;
  }
}.core .block-title,
.core .chapter-title,
.core .header-text,
.core .lead-h2,
.core .main-heading,
.core .page-h,
.core .section-h,
.core .section-heading,
.core .topic-title {
  color: #3d4045;
}
.core .drag-text {
  color: #ffffff;
  text-align: center;
}.core .block-title,
.core .chapter-title,
.core .header-text,
.core .lead-h2,
.core .main-heading,
.core .page-h,
.core .section-h,
.core .section-heading,
.core .topic-title,
.core .section-cta {
  text-align: center;
  color: #f4d7e6;
}
.domwrap {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #21182a;
}.domwrap .block-title,
.domwrap .chapter-title,
.domwrap .header-text,
.domwrap .lead-h2,
.domwrap .main-heading,
.domwrap .page-h,
.domwrap .section-h,
.domwrap .section-heading,
.domwrap .topic-title {
  color: #f4d7e6;
}
.domwrap .drag-subtitle {
  color: #ffffff;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}
.body {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .body .navbar-toggler {
    transform: scale(0.8);
  }
}
.body .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .body .navbar {
    padding: 0 128px !important;
  }
}
.body .navbar .floatbox img {
  width: auto;
}
.body .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .body .navbar {
    min-height: 72px;
  }
  .body .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .body .navbar .nav-item .nav-link::before {
    display: none;
  }
  .body .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .body .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.body .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.body .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.body .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.body .navbar-brand .floatbox a {
  outline: none;
}
.body .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.body .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.body .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .body .navbar-nav {
    padding-left: 1.5rem;
  }
}
.body .nav-link {
  width: fit-content;
  position: relative;
}
.body .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .body .floatbox {
    padding-left: 1rem;
  }
}
.body .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .body .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.body .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .body .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .body .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.body .nav-item:focus,
.body .nav-link:focus {
  outline: none;
}
.body .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.body ul.navbar-nav {
  flex-wrap: wrap;
}
.body button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.body .primary-nav {
  padding: 0 1rem;
}
.body a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .body .navbar {
    height: 70px;
  }
  .body .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.body .section-cta {
  margin: -0.6rem -0.6rem;
}
.body .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .body .navbar-brand {
    margin-right: auto;
  }
  .body .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .body .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .body .navbar-collapse {
    padding: 1rem;
  }
}
.colwrap {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("images/bluepicture1.jpeg");
}
.colwrap .drag-overlay {
  background-color: #0d0a12;
  opacity: 0.7;
}
@media (min-width: 992px) {
  .colwrap form {
    width: 50%;
  }
}.colwrap form .section-cta {
  text-align: center;
  width: 100%;
}.colwrap form .section-cta .btn {
  width: 100%;
}.colwrap .block-title,
.colwrap .chapter-title,
.colwrap .header-text,
.colwrap .lead-h2,
.colwrap .main-heading,
.colwrap .page-h,
.colwrap .section-h,
.colwrap .section-heading,
.colwrap .topic-title {
  color: #f4d7e6;
}
.zonecore {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #18121f;
}
.zonecore .spanlayer {
  justify-content: space-between;
}
.zonecore .spanlayer .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .zonecore .outline {
    margin-bottom: 32px;
  }
}.zonecore .outline .block-title,
.zonecore .outline .chapter-title,
.zonecore .outline .header-text,
.zonecore .outline .lead-h2,
.zonecore .outline .main-heading,
.zonecore .outline .page-h,
.zonecore .outline .section-h,
.zonecore .outline .section-heading,
.zonecore .outline .topic-title {
  margin-bottom: 32px;
}.zonecore .outline .block-title span,
.zonecore .outline .chapter-title span,
.zonecore .outline .header-text span,
.zonecore .outline .lead-h2 span,
.zonecore .outline .main-heading span,
.zonecore .outline .page-h span,
.zonecore .outline .section-h span,
.zonecore .outline .section-heading span,
.zonecore .outline .topic-title span {
  color: #bcfe1e;
}
.zonecore .outline .text-wrapper .drag-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .zonecore .outline .text-wrapper .drag-text {
    margin-bottom: 16px;
    width: 100%;
  }
}
.zonecore .unitband {
  margin-bottom: 32px;
}
.zonecore .unitband img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .zonecore .unitband img {
    height: 350px;
  }
}.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 .drag-text,
.zonecore .text-wrapper {
  color: #ffffff;
  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 .section-cta {
  text-align: center;
  color: #f4d7e6;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}
.body {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .body .navbar-toggler {
    transform: scale(0.8);
  }
}
.body .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .body .navbar {
    padding: 0 128px !important;
  }
}
.body .navbar .floatbox img {
  width: auto;
}
.body .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .body .navbar {
    min-height: 72px;
  }
  .body .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .body .navbar .nav-item .nav-link::before {
    display: none;
  }
  .body .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .body .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.body .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.body .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.body .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.body .navbar-brand .floatbox a {
  outline: none;
}
.body .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.body .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.body .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .body .navbar-nav {
    padding-left: 1.5rem;
  }
}
.body .nav-link {
  width: fit-content;
  position: relative;
}
.body .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .body .floatbox {
    padding-left: 1rem;
  }
}
.body .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .body .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.body .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .body .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .body .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.body .nav-item:focus,
.body .nav-link:focus {
  outline: none;
}
.body .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.body ul.navbar-nav {
  flex-wrap: wrap;
}
.body button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.body .primary-nav {
  padding: 0 1rem;
}
.body a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .body .navbar {
    height: 70px;
  }
  .body .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.body .section-cta {
  margin: -0.6rem -0.6rem;
}
.body .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .body .navbar-brand {
    margin-right: auto;
  }
  .body .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .body .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .body .navbar-collapse {
    padding: 1rem;
  }
}
.subbox {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("images/hardglow1.jpg");
}
.subbox .card-wrapper {
  background: #18121f;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .subbox .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .subbox .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .subbox .card-wrapper {
    padding: 4rem;
  }
}
.subbox .card-title {
  color: #f4d7e6;
}.subbox .drag-text,
.subbox .section-cta {
  color: #ffffff;
}
.board {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #18121f;
}
.board .drag-text {
  color: #ffffff;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}
.nodeunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .nodeunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.nodeunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .nodeunit .navbar {
    padding: 0 128px !important;
  }
}
.nodeunit .navbar .floatbox img {
  width: auto;
}
.nodeunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .nodeunit .navbar {
    min-height: 72px;
  }
  .nodeunit .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .nodeunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .nodeunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .nodeunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.nodeunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.nodeunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.nodeunit .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.nodeunit .navbar-brand .floatbox a {
  outline: none;
}
.nodeunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.nodeunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.nodeunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .nodeunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.nodeunit .nav-link {
  width: fit-content;
  position: relative;
}
.nodeunit .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .nodeunit .floatbox {
    padding-left: 1rem;
  }
}
.nodeunit .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .nodeunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.nodeunit .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .nodeunit .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .nodeunit .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.nodeunit .nav-item:focus,
.nodeunit .nav-link:focus {
  outline: none;
}
.nodeunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.nodeunit ul.navbar-nav {
  flex-wrap: wrap;
}
.nodeunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.nodeunit .primary-nav {
  padding: 0 1rem;
}
.nodeunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .nodeunit .navbar {
    height: 70px;
  }
  .nodeunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.nodeunit .section-cta {
  margin: -0.6rem -0.6rem;
}
.nodeunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .nodeunit .navbar-brand {
    margin-right: auto;
  }
  .nodeunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .nodeunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .nodeunit .navbar-collapse {
    padding: 1rem;
  }
}
.navunit {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("images/hardglow1.jpg");
}
.navunit .card-wrapper {
  background: #18121f;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .navunit .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navunit .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .navunit .card-wrapper {
    padding: 4rem;
  }
}
.navunit .card-title {
  color: #f4d7e6;
}.navunit .drag-text,
.navunit .section-cta {
  color: #ffffff;
}
.inner {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #18121f;
}
.inner .drag-text {
  color: #ffffff;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}
.domcore {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .domcore .navbar-toggler {
    transform: scale(0.8);
  }
}
.domcore .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .domcore .navbar {
    padding: 0 128px !important;
  }
}
.domcore .navbar .floatbox img {
  width: auto;
}
.domcore .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .domcore .navbar {
    min-height: 72px;
  }
  .domcore .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .domcore .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domcore .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .domcore .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domcore .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.domcore .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.domcore .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.domcore .navbar-brand .floatbox a {
  outline: none;
}
.domcore .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.domcore .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.domcore .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .domcore .navbar-nav {
    padding-left: 1.5rem;
  }
}
.domcore .nav-link {
  width: fit-content;
  position: relative;
}
.domcore .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .domcore .floatbox {
    padding-left: 1rem;
  }
}
.domcore .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .domcore .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.domcore .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .domcore .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .domcore .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.domcore .nav-item:focus,
.domcore .nav-link:focus {
  outline: none;
}
.domcore .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domcore ul.navbar-nav {
  flex-wrap: wrap;
}
.domcore button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.domcore .primary-nav {
  padding: 0 1rem;
}
.domcore a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domcore .navbar {
    height: 70px;
  }
  .domcore .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.domcore .section-cta {
  margin: -0.6rem -0.6rem;
}
.domcore .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .domcore .navbar-brand {
    margin-right: auto;
  }
  .domcore .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .domcore .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .domcore .navbar-collapse {
    padding: 1rem;
  }
}
.colbox {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("images/hardglow1.jpg");
}
.colbox .card-wrapper {
  background: #18121f;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .colbox .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .colbox .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .colbox .card-wrapper {
    padding: 4rem;
  }
}
.colbox .card-title {
  color: #f4d7e6;
}.colbox .drag-text,
.colbox .section-cta {
  color: #ffffff;
}
.flowbox {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #18121f;
}
.flowbox .drag-text {
  color: #ffffff;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}
.wrapunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .wrapunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.wrapunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (min-width: 1400px) {
  .wrapunit .navbar {
    padding: 0 128px !important;
  }
}
.wrapunit .navbar .floatbox img {
  width: auto;
}
.wrapunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .wrapunit .navbar {
    min-height: 72px;
  }
  .wrapunit .navbar .floatbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .wrapunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .wrapunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .wrapunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.wrapunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.wrapunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.wrapunit .navbar-brand .linedockbox {
  line-height: inherit !important;
}
.wrapunit .navbar-brand .floatbox a {
  outline: none;
}
.wrapunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.wrapunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.wrapunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
@media (min-width: 992px) {
  .wrapunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.wrapunit .nav-link {
  width: fit-content;
  position: relative;
}
.wrapunit .floatbox {
  padding-left: 0.5rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .wrapunit .floatbox {
    padding-left: 1rem;
  }
}
.wrapunit .linedockbox {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .wrapunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.wrapunit .container {
  display: flex;
  height: 90px;
  max-width: 100%;
  border-bottom: 1px solid #f4d7e6;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  background-color: #121018;
}
@media (max-width: 992px) {
  .wrapunit .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .wrapunit .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.wrapunit .nav-item:focus,
.wrapunit .nav-link:focus {
  outline: none;
}
.wrapunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.wrapunit ul.navbar-nav {
  flex-wrap: wrap;
}
.wrapunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.wrapunit .primary-nav {
  padding: 0 1rem;
}
.wrapunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .wrapunit .navbar {
    height: 70px;
  }
  .wrapunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.wrapunit .section-cta {
  margin: -0.6rem -0.6rem;
}
.wrapunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .wrapunit .navbar-brand {
    margin-right: auto;
  }
  .wrapunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #121018;
    backdrop-filter: blur(8px);
  }
  .wrapunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .wrapunit .navbar-collapse {
    padding: 1rem;
  }
}
.panebox {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("images/hardglow1.jpg");
}
.panebox .card-wrapper {
  background: #18121f;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .panebox .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .panebox .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .panebox .card-wrapper {
    padding: 4rem;
  }
}
.panebox .card-title {
  color: #f4d7e6;
}.panebox .drag-text,
.panebox .section-cta {
  color: #ffffff;
}
.field {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #18121f;
}
.field .drag-text {
  color: #ffffff;
}
.layoutwrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0d0a12;
}
.layoutwrap .row {
  justify-content: center;
}
.layoutwrap .row .card {
  justify-content: space-between;
}
.layoutwrap .outline {
  margin-bottom: 20px;
}
.layoutwrap .outline .pane {
  display: inline-block;
  flex-direction: column;
  width: 35%;
}
@media (max-width: 1440px) {
  .layoutwrap .outline .pane {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane {
    width: 100%;
  }
}
.layoutwrap .outline .pane .unitband {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .outline .pane .unitband {
    margin-bottom: 20px;
  }
}
.layoutwrap .outline .pane .unitband img {
  height: 260px;
  object-fit: cover;
}.layoutwrap .outline .pane .zoneunitbox .block-title,
.layoutwrap .outline .pane .zoneunitbox .chapter-title,
.layoutwrap .outline .pane .zoneunitbox .header-text,
.layoutwrap .outline .pane .zoneunitbox .lead-h2,
.layoutwrap .outline .pane .zoneunitbox .main-heading,
.layoutwrap .outline .pane .zoneunitbox .page-h,
.layoutwrap .outline .pane .zoneunitbox .section-h,
.layoutwrap .outline .pane .zoneunitbox .section-heading,
.layoutwrap .outline .pane .zoneunitbox .topic-title {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .layoutwrap .nav-wrapper .nav-wrap:first-child {
    margin-bottom: 20px;
  }
}
.layoutwrap .nav-wrapper .nav-wrap .drag-list-title {
  margin-bottom: 20px;
}
.layoutwrap .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:hover,
.layoutwrap .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #093388;
}.layoutwrap .section-cta {
  margin-bottom: 20px;
}.layoutwrap .section-cta .btn {
  margin-bottom: 0;
}
.layoutwrap .corewrapbox {
  width: 100%;
  height: 1px;
  background-color: #e88ab6;
  margin-bottom: 20px;
}
.layoutwrap .drag-copy {
  margin-bottom: 0;
  color: #f4d7e6;
}.layoutwrap .block-title,
.layoutwrap .chapter-title,
.layoutwrap .header-text,
.layoutwrap .lead-h2,
.layoutwrap .main-heading,
.layoutwrap .page-h,
.layoutwrap .section-h,
.layoutwrap .section-heading,
.layoutwrap .topic-title {
  color: #093388;
}
.layoutwrap .drag-list-title {
  color: #f4d7e6;
}
.layoutwrap .list {
  color: #58595b;
}

.hint-panel {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.hint-panel *,
.hint-panel *::before,
.hint-panel *::after {
  box-sizing: border-box;
}

.neutralbox {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(214, 221, 228, 0.8);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.neutralbox::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7db7ff 0%, #8fcfbe 50%, #d9d3ff 100%);
}

.neutralbox::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 183, 255, 0.14) 0%, rgba(125, 183, 255, 0) 72%);
  pointer-events: none;
}

.cookie-glass-inner {
  position: relative;
  z-index: 1;
}

.structurebox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mark-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(214, 221, 228, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  flex-shrink: 0;
  overflow: hidden;
}

.mark-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  max-width: 42px;
  max-height: 42px;
}

.rowsegmentbox {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.corepad {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(214, 221, 228, 0.95);
  color: #607080;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contentunit {
  display: inline-block;
  color: #24313b;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.desc-text {
  margin: 0;
  color: #3b4953;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bar-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-items: center;
  text-align: center;
}

.ref-links-note {
  display: block;
  width: 100%;
  text-align: center;
  color: #6f7d87;
  font-size: 12px;
  line-height: 1.4;
}

.dialog-links-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.dialog-links-group a {
  display: inline-block;
  color: #4d6f8c;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(77, 111, 140, 0.34);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.dialog-links-group a:hover {
  color: #2f4e69;
  border-bottom-color: #2f4e69;
}

.dialog-links-group span {
  color: #6f7d87;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.dockunit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#closeNotice {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #5f7ea0 0%, #3f5f7b 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(63, 95, 123, 0.18);
}

#closeNotice:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .neutralbox {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .dockunit {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #closeNotice {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .hint-panel {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .neutralbox {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .structurebox {
    justify-content: center;
  }

  .rowsegmentbox {
    align-items: center;
    text-align: center;
  }

  .content {
    justify-content: center;
  }

  .contentunit {
    text-align: center;
    font-size: 18px;
  }

  .desc-text {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .bar-links {
    align-items: center;
    text-align: center;
  }

  .ref-links-note {
    text-align: center;
  }

  .dialog-links-group {
    justify-content: center;
  }

  .dockunit {
    flex-direction: column;
    width: 100%;
  }

  #closeNotice {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .hint-panel {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .neutralbox {
    padding: 14px;
    border-radius: 18px;
  }

  .mark-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .mark-icon {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
  }

  .contentunit {
    font-size: 17px;
  }

  .ref-links-note,
  .dialog-links-group a,
  .dialog-links-group span,
  #closeNotice {
    font-size: 12px;
  }
}

.base-back-chip {
  padding: 0 !important;
  background: transparent;
}
.base-back-chip .post-single-text {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 44px;
  background: #fff7fb;
  border: 1px solid #f3d7e6;
  border-radius: 28px;
  box-shadow: 0 22px 56px rgba(236, 72, 153, 0.10);
  box-sizing: border-box;
}
.base-back-chip #sideCoreGroup {
  width: 100%;
  color: #4a1731;
  font-size: 16px;
  display: grid;
  grid-template-columns: 1fr;
}
.base-back-chip #sideCoreGroup *,
.base-back-chip #sideCoreGroup *::before,
.base-back-chip #sideCoreGroup *::after {
  box-sizing: border-box;
}
.base-back-chip #sideCoreGroup [hidden] {
  display: none !important;
}
.base-back-chip #sideCoreGroup .tile-plain-zone {
  margin: 0 0 24px;
  padding: 18px 20px;
  background: #fff0f7;
  border: 1px solid #f7cfe3;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.78;
  color: #8b3a62;
  text-align: center;
}
.base-back-chip #sideCoreGroup .deck-double-status {
  margin-bottom: 20px;
}
.base-back-chip #sideCoreGroup .base-light-frame {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #5b193d;
  text-align: center;
}
.base-back-chip #sideCoreGroup .bar-hidden-tag {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #f3bfd8 !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: #4a1731 !important;
  font-size: 15px;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}
.base-back-chip #sideCoreGroup textarea.bar-hidden-tag {
  min-height: 190px;
  resize: vertical;
  text-align: left;
}
.base-back-chip #sideCoreGroup select.bar-hidden-tag {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ec4899' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px 8px !important;
  padding-right: 40px;
}
.base-back-chip #sideCoreGroup .bar-hidden-tag::placeholder {
  color: #c07aa0;
  opacity: 1;
}
.base-back-chip #sideCoreGroup .bar-hidden-tag:focus {
  outline: none;
  border-color: #ec4899 !important;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.14) !important;
  background: #ffffff !important;
}
.base-back-chip #sideCoreGroup .mod-closed-header {
  width: 100%;
  padding: 18px;
  border: 1px solid #f5d3e4;
  border-radius: 18px !important;
  background: #fff3f9;
  text-align: left;
}
.base-back-chip #sideCoreGroup .foot-tall-bottom {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0;
}
.base-back-chip #sideCoreGroup .deck-sharp-mark {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #ec4899;
}
.base-back-chip #sideCoreGroup .lane-top-foot {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: #8b3a62;
  cursor: pointer;
}
.base-back-chip #sideCoreGroup a {
  color: #db2777;
  text-decoration: none;
  font-weight: 600;
}
.base-back-chip #sideCoreGroup a:hover,
.base-back-chip #sideCoreGroup a:focus {
  text-decoration: underline;
}
.base-back-chip #sideCoreGroup .fresh-soft-link {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.base-back-chip #sideCoreGroup .pathunit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 15px 30px;
  border: 1px solid #ec4899;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 16px 30px rgba(236, 72, 153, 0.22);
}
.base-back-chip #sideCoreGroup .pathunit:hover,
.base-back-chip #sideCoreGroup .pathunit:focus {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(236, 72, 153, 0.28);
}
.base-back-chip #sideCoreGroup .nodewrapunit {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 16px !important;
  font-size: 14px;
  line-height: 1.6;
}
.base-back-chip #sideCoreGroup .post-back-hint {
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
  color: #9d174d;
}
.base-back-chip #sideCoreGroup .app-sharp-flag {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
}
.base-back-chip #sideCoreGroup .tag-light-icon {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.76;
  color: #9b6b84;
  text-align: center;
}
@media (max-width: 767px) {
  .base-back-chip {
    padding: 0 16px !important;
  }
  .base-back-chip .post-single-text {
    padding: 24px 18px;
    border-radius: 20px;
  }
  .base-back-chip #sideCoreGroup .tile-plain-zone {
    padding: 15px 16px;
    margin-bottom: 18px;
    font-size: 14px;
    border-radius: 14px;
  }
  .base-back-chip #sideCoreGroup .base-light-frame {
    font-size: 13px;
    margin-bottom: 7px;
  }
  .base-back-chip #sideCoreGroup .bar-hidden-tag {
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 14px !important;
  }
  .base-back-chip #sideCoreGroup textarea.bar-hidden-tag {
    min-height: 160px;
  }
  .base-back-chip #sideCoreGroup .mod-closed-header {
    padding: 15px;
    border-radius: 14px !important;
  }
  .base-back-chip #sideCoreGroup .lane-top-foot {
    font-size: 13px;
  }
  .base-back-chip #sideCoreGroup .pathunit {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 14px !important;
  }
}

.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/premium1.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quiz-title {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
  color: #555;
}

.quiz-form select,
.quiz-form input[type="number"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bbb;
  font-size: 15px;
  box-sizing: border-box;
}

.quiz-button {
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(to right, #d84800, #c26191);
  color: #fff;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.quiz-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hint-panel {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.hint-panel *,
.hint-panel *::before,
.hint-panel *::after {
  box-sizing: border-box;
}

.hint-panel.present {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hint-panel.gone {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
}

.neutralbox {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(214, 221, 228, 0.8);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.neutralbox::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7db7ff 0%, #8fcfbe 50%, #d9d3ff 100%);
}

.neutralbox::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 183, 255, 0.14) 0%, rgba(125, 183, 255, 0) 72%);
  pointer-events: none;
}

.cookie-glass-inner {
  position: relative;
  z-index: 1;
}

.structurebox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mark-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(214, 221, 228, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  flex-shrink: 0;
  overflow: hidden;
}

.mark-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  max-width: 42px;
  max-height: 42px;
}

.rowsegmentbox {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.corepad {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(214, 221, 228, 0.95);
  color: #607080;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contentunit {
  display: inline-block;
  color: #24313b;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.desc-text {
  margin: 0;
  color: #3b4953;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bar-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-items: center;
  text-align: center;
}

.ref-links-note {
  display: block;
  width: 100%;
  text-align: center;
  color: #6f7d87;
  font-size: 12px;
  line-height: 1.4;
}

.dialog-links-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.dialog-links-group a {
  display: inline-block;
  color: #4d6f8c;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(77, 111, 140, 0.34);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.dialog-links-group a:hover {
  color: #2f4e69;
  border-bottom-color: #2f4e69;
}

.dialog-links-group span {
  color: #6f7d87;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.dockunit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#closeNotice {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #5f7ea0 0%, #3f5f7b 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(63, 95, 123, 0.18);
}

#closeNotice:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .neutralbox {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .dockunit {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #closeNotice {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .hint-panel {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .neutralbox {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .structurebox {
    justify-content: center;
  }

  .rowsegmentbox {
    align-items: center;
    text-align: center;
  }

  .content {
    justify-content: center;
  }

  .contentunit {
    text-align: center;
    font-size: 18px;
  }

  .desc-text {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .bar-links {
    align-items: center;
    text-align: center;
  }

  .ref-links-note {
    text-align: center;
  }

  .dialog-links-group {
    justify-content: center;
  }

  .dockunit {
    flex-direction: column;
    width: 100%;
  }

  #closeNotice {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .hint-panel {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .neutralbox {
    padding: 14px;
    border-radius: 18px;
  }

  .mark-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .mark-icon {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
  }

  .contentunit {
    font-size: 17px;
  }

  .ref-links-note,
  .dialog-links-group a,
  .dialog-links-group span,
  #closeNotice {
    font-size: 12px;
  }
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
