:root {

  --site-primary-rgb: 13, 110, 253;
  --site-info-rgb: 13, 202, 240;
  --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);
}

.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;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.text-primary {
  --site-text-opacity: 1;
  color: rgba(var(--site-primary-rgb), var(--site-text-opacity)) !important;
}

.text-info {
  --site-text-opacity: 1;
  color: rgba(var(--site-info-rgb), var(--site-text-opacity)) !important;
}

.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/clean1.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);
}
.nav-panel {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .nav-panel .gripbox {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .nav-panel .gripbox, .nav-panel .gripbox:hover {
      color: inherit;
      text-decoration: none; }
  .nav-panel .identity-iconfont + .gripbox {
    vertical-align: -1px; }
  .nav-panel.navbar-fixed-top {
    position: fixed; }
  .nav-panel .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/clean1.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/brand2.woff2') format('woff2'), url('fonts/brand2.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/clean1.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.identity-iconfont:hover {
  text-decoration: none;
}

a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}.block-title,
.chapter-title,
.header-text,
.lead-h2,
.main-heading,
.page-h,
.section-h,
.section-heading,
.topic-title {
  font-style: normal;
  line-height: 1.3;
}.section-sub,
.tagline-h {
  line-height: 1.3;
}

.rowsegment {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.display-1,
.display-2,
.display-4,
.display-5,
.fieldwrap,
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;
}

.padsegment {
  color: #ffffff;
}

.sectionunit {
  text-align: left;
}

.nodemapunit {
  text-align: center;
}

.shellwrap {
  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;
}

.btn .identity-iconfont,
.btn.btn-sm .identity-iconfont {
  order: 1;
  cursor: pointer;
  margin-left: 0.5rem;
  vertical-align: sub;
}

.btn.btn-md .identity-iconfont,
.btn.btn-md .identity-iconfont {
  margin-left: 0.8rem;
}

.shellwrap {
  font-weight: 700;
}

[type=submit] {
  -webkit-appearance: none;
}

.sectional .nodetrack {
  min-height: 100vh;
}

.sectional {
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@keyframes arrowdown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes gradient-animation {
  from {
    background-position: 0% 100%;
    animation-timing-function: ease-in-out;
  }
  to {
    background-position: 100% 0%;
    animation-timing-function: ease-in-out;
  }
}

.menu .navbar-brand {
  display: flex;
}
.menu .navbar-brand span {
  display: flex;
  display: flex;
}
.menu .navbar-brand .navbar-brand {
  display: flex;
}
@media (max-width: 991px) {
  .menu .navbar-collapse {
    max-height: 93.5vh;
  }
  .menu .navbar-collapse.show {
    overflow: auto;
  }
}
@media (min-width: 992px) {
  .menu .navbar-nav.nav-dropdown {
    display: flex;
  }
}
@media (max-width: 767px) {
  .menu .navbar-collapse {
    max-height: 80vh;
  }
}

.nav-link .identity-iconfont {
  margin-right: 0.5rem;
}

.navbar {
  display: flex;
  }

.navbar-collapse {
  }

.nav-dropdown .link {
  padding: 0.667em 1.667em !important;
  margin: 0 !important;
}

.nav {
  display: flex;
  }

.row {
  display: flex;
  }

.justify-content-center {
  }

.card-wrapper {
  }

.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;
}

.nodetrack {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

ul {
  margin-bottom: 2.3125rem;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.container,
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > [class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.item {
  position: relative;
}
.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/clean1.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: 'export2';
  font-display: swap;
  src: url('fonts/design2.woff2') format('woff2'), url('fonts/design2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="field-"], [class*=" field-"] {
  
  font-family: 'export2' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.field-iconography-protect:before {
  content: "\e963";
}

.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/clean1.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;
}
img,
.card-wrap,
.card-wrapper,
.card,
.item-wrapper {
  border-radius: 2rem !important;
}
body {
  font-family: Bacasime Antique;
}
.display-1 {
  font-family: 'Bacasime Antique', serif;
  font-size: 5rem;
  line-height: 88px;
  letter-spacing: -0.005em;
}
.display-1 > .identity-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Bacasime Antique', serif;
  font-size: 3rem;
  line-height: 58px;
  letter-spacing: .005em;
}
.display-2 > .identity-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Bacasime Antique', serif;
  font-size: 1rem;
  line-height: 110%;
}
.display-4 > .identity-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Bacasime Antique', serif;
  font-size: 2.375rem;
  line-height: 46px;
  letter-spacing: .005em;
}
.display-5 > .identity-iconfont {
  font-size: 2.96875rem;
}
.fieldwrap {
  font-family: 'Bacasime Antique', serif;
  font-size: 1.05rem;
  line-height: inherit;
}
.fieldwrap > .identity-iconfont {
  font-size: 1.3125rem;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .fieldwrap {
    font-size: 0.84rem;
    font-size: calc( 1.0175rem + (1.05 - 1.0175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0175rem + (1.05 - 1.0175) * ((100vw - 20rem) / (48 - 20))));
  }
}

.btn {
  padding: 1.25rem 2rem;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 6px;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffc354 !important;
  border-color: #ffc354 !important;
  color: #543700 !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  color: inherit;
  background-color: #ffd587 !important;
  border-color: #ffd587 !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #543700 !important;
  background-color: #ffd587 !important;
  border-color: #ffd587 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8d5ef1 !important;
  border-color: #8d5ef1 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  color: inherit;
  background-color: #ae8df5 !important;
  border-color: #ae8df5 !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ae8df5 !important;
  border-color: #ae8df5 !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: #171827 !important;
  border-color: #171827 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  color: inherit;
  background-color: #2a2c47 !important;
  border-color: #2a2c47 !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a2c47 !important;
  border-color: #2a2c47 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #171827 !important;
  border-color: #171827 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  color: inherit;
  background-color: #2a2c47 !important;
  border-color: #2a2c47 !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #2a2c47 !important;
  border-color: #2a2c47 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffc354 !important;
  border-color: #ffc354 !important;
  color: #543700 !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  color: inherit;
  background-color: #ffd587 !important;
  border-color: #ffd587 !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #543700 !important;
  background-color: #ffd587 !important;
  border-color: #ffd587 !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: #ffc354;
  color: #ffc354;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.active {
  color: #fca400 !important;
  background-color: transparent !important;
  border-color: #fca400 !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #543700 !important;
  background-color: #ffc354 !important;
  border-color: #ffc354 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #8d5ef1;
  color: #8d5ef1;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.active {
  color: #5714e4 !important;
  background-color: transparent !important;
  border-color: #5714e4 !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8d5ef1 !important;
  border-color: #8d5ef1 !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: #171827;
  color: #171827;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #171827 !important;
  border-color: #171827 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #171827;
  color: #171827;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #171827 !important;
  border-color: #171827 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffc354;
  color: #ffc354;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.active {
  color: #fca400 !important;
  background-color: transparent !important;
  border-color: #fca400 !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #543700 !important;
  background-color: #ffc354 !important;
  border-color: #ffc354 !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: #ffc354 !important;
}
.text-info {
  color: #ffffff !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ed9a00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !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: #ffc354;
}

html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}.section-cta .btn {
  box-shadow: none;
  border-width: 1px;
  border-radius: 6px !important;
  padding: 14px 26px;
  font-weight: 400 !important;
  transition: all 0.3s ease-in-out;
}.section-cta .btn:hover,
.section-cta .btn:focus {
  box-shadow: none;
}.section-cta .btn-primary {
  background-image: linear-gradient(94.47deg, #ffc354 0, #8d5ef1 75%);
  color: #171827 !important;
}.section-cta .btn-primary:hover,
.section-cta .btn-primary:focus {
  background-color: #ffc354 !important;
  background-image: initial;
}.section-cta .btn-secondary {
  background-image: linear-gradient(94.47deg, #8d5ef1 0, #ffc354 75%);
}.section-cta .btn-secondary:hover,
.section-cta .btn-secondary:focus {
  background-color: #8d5ef1 !important;
  background-image: initial;
}.section-cta .btn-success {
  background-image: linear-gradient(94.47deg, #171827 0, #8d5ef1 75%);
}.section-cta .btn-success:hover,
.section-cta .btn-success:focus {
  background-color: #171827 !important;
  background-image: initial;
}.section-cta .btn-info {
  background-image: linear-gradient(94.47deg, #ffffff 0, #8d5ef1 75%);
}.section-cta .btn-info:hover,
.section-cta .btn-info:focus {
  background-color: #ffffff !important;
  background-image: initial;
}.section-cta .btn-warning {
  background-image: linear-gradient(94.47deg, #171827 0, #8d5ef1 75%);
}.section-cta .btn-warning:hover,
.section-cta .btn-warning:focus {
  background-color: #171827 !important;
  background-image: initial;
}.section-cta .btn-danger {
  background-image: linear-gradient(94.47deg, #ffc354 0, #8d5ef1 75%);
}.section-cta .btn-danger:hover,
.section-cta .btn-danger:focus {
  background-color: #ffc354 !important;
  background-image: initial;
}.section-cta .btn-white {
  background-color: #ffffff !important;
}.section-cta .btn-white:hover,
.section-cta .btn-white:focus {
  background-color: #ffffff !important;
  background-image: initial;
}.section-cta .btn-black {
  background-color: #000000 !important;
}.section-cta .btn-black:hover,
.section-cta .btn-black:focus {
  background-color: #000000 !important;
  background-image: initial;
}
img {
  border-radius: 12px !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cellunit {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .cellunit {
    min-height: 170px !important;
  }
}
.cellunit .container,
.cellunit .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cellunit .container,
  .cellunit .container-fluid {
    min-height: 170px !important;
  }
}
.cellunit .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cellunit .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cellunit .top_menu {
    min-height: 110px !important;
  }
}
.cellunit .gripbox:hover {
  color: #8d5ef1 !important;
}
.cellunit .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cellunit .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cellunit .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cellunit .btn {
    white-space: nowrap;
  }
}
.cellunit .nav-item:focus,
.cellunit .nav-link:focus {
  outline: none;
}
.cellunit ul.navbar-nav {
  flex-wrap: wrap;
}
.cellunit ul.navbar-nav li {
  margin: auto;
}
.cellunit .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.cellunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cellunit .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cellunit .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .cellunit .navbar .top_menu {
    justify-content: space-between;
  }
  .cellunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cellunit .navbar .nav-link {
    padding: 5px !important;
  }
  .cellunit .navbar .container-fluid,
  .cellunit .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cellunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cellunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cellunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cellunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.cellunit .nav-panel {
  position: absolute;
}
.cellunit a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cellunit a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cellunit .navbar {
    height: 77px;
  }
  .cellunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.layoutbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.layoutbox .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .layoutbox .container {
    padding: 0 15px;
  }
}.layoutbox .trackbox .section-sub,
.layoutbox .trackbox .tagline-h {
  margin-bottom: 16px;
}.layoutbox .trackbox .block-title,
.layoutbox .trackbox .chapter-title,
.layoutbox .trackbox .header-text,
.layoutbox .trackbox .lead-h2,
.layoutbox .trackbox .main-heading,
.layoutbox .trackbox .page-h,
.layoutbox .trackbox .section-h,
.layoutbox .trackbox .section-heading,
.layoutbox .trackbox .topic-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {.layoutbox .trackbox .block-title,
.layoutbox .trackbox .chapter-title,
.layoutbox .trackbox .header-text,
.layoutbox .trackbox .lead-h2,
.layoutbox .trackbox .main-heading,
.layoutbox .trackbox .page-h,
.layoutbox .trackbox .section-h,
.layoutbox .trackbox .section-heading,
.layoutbox .trackbox .topic-title {
    margin-bottom: 20px;
  }
}
.layoutbox .trackbox .rowsegment {
  margin-bottom: 0;
}.layoutbox .section-cta {
  margin-top: 40px;
}.layoutbox .block-title,
.layoutbox .chapter-title,
.layoutbox .header-text,
.layoutbox .lead-h2,
.layoutbox .main-heading,
.layoutbox .page-h,
.layoutbox .section-h,
.layoutbox .section-heading,
.layoutbox .topic-title {
  color: #ffffff;
}.layoutbox .section-sub,
.layoutbox .tagline-h {
  color: #b698f5;
  text-align: center;
}
.layoutbox .rowsegment {
  color: #ffffff;
  text-align: center;
}.layoutbox .block-title,
.layoutbox .chapter-title,
.layoutbox .header-text,
.layoutbox .lead-h2,
.layoutbox .main-heading,
.layoutbox .page-h,
.layoutbox .section-h,
.layoutbox .section-heading,
.layoutbox .topic-title,
.layoutbox .section-cta {
  text-align: center;
}
.coverbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  align-items: flex-end;
  background-image: url("images/clear1.jpg");
}.coverbox .trackbox .block-title,
.coverbox .trackbox .chapter-title,
.coverbox .trackbox .header-text,
.coverbox .trackbox .lead-h2,
.coverbox .trackbox .main-heading,
.coverbox .trackbox .page-h,
.coverbox .trackbox .section-h,
.coverbox .trackbox .section-heading,
.coverbox .trackbox .topic-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {.coverbox .trackbox .block-title,
.coverbox .trackbox .chapter-title,
.coverbox .trackbox .header-text,
.coverbox .trackbox .lead-h2,
.coverbox .trackbox .main-heading,
.coverbox .trackbox .page-h,
.coverbox .trackbox .section-h,
.coverbox .trackbox .section-heading,
.coverbox .trackbox .topic-title {
    margin-bottom: 22px;
  }
}
.coverbox .trackbox .text-wrapper .rowsegment {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .coverbox .trackbox .text-wrapper .rowsegment {
    width: 100%;
  }
}.coverbox .trackbox .section-cta {
  margin-top: 22px;
}
@media (max-width: 992px) {.coverbox .trackbox .section-cta {
    margin-top: 12px;
  }
}
.coverbox .trackbox .gridcore {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .coverbox .trackbox .gridcore {
    margin-top: 22px;
  }
}
.coverbox .trackbox .gridcore img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}.coverbox .block-title,
.coverbox .chapter-title,
.coverbox .header-text,
.coverbox .lead-h2,
.coverbox .main-heading,
.coverbox .page-h,
.coverbox .section-h,
.coverbox .section-heading,
.coverbox .topic-title,
.coverbox .section-cta {
  color: #ffffff;
  text-align: center;
}
.coverbox .rowsegment,
.coverbox .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.splitbox {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("images/red1.jpg");
}
.splitbox .canvas {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .splitbox .canvas {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .splitbox .canvas {
    width: 100%;
  }
}
.splitbox .canvas .stub {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .splitbox .canvas .stub {
    margin-bottom: 28px;
  }
}.splitbox .canvas .block-title,
.splitbox .canvas .chapter-title,
.splitbox .canvas .header-text,
.splitbox .canvas .lead-h2,
.splitbox .canvas .main-heading,
.splitbox .canvas .page-h,
.splitbox .canvas .section-h,
.splitbox .canvas .section-heading,
.splitbox .canvas .topic-title {
  margin-bottom: 0;
}.splitbox .canvas .corewrap .section-sub,
.splitbox .canvas .corewrap .tagline-h {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #8d5ef1, #ffc354 50%, #ffffff);
}
.splitbox .canvas .rowsegment {
  margin-top: 22px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .splitbox .canvas .rowsegment {
    margin-top: 18px;
  }
}.splitbox .canvas .section-cta {
  margin-top: 42px;
}
@media (max-width: 992px) {.splitbox .canvas .section-cta {
    margin-top: 22px;
  }
}

.splitbox .stub {
  color: #ffffff;
  text-align: center;
}.splitbox .block-title,
.splitbox .chapter-title,
.splitbox .header-text,
.splitbox .lead-h2,
.splitbox .main-heading,
.splitbox .page-h,
.splitbox .section-h,
.splitbox .section-heading,
.splitbox .topic-title {
  color: #ffffff;
}.splitbox .section-sub,
.splitbox .tagline-h,
.splitbox .corewrap {
  color: #ffffff;
  text-align: center;
}
.splitbox .rowsegment {
  color: #ffffff;
  text-align: center;
}.splitbox .block-title,
.splitbox .chapter-title,
.splitbox .header-text,
.splitbox .lead-h2,
.splitbox .main-heading,
.splitbox .page-h,
.splitbox .section-h,
.splitbox .section-heading,
.splitbox .topic-title,
.splitbox .section-cta {
  text-align: center;
}
.viewbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.viewbox .trackbox {
  display: flex;
  justify-content: center;
}
.viewbox .trackbox .card-wrapper {
  background-color: #070707;
  border: 2px solid #8d5ef1;
  width: 58%;
  padding: 82px;
  width: 80%;
}
@media (max-width: 1440px) {
  .viewbox .trackbox .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .viewbox .trackbox .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
@media (max-width: 1440px) {
  .viewbox .trackbox .card-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .viewbox .trackbox .card-wrapper {
    width: 100%;
  }
}
.viewbox .trackbox .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .viewbox .trackbox .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.viewbox .trackbox .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}.viewbox .trackbox .card-wrapper .canvas .block-title,
.viewbox .trackbox .card-wrapper .canvas .chapter-title,
.viewbox .trackbox .card-wrapper .canvas .header-text,
.viewbox .trackbox .card-wrapper .canvas .lead-h2,
.viewbox .trackbox .card-wrapper .canvas .main-heading,
.viewbox .trackbox .card-wrapper .canvas .page-h,
.viewbox .trackbox .card-wrapper .canvas .section-h,
.viewbox .trackbox .card-wrapper .canvas .section-heading,
.viewbox .trackbox .card-wrapper .canvas .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {.viewbox .trackbox .card-wrapper .canvas .block-title,
.viewbox .trackbox .card-wrapper .canvas .chapter-title,
.viewbox .trackbox .card-wrapper .canvas .header-text,
.viewbox .trackbox .card-wrapper .canvas .lead-h2,
.viewbox .trackbox .card-wrapper .canvas .main-heading,
.viewbox .trackbox .card-wrapper .canvas .page-h,
.viewbox .trackbox .card-wrapper .canvas .section-h,
.viewbox .trackbox .card-wrapper .canvas .section-heading,
.viewbox .trackbox .card-wrapper .canvas .topic-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.viewbox .trackbox .card-wrapper .text-wrapper .rowsegment {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .viewbox .trackbox .card-wrapper .text-wrapper .rowsegment {
    width: 100%;
  }
}.viewbox .trackbox .card-wrapper .section-cta .btn {
  margin-bottom: 0;
}.viewbox .block-title,
.viewbox .chapter-title,
.viewbox .header-text,
.viewbox .lead-h2,
.viewbox .main-heading,
.viewbox .page-h,
.viewbox .section-h,
.viewbox .section-heading,
.viewbox .topic-title {
  color: #3a001d;
}
.viewbox .rowsegment,
.viewbox .text-wrapper {
  color: #ffffff;
  text-align: center;
}.viewbox .block-title,
.viewbox .chapter-title,
.viewbox .header-text,
.viewbox .lead-h2,
.viewbox .main-heading,
.viewbox .page-h,
.viewbox .section-h,
.viewbox .section-heading,
.viewbox .topic-title,
.viewbox .section-cta,
.viewbox .canvas,
.viewbox .logo-wrapper {
  text-align: center;
}.viewbox .block-title,
.viewbox .chapter-title,
.viewbox .header-text,
.viewbox .lead-h2,
.viewbox .main-heading,
.viewbox .page-h,
.viewbox .section-h,
.viewbox .section-heading,
.viewbox .topic-title,
.viewbox .section-cta,
.viewbox .logo-wrapper,
.viewbox .canvas {
  color: #ffc354;
}
.rootwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.rootwrap .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .rootwrap .container {
    padding: 0 15px;
  }
}
.rootwrap .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .rootwrap .canvas {
    text-align: center;
  }
}
.rootwrap .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.rootwrap .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.rootwrap .canvas .block-title,
.rootwrap .canvas .chapter-title,
.rootwrap .canvas .header-text,
.rootwrap .canvas .lead-h2,
.rootwrap .canvas .main-heading,
.rootwrap .canvas .page-h,
.rootwrap .canvas .section-h,
.rootwrap .canvas .section-heading,
.rootwrap .canvas .topic-title {
  margin-bottom: 0;
}
.rootwrap .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .rootwrap .list {
    justify-content: center;
  }
}
.rootwrap .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.rootwrap .list .item-wrap:hover,
.rootwrap .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.rootwrap .list .item-wrap:last-child {
  margin-right: 0;
}
.rootwrap .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.rootwrap .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper {
    height: auto;
  }
}
.rootwrap .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper .tilebox {
    text-align: center;
  }
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title {
  color: #f2ac2b;
}
.rootwrap .tilebox {
  color: #d2d2df;
}
.rootwrap .tilebox {
  text-align: center;
  color: #ffffff;
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title,
.rootwrap .canvas {
  color: #ffc354;
}
.cellunit {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .cellunit {
    min-height: 170px !important;
  }
}
.cellunit .container,
.cellunit .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cellunit .container,
  .cellunit .container-fluid {
    min-height: 170px !important;
  }
}
.cellunit .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cellunit .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cellunit .top_menu {
    min-height: 110px !important;
  }
}
.cellunit .gripbox:hover {
  color: #8d5ef1 !important;
}
.cellunit .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cellunit .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cellunit .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cellunit .btn {
    white-space: nowrap;
  }
}
.cellunit .nav-item:focus,
.cellunit .nav-link:focus {
  outline: none;
}
.cellunit ul.navbar-nav {
  flex-wrap: wrap;
}
.cellunit ul.navbar-nav li {
  margin: auto;
}
.cellunit .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.cellunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cellunit .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cellunit .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .cellunit .navbar .top_menu {
    justify-content: space-between;
  }
  .cellunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cellunit .navbar .nav-link {
    padding: 5px !important;
  }
  .cellunit .navbar .container-fluid,
  .cellunit .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cellunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cellunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cellunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cellunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.cellunit .nav-panel {
  position: absolute;
}
.cellunit a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cellunit a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cellunit .navbar {
    height: 77px;
  }
  .cellunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.pathbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.pathbox .row {
  margin: 0 -45px;
}
.pathbox .row .card {
  padding: 0 45px;
  justify-content: center;
}
.pathbox .gridcore {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pathbox .gridcore img {
  width: 500px;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .pathbox .gridcore img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 992px) {
  .pathbox .gridcore img {
    height: 350px;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .pathbox .gridcore img {
    height: 300px;
  }
}
.pathbox .trackbox {
  padding-left: 66px;
}
@media (max-width: 1440px) {
  .pathbox .trackbox {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .pathbox .trackbox {
    margin-bottom: 32px;
  }
}.pathbox .trackbox .canvas .block-title,
.pathbox .trackbox .canvas .chapter-title,
.pathbox .trackbox .canvas .header-text,
.pathbox .trackbox .canvas .lead-h2,
.pathbox .trackbox .canvas .main-heading,
.pathbox .trackbox .canvas .page-h,
.pathbox .trackbox .canvas .section-h,
.pathbox .trackbox .canvas .section-heading,
.pathbox .trackbox .canvas .topic-title {
  margin-bottom: 22px;
}
.pathbox .trackbox .text-wrapper .rowsegment {
  margin-bottom: 12px;
}.pathbox .trackbox .section-cta .btn {
  margin-bottom: 0;
}.pathbox .block-title,
.pathbox .chapter-title,
.pathbox .header-text,
.pathbox .lead-h2,
.pathbox .main-heading,
.pathbox .page-h,
.pathbox .section-h,
.pathbox .section-heading,
.pathbox .topic-title {
  color: #3a001d;
}
.pathbox .rowsegment {
  color: #3a001d;
}.pathbox .block-title,
.pathbox .chapter-title,
.pathbox .header-text,
.pathbox .lead-h2,
.pathbox .main-heading,
.pathbox .page-h,
.pathbox .section-h,
.pathbox .section-heading,
.pathbox .topic-title,
.pathbox .section-cta {
  color: #ffc354;
}
.pathbox .rowsegment,
.pathbox .text-wrapper {
  color: #ffffff;
}
.netbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.netbox .row.card {
  padding: 0 90px;
  background-color: #070707;
  border-radius: 60px;
  flex-direction: row;
}
@media (max-width: 768px) {
  .netbox .row.card {
    padding: 0 32px;
    margin: 0;
  }
}
.netbox .row.card .corewrap {
  margin: -25px 0 0 0;
  transform: rotate(-5deg);
  background-color: #ffc354;
  border-radius: 17px;
  padding: 20px;
}.netbox .row.card .corewrap .section-sub,
.netbox .row.card .corewrap .tagline-h {
  margin: 0;
}.netbox .row.card .block-title,
.netbox .row.card .chapter-title,
.netbox .row.card .header-text,
.netbox .row.card .lead-h2,
.netbox .row.card .main-heading,
.netbox .row.card .page-h,
.netbox .row.card .section-h,
.netbox .row.card .section-heading,
.netbox .row.card .topic-title {
  margin: 60px 0 0 0;
}
@media (max-width: 992px) {.netbox .row.card .block-title,
.netbox .row.card .chapter-title,
.netbox .row.card .header-text,
.netbox .row.card .lead-h2,
.netbox .row.card .main-heading,
.netbox .row.card .page-h,
.netbox .row.card .section-h,
.netbox .row.card .section-heading,
.netbox .row.card .topic-title {
    margin: 32px 0 0 0;
  }
}
.netbox .row.card .gridcore {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 96px 0 -4rem 0;
}
@media (max-width: 992px) {
  .netbox .row.card .gridcore {
    margin: 32px 0 0 0;
  }
}
@media (max-width: 768px) {
  .netbox .row.card .gridcore {
    display: block;
  }
}
.netbox .row.card .gridcore img {
  object-fit: cover;
  border-radius: 10px;
}
.netbox .row.card .gridcore img:first-child {
  width: 220px;
  height: 296px;
  transform: rotate(330deg);
}
@media (max-width: 768px) {
  .netbox .row.card .gridcore img:first-child {
    transform: rotate(-5deg);
    margin: 0 auto 32px;
    width: 180px;
  }
}
.netbox .row.card .gridcore img:last-child {
  width: 260px;
  height: 350px;
  transform: rotate(31deg);
}
@media (max-width: 768px) {
  .netbox .row.card .gridcore img:last-child {
    transform: rotate(5deg);
    margin: 0 auto;
    width: 180px;
  }
}
.netbox .row.card .text-wrapper {
  position: relative;
  z-index: 1;
  padding: 105px 0 105px 0;
  height: 100%;
}
@media (max-width: 768px) {
  .netbox .row.card .text-wrapper {
    padding-top: 32px;
  }
}
.netbox .row.card .text-wrapper:hover::before {
  right: 40%;
  top: 40%;
}
.netbox .row.card .text-wrapper::before {
  content: '';
  position: absolute;
  right: 20%;
  top: 35%;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #8d5ef1;
  transition: all .3s ease;
}
.netbox .row.card .text-wrapper .rowsegment {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}.netbox .row.card .text-wrapper .section-cta {
  position: relative;
  z-index: 1;
}.netbox .block-title,
.netbox .chapter-title,
.netbox .header-text,
.netbox .lead-h2,
.netbox .main-heading,
.netbox .page-h,
.netbox .section-h,
.netbox .section-heading,
.netbox .topic-title {
  color: #ffffff;
}.netbox .section-sub,
.netbox .tagline-h {
  color: #101511;
  text-align: center;
}
.netbox .rowsegment {
  color: #6e716f;
}.netbox .rowsegment,
.netbox .section-cta {
  color: #ffffff;
}
.host {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.host .row {
  margin: 0 -45px;
}
.host .row .card {
  padding: 0 45px;
  justify-content: center;
}
.host .gridcore {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 66px;
}
@media (max-width: 1440px) {
  .host .gridcore {
    padding-left: 0;
  }
}
.host .gridcore img {
  width: 500px;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .host .gridcore img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 992px) {
  .host .gridcore img {
    height: 350px;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .host .gridcore img {
    height: 300px;
  }
}
.host .trackbox {
  padding-left: 66px;
  padding-left: 0;
}
@media (max-width: 1440px) {
  .host .trackbox {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .host .trackbox {
    margin-bottom: 32px;
  }
}.host .trackbox .canvas .block-title,
.host .trackbox .canvas .chapter-title,
.host .trackbox .canvas .header-text,
.host .trackbox .canvas .lead-h2,
.host .trackbox .canvas .main-heading,
.host .trackbox .canvas .page-h,
.host .trackbox .canvas .section-h,
.host .trackbox .canvas .section-heading,
.host .trackbox .canvas .topic-title {
  margin-bottom: 22px;
}
.host .trackbox .text-wrapper .rowsegment {
  margin-bottom: 12px;
}.host .trackbox .section-cta .btn {
  margin-bottom: 0;
}.host .block-title,
.host .chapter-title,
.host .header-text,
.host .lead-h2,
.host .main-heading,
.host .page-h,
.host .section-h,
.host .section-heading,
.host .topic-title {
  color: #3a001d;
}
.host .rowsegment {
  color: #3a001d;
}.host .block-title,
.host .chapter-title,
.host .header-text,
.host .lead-h2,
.host .main-heading,
.host .page-h,
.host .section-h,
.host .section-heading,
.host .topic-title,
.host .section-cta {
  color: #ffc354;
}
.host .rowsegment,
.host .text-wrapper {
  color: #ffffff;
}
.modulewrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}.modulewrap .trackbox .block-title,
.modulewrap .trackbox .chapter-title,
.modulewrap .trackbox .header-text,
.modulewrap .trackbox .lead-h2,
.modulewrap .trackbox .main-heading,
.modulewrap .trackbox .page-h,
.modulewrap .trackbox .section-h,
.modulewrap .trackbox .section-heading,
.modulewrap .trackbox .topic-title {
  margin-bottom: 32px;
}.modulewrap .trackbox .block-title span,
.modulewrap .trackbox .chapter-title span,
.modulewrap .trackbox .header-text span,
.modulewrap .trackbox .lead-h2 span,
.modulewrap .trackbox .main-heading span,
.modulewrap .trackbox .page-h span,
.modulewrap .trackbox .section-h span,
.modulewrap .trackbox .section-heading span,
.modulewrap .trackbox .topic-title span {
  color: #8d5ef1;
}
.modulewrap .trackbox .text-wrapper .rowsegment {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .modulewrap .trackbox .text-wrapper .rowsegment {
    width: 100%;
    margin-bottom: 16px;
  }
}
.modulewrap .spanbox {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #8d5ef1, #ffc354, #8d5ef1);
}
@media (max-width: 992px) {
  .modulewrap .spanbox {
    margin-top: 32px;
  }
}.modulewrap .block-title,
.modulewrap .chapter-title,
.modulewrap .header-text,
.modulewrap .lead-h2,
.modulewrap .main-heading,
.modulewrap .page-h,
.modulewrap .section-h,
.modulewrap .section-heading,
.modulewrap .topic-title {
  color: #ffffff;
}
.modulewrap .rowsegment,
.modulewrap .text-wrapper {
  color: #ffffff;
  text-align: center;
}.modulewrap .block-title,
.modulewrap .chapter-title,
.modulewrap .header-text,
.modulewrap .lead-h2,
.modulewrap .main-heading,
.modulewrap .page-h,
.modulewrap .section-h,
.modulewrap .section-heading,
.modulewrap .topic-title,
.modulewrap .section-cta {
  text-align: center;
  color: #ffc354;
}
.rootwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.rootwrap .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .rootwrap .container {
    padding: 0 15px;
  }
}
.rootwrap .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .rootwrap .canvas {
    text-align: center;
  }
}
.rootwrap .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.rootwrap .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.rootwrap .canvas .block-title,
.rootwrap .canvas .chapter-title,
.rootwrap .canvas .header-text,
.rootwrap .canvas .lead-h2,
.rootwrap .canvas .main-heading,
.rootwrap .canvas .page-h,
.rootwrap .canvas .section-h,
.rootwrap .canvas .section-heading,
.rootwrap .canvas .topic-title {
  margin-bottom: 0;
}
.rootwrap .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .rootwrap .list {
    justify-content: center;
  }
}
.rootwrap .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.rootwrap .list .item-wrap:hover,
.rootwrap .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.rootwrap .list .item-wrap:last-child {
  margin-right: 0;
}
.rootwrap .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.rootwrap .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper {
    height: auto;
  }
}
.rootwrap .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper .tilebox {
    text-align: center;
  }
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title {
  color: #f2ac2b;
}
.rootwrap .tilebox {
  color: #d2d2df;
}
.rootwrap .tilebox {
  text-align: center;
  color: #ffffff;
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title,
.rootwrap .canvas {
  color: #ffc354;
}
.cellunit {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .cellunit {
    min-height: 170px !important;
  }
}
.cellunit .container,
.cellunit .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cellunit .container,
  .cellunit .container-fluid {
    min-height: 170px !important;
  }
}
.cellunit .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cellunit .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cellunit .top_menu {
    min-height: 110px !important;
  }
}
.cellunit .gripbox:hover {
  color: #8d5ef1 !important;
}
.cellunit .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cellunit .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cellunit .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cellunit .btn {
    white-space: nowrap;
  }
}
.cellunit .nav-item:focus,
.cellunit .nav-link:focus {
  outline: none;
}
.cellunit ul.navbar-nav {
  flex-wrap: wrap;
}
.cellunit ul.navbar-nav li {
  margin: auto;
}
.cellunit .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.cellunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cellunit .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cellunit .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .cellunit .navbar .top_menu {
    justify-content: space-between;
  }
  .cellunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cellunit .navbar .nav-link {
    padding: 5px !important;
  }
  .cellunit .navbar .container-fluid,
  .cellunit .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cellunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cellunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cellunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cellunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.cellunit .nav-panel {
  position: absolute;
}
.cellunit a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cellunit a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cellunit .navbar {
    height: 77px;
  }
  .cellunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.stepunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.stepunit .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .stepunit .container {
    padding: 0 15px;
  }
}.stepunit .trackbox .section-sub,
.stepunit .trackbox .tagline-h {
  margin-bottom: 16px;
}.stepunit .trackbox .block-title,
.stepunit .trackbox .chapter-title,
.stepunit .trackbox .header-text,
.stepunit .trackbox .lead-h2,
.stepunit .trackbox .main-heading,
.stepunit .trackbox .page-h,
.stepunit .trackbox .section-h,
.stepunit .trackbox .section-heading,
.stepunit .trackbox .topic-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {.stepunit .trackbox .block-title,
.stepunit .trackbox .chapter-title,
.stepunit .trackbox .header-text,
.stepunit .trackbox .lead-h2,
.stepunit .trackbox .main-heading,
.stepunit .trackbox .page-h,
.stepunit .trackbox .section-h,
.stepunit .trackbox .section-heading,
.stepunit .trackbox .topic-title {
    margin-bottom: 20px;
  }
}
.stepunit .trackbox .rowsegment {
  margin-bottom: 0;
}.stepunit .section-cta {
  margin-top: 40px;
}.stepunit .block-title,
.stepunit .chapter-title,
.stepunit .header-text,
.stepunit .lead-h2,
.stepunit .main-heading,
.stepunit .page-h,
.stepunit .section-h,
.stepunit .section-heading,
.stepunit .topic-title {
  color: #ffffff;
}.stepunit .section-sub,
.stepunit .tagline-h {
  color: #f2ac2b;
  text-align: center;
}
.stepunit .rowsegment {
  color: #ffffff;
  text-align: center;
}.stepunit .block-title,
.stepunit .chapter-title,
.stepunit .header-text,
.stepunit .lead-h2,
.stepunit .main-heading,
.stepunit .page-h,
.stepunit .section-h,
.stepunit .section-heading,
.stepunit .topic-title,
.stepunit .section-cta {
  text-align: center;
  color: #ffc354;
}
.patternbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("images/red1.jpg");
}
.patternbox .row {
  justify-content: center;
}
.patternbox .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .patternbox .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .patternbox .container {
    padding: 0 15px;
  }
}
.patternbox .canvas {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .patternbox .canvas {
    margin-bottom: 40px;
  }
}.patternbox .canvas .block-title,
.patternbox .canvas .chapter-title,
.patternbox .canvas .header-text,
.patternbox .canvas .lead-h2,
.patternbox .canvas .main-heading,
.patternbox .canvas .page-h,
.patternbox .canvas .section-h,
.patternbox .canvas .section-heading,
.patternbox .canvas .topic-title {
  margin-bottom: 0;
}
.patternbox .linedock {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 992px) {
  .patternbox .linedock {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .patternbox .linedock {
    display: block;
  }
}
@media (max-width: 768px) {
  .patternbox .linedock .item {
    margin-bottom: 15px;
  }
}
.patternbox .linedock .item:hover .item-wrapper::before,
.patternbox .linedock .item:focus .item-wrapper::before {
  margin-right: -10rem;
}
.patternbox .linedock .item .item-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 40px 22px;
  background-color: #070707;
  border: 1px solid #ffc354;
  border-radius: 20px !important;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 992px) {
  .patternbox .linedock .item .item-wrapper {
    padding: 30px 15px;
  }
}
@media (max-width: 768px) {
  .patternbox .linedock .item .item-wrapper {
    height: auto;
  }
}
.patternbox .linedock .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: -25%;
  width: 150%;
  height: 50%;
  background-image: linear-gradient(90deg, #340645 -20%, #ffc354 50%, #8d5ef1 100%);
  border-radius: 50%;
  filter: blur(100px);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .patternbox .linedock .item .item-wrapper::before {
    display: none;
  }
}
.patternbox .linedock .item .item-wrapper .card-box {
  position: relative;
}
.patternbox .linedock .item .item-wrapper .card-box .item-title {
  margin-bottom: 15px;
}
.patternbox .linedock .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}.patternbox .linedock .item .item-wrapper .section-cta {
  width: 100%;
  margin-top: 20px;
}.patternbox .linedock .item .item-wrapper .section-cta .btn-primary-outline,
.patternbox .linedock .item .item-wrapper .section-cta .btn-secondary-outline,
.patternbox .linedock .item .item-wrapper .section-cta .btn-success-outline,
.patternbox .linedock .item .item-wrapper .section-cta .btn-info-outline,
.patternbox .linedock .item .item-wrapper .section-cta .btn-warning-outline,
.patternbox .linedock .item .item-wrapper .section-cta .btn-danger-outline,
.patternbox .linedock .item .item-wrapper .section-cta .btn-white-outline,
.patternbox .linedock .item .item-wrapper .section-cta .btn-black-outline {
  padding: 0;
  border: none !important;
}.patternbox .linedock .item .item-wrapper .section-cta .btn-primary-outline:hover,
.patternbox .linedock .item .item-wrapper .section-cta .btn-secondary-outline:hover,
.patternbox .linedock .item .item-wrapper .section-cta .btn-success-outline:hover,
.patternbox .linedock .item .item-wrapper .section-cta .btn-info-outline:hover,
.patternbox .linedock .item .item-wrapper .section-cta .btn-warning-outline:hover,
.patternbox .linedock .item .item-wrapper .section-cta .btn-danger-outline:hover,
.patternbox .linedock .item .item-wrapper .section-cta .btn-white-outline:hover,
.patternbox .linedock .item .item-wrapper .section-cta .btn-black-outline:hover,
.patternbox .linedock .item .item-wrapper .section-cta .btn-primary-outline:focus,
.patternbox .linedock .item .item-wrapper .section-cta .btn-secondary-outline:focus,
.patternbox .linedock .item .item-wrapper .section-cta .btn-success-outline:focus,
.patternbox .linedock .item .item-wrapper .section-cta .btn-info-outline:focus,
.patternbox .linedock .item .item-wrapper .section-cta .btn-warning-outline:focus,
.patternbox .linedock .item .item-wrapper .section-cta .btn-danger-outline:focus,
.patternbox .linedock .item .item-wrapper .section-cta .btn-white-outline:focus,
.patternbox .linedock .item .item-wrapper .section-cta .btn-black-outline:focus {
  text-decoration: underline;
}.patternbox .block-title,
.patternbox .chapter-title,
.patternbox .header-text,
.patternbox .lead-h2,
.patternbox .main-heading,
.patternbox .page-h,
.patternbox .section-h,
.patternbox .section-heading,
.patternbox .topic-title {
  color: #ffffff;
  text-align: center;
}
.patternbox .item-title {
  color: #f2ac2b;
}
.patternbox .item-text {
  color: #ffffff;
  text-align: left;
}.patternbox .item-title,
.patternbox .section-cta {
  color: #ffffff;
  text-align: left;
}
.root {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.root .canvas {
  margin-bottom: 50px;
}
.root .canvas .stub {
  margin-bottom: 25px;
}.root .canvas .flexbox .block-title,
.root .canvas .flexbox .chapter-title,
.root .canvas .flexbox .header-text,
.root .canvas .flexbox .lead-h2,
.root .canvas .flexbox .main-heading,
.root .canvas .flexbox .page-h,
.root .canvas .flexbox .section-h,
.root .canvas .flexbox .section-heading,
.root .canvas .flexbox .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {.root .canvas .flexbox .block-title,
.root .canvas .flexbox .chapter-title,
.root .canvas .flexbox .header-text,
.root .canvas .flexbox .lead-h2,
.root .canvas .flexbox .main-heading,
.root .canvas .flexbox .page-h,
.root .canvas .flexbox .section-h,
.root .canvas .flexbox .section-heading,
.root .canvas .flexbox .topic-title {
    width: 70%;
  }
}
@media (max-width: 992px) {.root .canvas .flexbox .block-title,
.root .canvas .flexbox .chapter-title,
.root .canvas .flexbox .header-text,
.root .canvas .flexbox .lead-h2,
.root .canvas .flexbox .main-heading,
.root .canvas .flexbox .page-h,
.root .canvas .flexbox .section-h,
.root .canvas .flexbox .section-heading,
.root .canvas .flexbox .topic-title {
    width: 100%;
  }
}
.root .linedock .item {
  margin-bottom: 50px;
}
.root .linedock .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .root .linedock .item {
    margin-bottom: 20px;
  }
  .root .linedock .item:last-child {
    margin-bottom: 0;
  }
}
.root .linedock .item .item-wrapper {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 20px;
  height: 100%;
}
@media (max-width: 992px) {
  .root .linedock .item .item-wrapper {
    display: block;
  }
}
.root .linedock .item .item-wrapper .item-img {
  position: relative;
  height: 100%;
  min-height: 400px;
}
@media (max-width: 992px) {
  .root .linedock .item .item-wrapper .item-img {
    min-height: 300px;
    margin-bottom: 20px;
  }
}
.root .linedock .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.root .linedock .item .item-wrapper .card-box {
  height: 100%;
  background-color: #070707;
  padding: 50px;
}
@media (max-width: 1440px) {
  .root .linedock .item .item-wrapper .card-box {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .root .linedock .item .item-wrapper .card-box {
    padding: 20px;
  }
}
.root .linedock .item .item-wrapper .card-box .item-title {
  margin-bottom: 25px;
}
.root .linedock .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}

.root .stub {
  color: #000000;
  text-align: center;
}.root .block-title,
.root .chapter-title,
.root .header-text,
.root .lead-h2,
.root .main-heading,
.root .page-h,
.root .section-h,
.root .section-heading,
.root .topic-title,
.root .flexbox {
  color: #000000;
  text-align: center;
}
.root .item-title {
  color: #000000;
}
.root .item-text {
  color: #ffffff;
}
.root .item-title {
  color: #8d5ef1;
}
.stagebox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("images/red1.jpg");
}
.stagebox .row {
  justify-content: center;
}
.stagebox .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .stagebox .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .stagebox .container {
    padding: 0 15px;
  }
}
.stagebox .canvas {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .stagebox .canvas {
    margin-bottom: 40px;
  }
}.stagebox .canvas .block-title,
.stagebox .canvas .chapter-title,
.stagebox .canvas .header-text,
.stagebox .canvas .lead-h2,
.stagebox .canvas .main-heading,
.stagebox .canvas .page-h,
.stagebox .canvas .section-h,
.stagebox .canvas .section-heading,
.stagebox .canvas .topic-title {
  margin-bottom: 0;
}
.stagebox .linedock {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 992px) {
  .stagebox .linedock {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .stagebox .linedock {
    display: block;
  }
}
@media (max-width: 768px) {
  .stagebox .linedock .item {
    margin-bottom: 15px;
  }
}
.stagebox .linedock .item:hover .item-wrapper::before,
.stagebox .linedock .item:focus .item-wrapper::before {
  margin-right: -10rem;
}
.stagebox .linedock .item .item-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 40px 22px;
  background-color: #070707;
  border: 1px solid #ffc354;
  border-radius: 20px !important;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 992px) {
  .stagebox .linedock .item .item-wrapper {
    padding: 30px 15px;
  }
}
@media (max-width: 768px) {
  .stagebox .linedock .item .item-wrapper {
    height: auto;
  }
}
.stagebox .linedock .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: -25%;
  width: 150%;
  height: 50%;
  background-image: linear-gradient(90deg, #340645 -20%, #ffc354 50%, #8d5ef1 100%);
  border-radius: 50%;
  filter: blur(100px);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .stagebox .linedock .item .item-wrapper::before {
    display: none;
  }
}
.stagebox .linedock .item .item-wrapper .card-box {
  position: relative;
}
.stagebox .linedock .item .item-wrapper .card-box .item-title {
  margin-bottom: 15px;
}
.stagebox .linedock .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}.stagebox .linedock .item .item-wrapper .section-cta {
  width: 100%;
  margin-top: 20px;
}.stagebox .linedock .item .item-wrapper .section-cta .btn-primary-outline,
.stagebox .linedock .item .item-wrapper .section-cta .btn-secondary-outline,
.stagebox .linedock .item .item-wrapper .section-cta .btn-success-outline,
.stagebox .linedock .item .item-wrapper .section-cta .btn-info-outline,
.stagebox .linedock .item .item-wrapper .section-cta .btn-warning-outline,
.stagebox .linedock .item .item-wrapper .section-cta .btn-danger-outline,
.stagebox .linedock .item .item-wrapper .section-cta .btn-white-outline,
.stagebox .linedock .item .item-wrapper .section-cta .btn-black-outline {
  padding: 0;
  border: none !important;
}.stagebox .linedock .item .item-wrapper .section-cta .btn-primary-outline:hover,
.stagebox .linedock .item .item-wrapper .section-cta .btn-secondary-outline:hover,
.stagebox .linedock .item .item-wrapper .section-cta .btn-success-outline:hover,
.stagebox .linedock .item .item-wrapper .section-cta .btn-info-outline:hover,
.stagebox .linedock .item .item-wrapper .section-cta .btn-warning-outline:hover,
.stagebox .linedock .item .item-wrapper .section-cta .btn-danger-outline:hover,
.stagebox .linedock .item .item-wrapper .section-cta .btn-white-outline:hover,
.stagebox .linedock .item .item-wrapper .section-cta .btn-black-outline:hover,
.stagebox .linedock .item .item-wrapper .section-cta .btn-primary-outline:focus,
.stagebox .linedock .item .item-wrapper .section-cta .btn-secondary-outline:focus,
.stagebox .linedock .item .item-wrapper .section-cta .btn-success-outline:focus,
.stagebox .linedock .item .item-wrapper .section-cta .btn-info-outline:focus,
.stagebox .linedock .item .item-wrapper .section-cta .btn-warning-outline:focus,
.stagebox .linedock .item .item-wrapper .section-cta .btn-danger-outline:focus,
.stagebox .linedock .item .item-wrapper .section-cta .btn-white-outline:focus,
.stagebox .linedock .item .item-wrapper .section-cta .btn-black-outline:focus {
  text-decoration: underline;
}.stagebox .block-title,
.stagebox .chapter-title,
.stagebox .header-text,
.stagebox .lead-h2,
.stagebox .main-heading,
.stagebox .page-h,
.stagebox .section-h,
.stagebox .section-heading,
.stagebox .topic-title {
  color: #ffffff;
  text-align: center;
}
.stagebox .item-title {
  color: #f2ac2b;
}
.stagebox .item-text {
  color: #ffffff;
}.stagebox .item-title,
.stagebox .section-cta {
  color: #ffffff;
  text-align: left;
}
.navlayer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.navlayer .canvas {
  margin-bottom: 50px;
}
.navlayer .canvas .stub {
  margin-bottom: 25px;
}.navlayer .canvas .flexbox .block-title,
.navlayer .canvas .flexbox .chapter-title,
.navlayer .canvas .flexbox .header-text,
.navlayer .canvas .flexbox .lead-h2,
.navlayer .canvas .flexbox .main-heading,
.navlayer .canvas .flexbox .page-h,
.navlayer .canvas .flexbox .section-h,
.navlayer .canvas .flexbox .section-heading,
.navlayer .canvas .flexbox .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {.navlayer .canvas .flexbox .block-title,
.navlayer .canvas .flexbox .chapter-title,
.navlayer .canvas .flexbox .header-text,
.navlayer .canvas .flexbox .lead-h2,
.navlayer .canvas .flexbox .main-heading,
.navlayer .canvas .flexbox .page-h,
.navlayer .canvas .flexbox .section-h,
.navlayer .canvas .flexbox .section-heading,
.navlayer .canvas .flexbox .topic-title {
    width: 70%;
  }
}
@media (max-width: 992px) {.navlayer .canvas .flexbox .block-title,
.navlayer .canvas .flexbox .chapter-title,
.navlayer .canvas .flexbox .header-text,
.navlayer .canvas .flexbox .lead-h2,
.navlayer .canvas .flexbox .main-heading,
.navlayer .canvas .flexbox .page-h,
.navlayer .canvas .flexbox .section-h,
.navlayer .canvas .flexbox .section-heading,
.navlayer .canvas .flexbox .topic-title {
    width: 100%;
  }
}
.navlayer .linedock .item {
  margin-bottom: 50px;
}
.navlayer .linedock .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .navlayer .linedock .item {
    margin-bottom: 20px;
  }
  .navlayer .linedock .item:last-child {
    margin-bottom: 0;
  }
}
.navlayer .linedock .item .item-wrapper {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 20px;
  height: 100%;
}
@media (max-width: 992px) {
  .navlayer .linedock .item .item-wrapper {
    display: block;
  }
}
.navlayer .linedock .item .item-wrapper .item-img {
  position: relative;
  height: 100%;
  min-height: 400px;
}
@media (max-width: 992px) {
  .navlayer .linedock .item .item-wrapper .item-img {
    min-height: 300px;
    margin-bottom: 20px;
  }
}
.navlayer .linedock .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navlayer .linedock .item .item-wrapper .card-box {
  height: 100%;
  background-color: #070707;
  padding: 50px;
}
@media (max-width: 1440px) {
  .navlayer .linedock .item .item-wrapper .card-box {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .navlayer .linedock .item .item-wrapper .card-box {
    padding: 20px;
  }
}
.navlayer .linedock .item .item-wrapper .card-box .item-title {
  margin-bottom: 25px;
}
.navlayer .linedock .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}

.navlayer .stub {
  color: #000000;
  text-align: center;
}.navlayer .block-title,
.navlayer .chapter-title,
.navlayer .header-text,
.navlayer .lead-h2,
.navlayer .main-heading,
.navlayer .page-h,
.navlayer .section-h,
.navlayer .section-heading,
.navlayer .topic-title,
.navlayer .flexbox {
  color: #000000;
  text-align: center;
}
.navlayer .item-title {
  color: #000000;
}
.navlayer .item-text {
  color: #ffffff;
}
.navlayer .item-title {
  color: #8d5ef1;
}
.rootwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.rootwrap .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .rootwrap .container {
    padding: 0 15px;
  }
}
.rootwrap .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .rootwrap .canvas {
    text-align: center;
  }
}
.rootwrap .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.rootwrap .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.rootwrap .canvas .block-title,
.rootwrap .canvas .chapter-title,
.rootwrap .canvas .header-text,
.rootwrap .canvas .lead-h2,
.rootwrap .canvas .main-heading,
.rootwrap .canvas .page-h,
.rootwrap .canvas .section-h,
.rootwrap .canvas .section-heading,
.rootwrap .canvas .topic-title {
  margin-bottom: 0;
}
.rootwrap .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .rootwrap .list {
    justify-content: center;
  }
}
.rootwrap .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.rootwrap .list .item-wrap:hover,
.rootwrap .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.rootwrap .list .item-wrap:last-child {
  margin-right: 0;
}
.rootwrap .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.rootwrap .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper {
    height: auto;
  }
}
.rootwrap .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper .tilebox {
    text-align: center;
  }
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title {
  color: #f2ac2b;
}
.rootwrap .tilebox {
  color: #d2d2df;
}
.rootwrap .tilebox {
  text-align: center;
  color: #ffffff;
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title,
.rootwrap .canvas {
  color: #ffc354;
}
.wrapper {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .wrapper {
    min-height: 170px !important;
  }
}
.wrapper .container,
.wrapper .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .wrapper .container,
  .wrapper .container-fluid {
    min-height: 170px !important;
  }
}
.wrapper .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.wrapper .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .wrapper .top_menu {
    min-height: 110px !important;
  }
}
.wrapper .gripbox:hover {
  color: #8d5ef1 !important;
}
.wrapper .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .wrapper .top_menu {
    min-height: 58px;
    position: relative;
  }
  .wrapper .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .wrapper .btn {
    white-space: nowrap;
  }
}
.wrapper .nav-item:focus,
.wrapper .nav-link:focus {
  outline: none;
}
.wrapper ul.navbar-nav {
  flex-wrap: wrap;
}
.wrapper ul.navbar-nav li {
  margin: auto;
}
.wrapper .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.wrapper .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .wrapper .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .wrapper .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .wrapper .navbar .top_menu {
    justify-content: space-between;
  }
  .wrapper .navbar .nav-item .nav-link::before {
    display: none;
  }
  .wrapper .navbar .nav-link {
    padding: 5px !important;
  }
  .wrapper .navbar .container-fluid,
  .wrapper .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .wrapper .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .wrapper .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.wrapper .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.wrapper button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.wrapper .nav-panel {
  position: absolute;
}
.wrapper a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.wrapper a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .wrapper .navbar {
    height: 77px;
  }
  .wrapper .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.mainsegment {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.mainsegment .corefield {
  justify-content: flex-end;
}
.mainsegment .corefield .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .mainsegment .trackbox {
    margin-bottom: 32px;
  }
}.mainsegment .trackbox .block-title,
.mainsegment .trackbox .chapter-title,
.mainsegment .trackbox .header-text,
.mainsegment .trackbox .lead-h2,
.mainsegment .trackbox .main-heading,
.mainsegment .trackbox .page-h,
.mainsegment .trackbox .section-h,
.mainsegment .trackbox .section-heading,
.mainsegment .trackbox .topic-title {
  margin-bottom: 24px;
}.mainsegment .trackbox .block-title span,
.mainsegment .trackbox .chapter-title span,
.mainsegment .trackbox .header-text span,
.mainsegment .trackbox .lead-h2 span,
.mainsegment .trackbox .main-heading span,
.mainsegment .trackbox .page-h span,
.mainsegment .trackbox .section-h span,
.mainsegment .trackbox .section-heading span,
.mainsegment .trackbox .topic-title span {
  background: linear-gradient(170deg, #ffc354, #ffd587);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.mainsegment .trackbox .text-wrapper .rowsegment {
  width: 80%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .mainsegment .trackbox .text-wrapper .rowsegment {
    width: 100%;
  }
}
.mainsegment .gridcore {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .mainsegment .gridcore {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .mainsegment .gridcore {
    padding: 0;
  }
}
.mainsegment .gridcore img {
  height: 700px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .mainsegment .gridcore img {
    height: 350px;
  }
}.mainsegment .block-title,
.mainsegment .chapter-title,
.mainsegment .header-text,
.mainsegment .lead-h2,
.mainsegment .main-heading,
.mainsegment .page-h,
.mainsegment .section-h,
.mainsegment .section-heading,
.mainsegment .topic-title {
  color: #ffffff;
}
.mainsegment .rowsegment,
.mainsegment .text-wrapper {
  color: #ffffff;
}
.flexwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("images/red1.jpg");
}
.flexwrap .row {
  justify-content: center;
}
.flexwrap .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .flexwrap .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .flexwrap .container {
    padding: 0 15px;
  }
}
.flexwrap .canvas {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .flexwrap .canvas {
    margin-bottom: 40px;
  }
}.flexwrap .canvas .block-title,
.flexwrap .canvas .chapter-title,
.flexwrap .canvas .header-text,
.flexwrap .canvas .lead-h2,
.flexwrap .canvas .main-heading,
.flexwrap .canvas .page-h,
.flexwrap .canvas .section-h,
.flexwrap .canvas .section-heading,
.flexwrap .canvas .topic-title {
  margin-bottom: 0;
}
.flexwrap .linedock {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 992px) {
  .flexwrap .linedock {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .flexwrap .linedock {
    display: block;
  }
}
@media (max-width: 768px) {
  .flexwrap .linedock .item {
    margin-bottom: 15px;
  }
}
.flexwrap .linedock .item:hover .item-wrapper::before,
.flexwrap .linedock .item:focus .item-wrapper::before {
  margin-right: -10rem;
}
.flexwrap .linedock .item .item-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 40px 22px;
  background-color: #070707;
  border: 1px solid #8d5ef1;
  border-radius: 20px !important;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 992px) {
  .flexwrap .linedock .item .item-wrapper {
    padding: 30px 15px;
  }
}
@media (max-width: 768px) {
  .flexwrap .linedock .item .item-wrapper {
    height: auto;
  }
}
.flexwrap .linedock .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: -25%;
  width: 150%;
  height: 50%;
  background-image: linear-gradient(90deg, #ffc354 -20%, #8d5ef1 50%, #8d5ef1 100%);
  border-radius: 50%;
  filter: blur(100px);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .flexwrap .linedock .item .item-wrapper::before {
    display: none;
  }
}
.flexwrap .linedock .item .item-wrapper .card-box {
  position: relative;
}
.flexwrap .linedock .item .item-wrapper .card-box .item-title {
  margin-bottom: 15px;
}
.flexwrap .linedock .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}.flexwrap .linedock .item .item-wrapper .section-cta {
  width: 100%;
  margin-top: 20px;
}.flexwrap .linedock .item .item-wrapper .section-cta .btn-primary-outline,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-secondary-outline,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-success-outline,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-info-outline,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-warning-outline,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-danger-outline,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-white-outline,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-black-outline {
  padding: 0;
  border: none !important;
}.flexwrap .linedock .item .item-wrapper .section-cta .btn-primary-outline:hover,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-secondary-outline:hover,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-success-outline:hover,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-info-outline:hover,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-warning-outline:hover,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-danger-outline:hover,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-white-outline:hover,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-black-outline:hover,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-primary-outline:focus,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-secondary-outline:focus,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-success-outline:focus,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-info-outline:focus,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-warning-outline:focus,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-danger-outline:focus,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-white-outline:focus,
.flexwrap .linedock .item .item-wrapper .section-cta .btn-black-outline:focus {
  text-decoration: underline;
}.flexwrap .block-title,
.flexwrap .chapter-title,
.flexwrap .header-text,
.flexwrap .lead-h2,
.flexwrap .main-heading,
.flexwrap .page-h,
.flexwrap .section-h,
.flexwrap .section-heading,
.flexwrap .topic-title {
  color: #ffffff;
  text-align: center;
}
.flexwrap .item-title {
  color: #f2ac2b;
}
.flexwrap .item-text {
  color: #ffffff;
}.flexwrap .item-title,
.flexwrap .section-cta {
  color: #ffffff;
  text-align: left;
}
.layoutunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("images/red1.jpg");
}
.layoutunit .canvas {
  position: relative;
  z-index: 1;
}.layoutunit .canvas .block-title,
.layoutunit .canvas .chapter-title,
.layoutunit .canvas .header-text,
.layoutunit .canvas .lead-h2,
.layoutunit .canvas .main-heading,
.layoutunit .canvas .page-h,
.layoutunit .canvas .section-h,
.layoutunit .canvas .section-heading,
.layoutunit .canvas .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {.layoutunit .canvas .block-title,
.layoutunit .canvas .chapter-title,
.layoutunit .canvas .header-text,
.layoutunit .canvas .lead-h2,
.layoutunit .canvas .main-heading,
.layoutunit .canvas .page-h,
.layoutunit .canvas .section-h,
.layoutunit .canvas .section-heading,
.layoutunit .canvas .topic-title {
    width: 100%;
    margin-bottom: 32px;
  }
}
.layoutunit .linedock {
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.layoutunit .linedock .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .layoutunit .linedock .item {
    margin-bottom: 16px;
  }
}
@media (max-width: 992px) {
  .layoutunit .linedock .item:last-child {
    margin-bottom: 0;
  }
}
.layoutunit .linedock .item .item-wrapper {
  height: 100%;
  background-image: linear-gradient(90deg, #8d5ef1, #ffc354);
  padding: 1px;
}
.layoutunit .linedock .item .item-wrapper .card-box {
  height: 100%;
  background-color: #070707;
  padding: 36px;
  box-shadow: inset 0 12px 15px -12px #8d5ef1;
}
@media (max-width: 992px) {
  .layoutunit .linedock .item .item-wrapper .card-box {
    padding: 20px;
  }
}
.layoutunit .linedock .item .item-wrapper .card-box .item-img {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .layoutunit .linedock .item .item-wrapper .card-box .item-img {
    margin-bottom: 24px;
  }
}
.layoutunit .linedock .item .item-wrapper .card-box .item-img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.layoutunit .linedock .item .item-wrapper .card-box .item-content .item-title {
  margin-bottom: 12px;
}
.layoutunit .linedock .item .item-wrapper .card-box .item-content .item-text {
  margin-bottom: 0;
}.layoutunit .linedock .item .item-wrapper .card-box .item-content .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.layoutunit .linedock .item .item-wrapper .card_1 {
  background-image: linear-gradient(145deg, #070707 74%, #ffc354 100%);
}.layoutunit .block-title,
.layoutunit .chapter-title,
.layoutunit .header-text,
.layoutunit .lead-h2,
.layoutunit .main-heading,
.layoutunit .page-h,
.layoutunit .section-h,
.layoutunit .section-heading,
.layoutunit .topic-title,
.layoutunit .canvas {
  color: #ffffff;
  text-align: center;
}
.layoutunit .item-title {
  color: #ffffff;
}
.layoutunit .item-text {
  color: #ffffff;
}
.domunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("images/red1.jpg");
}
.domunit .row {
  justify-content: center;
}
.domunit .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .domunit .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .domunit .container {
    padding: 0 15px;
  }
}
.domunit .canvas {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .domunit .canvas {
    margin-bottom: 40px;
  }
}.domunit .canvas .block-title,
.domunit .canvas .chapter-title,
.domunit .canvas .header-text,
.domunit .canvas .lead-h2,
.domunit .canvas .main-heading,
.domunit .canvas .page-h,
.domunit .canvas .section-h,
.domunit .canvas .section-heading,
.domunit .canvas .topic-title {
  margin-bottom: 0;
}
.domunit .linedock {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 992px) {
  .domunit .linedock {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .domunit .linedock {
    display: block;
  }
}
@media (max-width: 768px) {
  .domunit .linedock .item {
    margin-bottom: 15px;
  }
}
.domunit .linedock .item:hover .item-wrapper::before,
.domunit .linedock .item:focus .item-wrapper::before {
  margin-right: -10rem;
}
.domunit .linedock .item .item-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 40px 22px;
  background-color: #070707;
  border: 1px solid #ffc354;
  border-radius: 20px !important;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 992px) {
  .domunit .linedock .item .item-wrapper {
    padding: 30px 15px;
  }
}
@media (max-width: 768px) {
  .domunit .linedock .item .item-wrapper {
    height: auto;
  }
}
.domunit .linedock .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: -25%;
  width: 150%;
  height: 50%;
  background-image: linear-gradient(90deg, #340645 -20%, #ffc354 50%, #8d5ef1 100%);
  border-radius: 50%;
  filter: blur(100px);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .domunit .linedock .item .item-wrapper::before {
    display: none;
  }
}
.domunit .linedock .item .item-wrapper .card-box {
  position: relative;
}
.domunit .linedock .item .item-wrapper .card-box .item-title {
  margin-bottom: 15px;
}
.domunit .linedock .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}.domunit .linedock .item .item-wrapper .section-cta {
  width: 100%;
  margin-top: 20px;
}.domunit .linedock .item .item-wrapper .section-cta .btn-primary-outline,
.domunit .linedock .item .item-wrapper .section-cta .btn-secondary-outline,
.domunit .linedock .item .item-wrapper .section-cta .btn-success-outline,
.domunit .linedock .item .item-wrapper .section-cta .btn-info-outline,
.domunit .linedock .item .item-wrapper .section-cta .btn-warning-outline,
.domunit .linedock .item .item-wrapper .section-cta .btn-danger-outline,
.domunit .linedock .item .item-wrapper .section-cta .btn-white-outline,
.domunit .linedock .item .item-wrapper .section-cta .btn-black-outline {
  padding: 0;
  border: none !important;
}.domunit .linedock .item .item-wrapper .section-cta .btn-primary-outline:hover,
.domunit .linedock .item .item-wrapper .section-cta .btn-secondary-outline:hover,
.domunit .linedock .item .item-wrapper .section-cta .btn-success-outline:hover,
.domunit .linedock .item .item-wrapper .section-cta .btn-info-outline:hover,
.domunit .linedock .item .item-wrapper .section-cta .btn-warning-outline:hover,
.domunit .linedock .item .item-wrapper .section-cta .btn-danger-outline:hover,
.domunit .linedock .item .item-wrapper .section-cta .btn-white-outline:hover,
.domunit .linedock .item .item-wrapper .section-cta .btn-black-outline:hover,
.domunit .linedock .item .item-wrapper .section-cta .btn-primary-outline:focus,
.domunit .linedock .item .item-wrapper .section-cta .btn-secondary-outline:focus,
.domunit .linedock .item .item-wrapper .section-cta .btn-success-outline:focus,
.domunit .linedock .item .item-wrapper .section-cta .btn-info-outline:focus,
.domunit .linedock .item .item-wrapper .section-cta .btn-warning-outline:focus,
.domunit .linedock .item .item-wrapper .section-cta .btn-danger-outline:focus,
.domunit .linedock .item .item-wrapper .section-cta .btn-white-outline:focus,
.domunit .linedock .item .item-wrapper .section-cta .btn-black-outline:focus {
  text-decoration: underline;
}.domunit .block-title,
.domunit .chapter-title,
.domunit .header-text,
.domunit .lead-h2,
.domunit .main-heading,
.domunit .page-h,
.domunit .section-h,
.domunit .section-heading,
.domunit .topic-title {
  color: #ffffff;
  text-align: center;
}
.domunit .item-title {
  color: #f2ac2b;
}
.domunit .item-text {
  color: #ffffff;
}.domunit .item-title,
.domunit .section-cta {
  color: #ffffff;
  text-align: left;
}
.rootwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.rootwrap .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .rootwrap .container {
    padding: 0 15px;
  }
}
.rootwrap .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .rootwrap .canvas {
    text-align: center;
  }
}
.rootwrap .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.rootwrap .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.rootwrap .canvas .block-title,
.rootwrap .canvas .chapter-title,
.rootwrap .canvas .header-text,
.rootwrap .canvas .lead-h2,
.rootwrap .canvas .main-heading,
.rootwrap .canvas .page-h,
.rootwrap .canvas .section-h,
.rootwrap .canvas .section-heading,
.rootwrap .canvas .topic-title {
  margin-bottom: 0;
}
.rootwrap .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .rootwrap .list {
    justify-content: center;
  }
}
.rootwrap .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.rootwrap .list .item-wrap:hover,
.rootwrap .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.rootwrap .list .item-wrap:last-child {
  margin-right: 0;
}
.rootwrap .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.rootwrap .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper {
    height: auto;
  }
}
.rootwrap .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper .tilebox {
    text-align: center;
  }
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title {
  color: #f2ac2b;
}
.rootwrap .tilebox {
  color: #d2d2df;
}
.rootwrap .tilebox {
  text-align: center;
  color: #ffffff;
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title,
.rootwrap .canvas {
  color: #ffc354;
}
.wrapper {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .wrapper {
    min-height: 170px !important;
  }
}
.wrapper .container,
.wrapper .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .wrapper .container,
  .wrapper .container-fluid {
    min-height: 170px !important;
  }
}
.wrapper .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.wrapper .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .wrapper .top_menu {
    min-height: 110px !important;
  }
}
.wrapper .gripbox:hover {
  color: #8d5ef1 !important;
}
.wrapper .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .wrapper .top_menu {
    min-height: 58px;
    position: relative;
  }
  .wrapper .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .wrapper .btn {
    white-space: nowrap;
  }
}
.wrapper .nav-item:focus,
.wrapper .nav-link:focus {
  outline: none;
}
.wrapper ul.navbar-nav {
  flex-wrap: wrap;
}
.wrapper ul.navbar-nav li {
  margin: auto;
}
.wrapper .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.wrapper .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .wrapper .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .wrapper .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .wrapper .navbar .top_menu {
    justify-content: space-between;
  }
  .wrapper .navbar .nav-item .nav-link::before {
    display: none;
  }
  .wrapper .navbar .nav-link {
    padding: 5px !important;
  }
  .wrapper .navbar .container-fluid,
  .wrapper .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .wrapper .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .wrapper .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.wrapper .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.wrapper button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.wrapper .nav-panel {
  position: absolute;
}
.wrapper a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.wrapper a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .wrapper .navbar {
    height: 77px;
  }
  .wrapper .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.contentbox {
  overflow: hidden;
  background-image: url("images/red1.jpg");
}
.contentbox .nodetrack {
  backdrop-filter: blur(3.5px);
}
.contentbox .card-wrapper {
  background: linear-gradient(0deg, transparent 0%, #070707 150%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .contentbox .card-wrapper {
    padding: 2rem 1rem;
  }
}
.contentbox .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid #070707;
  border-radius: 30px;
}
.contentbox .col-12 {
  position: relative;
}
.contentbox .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, transparent 0%, #8d5ef1 150%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .contentbox .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.contentbox .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid #8d5ef1;
  border-radius: 50%;
}
.contentbox .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}.contentbox .block-title,
.contentbox .chapter-title,
.contentbox .header-text,
.contentbox .lead-h2,
.contentbox .main-heading,
.contentbox .page-h,
.contentbox .section-h,
.contentbox .section-heading,
.contentbox .topic-title {
  color: #ffc354;
  text-align: center;
}.contentbox .rowsegment,
.contentbox .section-cta {
  color: #ffffff;
  text-align: center;
}
.framefield {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.framefield .trackbox {
  display: flex;
  justify-content: center;
}
.framefield .trackbox .card-wrapper {
  background-color: #070707;
  border: 2px solid #8d5ef1;
  width: 58%;
  padding: 82px;
  width: 80%;
}
@media (max-width: 1440px) {
  .framefield .trackbox .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .framefield .trackbox .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
@media (max-width: 1440px) {
  .framefield .trackbox .card-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .framefield .trackbox .card-wrapper {
    width: 100%;
  }
}
.framefield .trackbox .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .framefield .trackbox .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.framefield .trackbox .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}.framefield .trackbox .card-wrapper .canvas .block-title,
.framefield .trackbox .card-wrapper .canvas .chapter-title,
.framefield .trackbox .card-wrapper .canvas .header-text,
.framefield .trackbox .card-wrapper .canvas .lead-h2,
.framefield .trackbox .card-wrapper .canvas .main-heading,
.framefield .trackbox .card-wrapper .canvas .page-h,
.framefield .trackbox .card-wrapper .canvas .section-h,
.framefield .trackbox .card-wrapper .canvas .section-heading,
.framefield .trackbox .card-wrapper .canvas .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {.framefield .trackbox .card-wrapper .canvas .block-title,
.framefield .trackbox .card-wrapper .canvas .chapter-title,
.framefield .trackbox .card-wrapper .canvas .header-text,
.framefield .trackbox .card-wrapper .canvas .lead-h2,
.framefield .trackbox .card-wrapper .canvas .main-heading,
.framefield .trackbox .card-wrapper .canvas .page-h,
.framefield .trackbox .card-wrapper .canvas .section-h,
.framefield .trackbox .card-wrapper .canvas .section-heading,
.framefield .trackbox .card-wrapper .canvas .topic-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.framefield .trackbox .card-wrapper .text-wrapper .rowsegment {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .framefield .trackbox .card-wrapper .text-wrapper .rowsegment {
    width: 100%;
  }
}.framefield .trackbox .card-wrapper .section-cta .btn {
  margin-bottom: 0;
}.framefield .block-title,
.framefield .chapter-title,
.framefield .header-text,
.framefield .lead-h2,
.framefield .main-heading,
.framefield .page-h,
.framefield .section-h,
.framefield .section-heading,
.framefield .topic-title {
  color: #3a001d;
}
.framefield .rowsegment,
.framefield .text-wrapper {
  color: #ffffff;
  text-align: center;
}.framefield .block-title,
.framefield .chapter-title,
.framefield .header-text,
.framefield .lead-h2,
.framefield .main-heading,
.framefield .page-h,
.framefield .section-h,
.framefield .section-heading,
.framefield .topic-title,
.framefield .section-cta,
.framefield .canvas,
.framefield .logo-wrapper {
  text-align: center;
}.framefield .block-title,
.framefield .chapter-title,
.framefield .header-text,
.framefield .lead-h2,
.framefield .main-heading,
.framefield .page-h,
.framefield .section-h,
.framefield .section-heading,
.framefield .topic-title,
.framefield .section-cta,
.framefield .logo-wrapper,
.framefield .canvas {
  color: #ffc354;
}
.sectionlayer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.sectionlayer .row {
  margin: 0 -45px;
}
.sectionlayer .row .card {
  padding: 0 45px;
  justify-content: center;
}
.sectionlayer .gridcore {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sectionlayer .gridcore img {
  width: 500px;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .sectionlayer .gridcore img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 992px) {
  .sectionlayer .gridcore img {
    height: 350px;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .sectionlayer .gridcore img {
    height: 300px;
  }
}
.sectionlayer .trackbox {
  padding-left: 66px;
}
@media (max-width: 1440px) {
  .sectionlayer .trackbox {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .sectionlayer .trackbox {
    margin-bottom: 32px;
  }
}.sectionlayer .trackbox .canvas .block-title,
.sectionlayer .trackbox .canvas .chapter-title,
.sectionlayer .trackbox .canvas .header-text,
.sectionlayer .trackbox .canvas .lead-h2,
.sectionlayer .trackbox .canvas .main-heading,
.sectionlayer .trackbox .canvas .page-h,
.sectionlayer .trackbox .canvas .section-h,
.sectionlayer .trackbox .canvas .section-heading,
.sectionlayer .trackbox .canvas .topic-title {
  margin-bottom: 22px;
}
.sectionlayer .trackbox .text-wrapper .rowsegment {
  margin-bottom: 12px;
}.sectionlayer .trackbox .section-cta .btn {
  margin-bottom: 0;
}.sectionlayer .block-title,
.sectionlayer .chapter-title,
.sectionlayer .header-text,
.sectionlayer .lead-h2,
.sectionlayer .main-heading,
.sectionlayer .page-h,
.sectionlayer .section-h,
.sectionlayer .section-heading,
.sectionlayer .topic-title {
  color: #3a001d;
}
.sectionlayer .rowsegment {
  color: #3a001d;
}.sectionlayer .block-title,
.sectionlayer .chapter-title,
.sectionlayer .header-text,
.sectionlayer .lead-h2,
.sectionlayer .main-heading,
.sectionlayer .page-h,
.sectionlayer .section-h,
.sectionlayer .section-heading,
.sectionlayer .topic-title,
.sectionlayer .section-cta {
  color: #ffc354;
}
.sectionlayer .rowsegment,
.sectionlayer .text-wrapper {
  color: #ffffff;
}
.rootwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.rootwrap .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .rootwrap .container {
    padding: 0 15px;
  }
}
.rootwrap .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .rootwrap .canvas {
    text-align: center;
  }
}
.rootwrap .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.rootwrap .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.rootwrap .canvas .block-title,
.rootwrap .canvas .chapter-title,
.rootwrap .canvas .header-text,
.rootwrap .canvas .lead-h2,
.rootwrap .canvas .main-heading,
.rootwrap .canvas .page-h,
.rootwrap .canvas .section-h,
.rootwrap .canvas .section-heading,
.rootwrap .canvas .topic-title {
  margin-bottom: 0;
}
.rootwrap .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .rootwrap .list {
    justify-content: center;
  }
}
.rootwrap .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.rootwrap .list .item-wrap:hover,
.rootwrap .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.rootwrap .list .item-wrap:last-child {
  margin-right: 0;
}
.rootwrap .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.rootwrap .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper {
    height: auto;
  }
}
.rootwrap .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper .tilebox {
    text-align: center;
  }
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title {
  color: #f2ac2b;
}
.rootwrap .tilebox {
  color: #d2d2df;
}
.rootwrap .tilebox {
  text-align: center;
  color: #ffffff;
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title,
.rootwrap .canvas {
  color: #ffc354;
}
.wrapper {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .wrapper {
    min-height: 170px !important;
  }
}
.wrapper .container,
.wrapper .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .wrapper .container,
  .wrapper .container-fluid {
    min-height: 170px !important;
  }
}
.wrapper .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.wrapper .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .wrapper .top_menu {
    min-height: 110px !important;
  }
}
.wrapper .gripbox:hover {
  color: #8d5ef1 !important;
}
.wrapper .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .wrapper .top_menu {
    min-height: 58px;
    position: relative;
  }
  .wrapper .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .wrapper .btn {
    white-space: nowrap;
  }
}
.wrapper .nav-item:focus,
.wrapper .nav-link:focus {
  outline: none;
}
.wrapper ul.navbar-nav {
  flex-wrap: wrap;
}
.wrapper ul.navbar-nav li {
  margin: auto;
}
.wrapper .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.wrapper .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .wrapper .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .wrapper .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .wrapper .navbar .top_menu {
    justify-content: space-between;
  }
  .wrapper .navbar .nav-item .nav-link::before {
    display: none;
  }
  .wrapper .navbar .nav-link {
    padding: 5px !important;
  }
  .wrapper .navbar .container-fluid,
  .wrapper .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .wrapper .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .wrapper .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.wrapper .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.wrapper button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.wrapper .nav-panel {
  position: absolute;
}
.wrapper a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.wrapper a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .wrapper .navbar {
    height: 77px;
  }
  .wrapper .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.pack {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.pack .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .pack .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .pack .container {
    padding: 0 6px;
  }
}
.pack .row-main {
  margin: 0;
  padding: 0 150px;
  justify-content: center;
}
@media (max-width: 1440px) {
  .pack .row-main {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .pack .row-main {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .pack .row-main {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .pack .row-main {
    padding: 0;
  }
}
.pack .row-main .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}.pack .block-title,
.pack .chapter-title,
.pack .header-text,
.pack .lead-h2,
.pack .main-heading,
.pack .page-h,
.pack .section-h,
.pack .section-heading,
.pack .topic-title {
  color: #ffc354;
  text-align: center;
}
.pack .rowsegment {
  color: #ffffff;
  text-align: center;
}
.piece {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.piece .row {
  margin: 0 -45px;
}
.piece .row .card {
  padding: 0 45px;
  justify-content: center;
}
.piece .gridcore {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 66px;
}
@media (max-width: 1440px) {
  .piece .gridcore {
    padding-left: 0;
  }
}
.piece .gridcore img {
  width: 500px;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .piece .gridcore img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 992px) {
  .piece .gridcore img {
    height: 350px;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .piece .gridcore img {
    height: 300px;
  }
}
.piece .trackbox {
  padding-left: 66px;
  padding-left: 0;
}
@media (max-width: 1440px) {
  .piece .trackbox {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .piece .trackbox {
    margin-bottom: 32px;
  }
}.piece .trackbox .canvas .block-title,
.piece .trackbox .canvas .chapter-title,
.piece .trackbox .canvas .header-text,
.piece .trackbox .canvas .lead-h2,
.piece .trackbox .canvas .main-heading,
.piece .trackbox .canvas .page-h,
.piece .trackbox .canvas .section-h,
.piece .trackbox .canvas .section-heading,
.piece .trackbox .canvas .topic-title {
  margin-bottom: 22px;
}
.piece .trackbox .text-wrapper .rowsegment {
  margin-bottom: 12px;
}.piece .trackbox .section-cta .btn {
  margin-bottom: 0;
}.piece .block-title,
.piece .chapter-title,
.piece .header-text,
.piece .lead-h2,
.piece .main-heading,
.piece .page-h,
.piece .section-h,
.piece .section-heading,
.piece .topic-title {
  color: #3a001d;
}
.piece .rowsegment {
  color: #3a001d;
}.piece .block-title,
.piece .chapter-title,
.piece .header-text,
.piece .lead-h2,
.piece .main-heading,
.piece .page-h,
.piece .section-h,
.piece .section-heading,
.piece .topic-title,
.piece .section-cta {
  color: #ffc354;
}
.piece .rowsegment,
.piece .text-wrapper {
  color: #ffffff;
}
.rootwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.rootwrap .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .rootwrap .container {
    padding: 0 15px;
  }
}
.rootwrap .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .rootwrap .canvas {
    text-align: center;
  }
}
.rootwrap .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.rootwrap .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.rootwrap .canvas .block-title,
.rootwrap .canvas .chapter-title,
.rootwrap .canvas .header-text,
.rootwrap .canvas .lead-h2,
.rootwrap .canvas .main-heading,
.rootwrap .canvas .page-h,
.rootwrap .canvas .section-h,
.rootwrap .canvas .section-heading,
.rootwrap .canvas .topic-title {
  margin-bottom: 0;
}
.rootwrap .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .rootwrap .list {
    justify-content: center;
  }
}
.rootwrap .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.rootwrap .list .item-wrap:hover,
.rootwrap .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.rootwrap .list .item-wrap:last-child {
  margin-right: 0;
}
.rootwrap .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.rootwrap .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper {
    height: auto;
  }
}
.rootwrap .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper .tilebox {
    text-align: center;
  }
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title {
  color: #f2ac2b;
}
.rootwrap .tilebox {
  color: #d2d2df;
}
.rootwrap .tilebox {
  text-align: center;
  color: #ffffff;
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title,
.rootwrap .canvas {
  color: #ffc354;
}
.wrapper {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .wrapper {
    min-height: 170px !important;
  }
}
.wrapper .container,
.wrapper .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .wrapper .container,
  .wrapper .container-fluid {
    min-height: 170px !important;
  }
}
.wrapper .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.wrapper .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .wrapper .top_menu {
    min-height: 110px !important;
  }
}
.wrapper .gripbox:hover {
  color: #8d5ef1 !important;
}
.wrapper .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .wrapper .top_menu {
    min-height: 58px;
    position: relative;
  }
  .wrapper .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .wrapper .btn {
    white-space: nowrap;
  }
}
.wrapper .nav-item:focus,
.wrapper .nav-link:focus {
  outline: none;
}
.wrapper ul.navbar-nav {
  flex-wrap: wrap;
}
.wrapper ul.navbar-nav li {
  margin: auto;
}
.wrapper .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.wrapper .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .wrapper .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .wrapper .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .wrapper .navbar .top_menu {
    justify-content: space-between;
  }
  .wrapper .navbar .nav-item .nav-link::before {
    display: none;
  }
  .wrapper .navbar .nav-link {
    padding: 5px !important;
  }
  .wrapper .navbar .container-fluid,
  .wrapper .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .wrapper .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .wrapper .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.wrapper .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.wrapper button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.wrapper .nav-panel {
  position: absolute;
}
.wrapper a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.wrapper a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .wrapper .navbar {
    height: 77px;
  }
  .wrapper .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.padbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.padbox .trackbox {
  display: flex;
  justify-content: center;
}
.padbox .trackbox .card-wrapper {
  background-color: #070707;
  border: 2px solid #8d5ef1;
  width: 58%;
  padding: 82px;
  width: 80%;
}
@media (max-width: 1440px) {
  .padbox .trackbox .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .padbox .trackbox .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
@media (max-width: 1440px) {
  .padbox .trackbox .card-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .padbox .trackbox .card-wrapper {
    width: 100%;
  }
}
.padbox .trackbox .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .padbox .trackbox .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.padbox .trackbox .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}.padbox .trackbox .card-wrapper .canvas .block-title,
.padbox .trackbox .card-wrapper .canvas .chapter-title,
.padbox .trackbox .card-wrapper .canvas .header-text,
.padbox .trackbox .card-wrapper .canvas .lead-h2,
.padbox .trackbox .card-wrapper .canvas .main-heading,
.padbox .trackbox .card-wrapper .canvas .page-h,
.padbox .trackbox .card-wrapper .canvas .section-h,
.padbox .trackbox .card-wrapper .canvas .section-heading,
.padbox .trackbox .card-wrapper .canvas .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {.padbox .trackbox .card-wrapper .canvas .block-title,
.padbox .trackbox .card-wrapper .canvas .chapter-title,
.padbox .trackbox .card-wrapper .canvas .header-text,
.padbox .trackbox .card-wrapper .canvas .lead-h2,
.padbox .trackbox .card-wrapper .canvas .main-heading,
.padbox .trackbox .card-wrapper .canvas .page-h,
.padbox .trackbox .card-wrapper .canvas .section-h,
.padbox .trackbox .card-wrapper .canvas .section-heading,
.padbox .trackbox .card-wrapper .canvas .topic-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.padbox .trackbox .card-wrapper .text-wrapper .rowsegment {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .padbox .trackbox .card-wrapper .text-wrapper .rowsegment {
    width: 100%;
  }
}.padbox .trackbox .card-wrapper .section-cta .btn {
  margin-bottom: 0;
}.padbox .block-title,
.padbox .chapter-title,
.padbox .header-text,
.padbox .lead-h2,
.padbox .main-heading,
.padbox .page-h,
.padbox .section-h,
.padbox .section-heading,
.padbox .topic-title {
  color: #3a001d;
}
.padbox .rowsegment,
.padbox .text-wrapper {
  color: #ffffff;
  text-align: center;
}.padbox .block-title,
.padbox .chapter-title,
.padbox .header-text,
.padbox .lead-h2,
.padbox .main-heading,
.padbox .page-h,
.padbox .section-h,
.padbox .section-heading,
.padbox .topic-title,
.padbox .section-cta,
.padbox .canvas,
.padbox .logo-wrapper {
  text-align: center;
}.padbox .block-title,
.padbox .chapter-title,
.padbox .header-text,
.padbox .lead-h2,
.padbox .main-heading,
.padbox .page-h,
.padbox .section-h,
.padbox .section-heading,
.padbox .topic-title,
.padbox .section-cta,
.padbox .logo-wrapper,
.padbox .canvas {
  color: #ffc354;
}
.unitcol {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
  overflow: hidden;
}
.unitcol .container {
  max-width: 800px;
}
.unitcol .col-text {
  position: relative;
  margin-bottom: 8rem;
}
.unitcol .rowsegment {
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-align: left;
}
.unitcol .icon-box {
  position: absolute;
  bottom: -3.2rem;
  right: -5.5rem;
}
@media (max-width: 1199px) {
  .unitcol .icon-box {
    bottom: -6.6rem;
    right: 1.2rem;
  }
}
.unitcol .icon-box span {
  color: #e1965f;
}
.rootwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.rootwrap .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .rootwrap .container {
    padding: 0 15px;
  }
}
.rootwrap .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .rootwrap .canvas {
    text-align: center;
  }
}
.rootwrap .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.rootwrap .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.rootwrap .canvas .block-title,
.rootwrap .canvas .chapter-title,
.rootwrap .canvas .header-text,
.rootwrap .canvas .lead-h2,
.rootwrap .canvas .main-heading,
.rootwrap .canvas .page-h,
.rootwrap .canvas .section-h,
.rootwrap .canvas .section-heading,
.rootwrap .canvas .topic-title {
  margin-bottom: 0;
}
.rootwrap .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .rootwrap .list {
    justify-content: center;
  }
}
.rootwrap .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.rootwrap .list .item-wrap:hover,
.rootwrap .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.rootwrap .list .item-wrap:last-child {
  margin-right: 0;
}
.rootwrap .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.rootwrap .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper {
    height: auto;
  }
}
.rootwrap .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rootwrap .copy-wrapper .tilebox {
    text-align: center;
  }
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title {
  color: #f2ac2b;
}
.rootwrap .tilebox {
  color: #d2d2df;
}
.rootwrap .tilebox {
  text-align: center;
  color: #ffffff;
}.rootwrap .block-title,
.rootwrap .chapter-title,
.rootwrap .header-text,
.rootwrap .lead-h2,
.rootwrap .main-heading,
.rootwrap .page-h,
.rootwrap .section-h,
.rootwrap .section-heading,
.rootwrap .topic-title,
.rootwrap .canvas {
  color: #ffc354;
}
.navwrap {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .navwrap {
    min-height: 170px !important;
  }
}
.navwrap .container,
.navwrap .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .navwrap .container,
  .navwrap .container-fluid {
    min-height: 170px !important;
  }
}
.navwrap .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.navwrap .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .navwrap .top_menu {
    min-height: 110px !important;
  }
}
.navwrap .gripbox:hover {
  color: #8d5ef1 !important;
}
.navwrap .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .navwrap .top_menu {
    min-height: 58px;
    position: relative;
  }
  .navwrap .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .navwrap .btn {
    white-space: nowrap;
  }
}
.navwrap .nav-item:focus,
.navwrap .nav-link:focus {
  outline: none;
}
.navwrap ul.navbar-nav {
  flex-wrap: wrap;
}
.navwrap ul.navbar-nav li {
  margin: auto;
}
.navwrap .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.navwrap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .navwrap .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .navwrap .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .navwrap .navbar .top_menu {
    justify-content: space-between;
  }
  .navwrap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .navwrap .navbar .nav-link {
    padding: 5px !important;
  }
  .navwrap .navbar .container-fluid,
  .navwrap .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .navwrap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .navwrap .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.navwrap .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.navwrap button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.navwrap .nav-panel {
  position: absolute;
}
.navwrap a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.navwrap a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .navwrap .navbar {
    height: 77px;
  }
  .navwrap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.sectionwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.sectionwrap .trackbox {
  display: flex;
  justify-content: center;
}
.sectionwrap .trackbox .card-wrapper {
  background-color: #070707;
  border: 2px solid #8d5ef1;
  width: 58%;
  padding: 82px;
  width: 80%;
}
@media (max-width: 1440px) {
  .sectionwrap .trackbox .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .sectionwrap .trackbox .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
@media (max-width: 1440px) {
  .sectionwrap .trackbox .card-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .sectionwrap .trackbox .card-wrapper {
    width: 100%;
  }
}
.sectionwrap .trackbox .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .sectionwrap .trackbox .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.sectionwrap .trackbox .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}.sectionwrap .trackbox .card-wrapper .canvas .block-title,
.sectionwrap .trackbox .card-wrapper .canvas .chapter-title,
.sectionwrap .trackbox .card-wrapper .canvas .header-text,
.sectionwrap .trackbox .card-wrapper .canvas .lead-h2,
.sectionwrap .trackbox .card-wrapper .canvas .main-heading,
.sectionwrap .trackbox .card-wrapper .canvas .page-h,
.sectionwrap .trackbox .card-wrapper .canvas .section-h,
.sectionwrap .trackbox .card-wrapper .canvas .section-heading,
.sectionwrap .trackbox .card-wrapper .canvas .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {.sectionwrap .trackbox .card-wrapper .canvas .block-title,
.sectionwrap .trackbox .card-wrapper .canvas .chapter-title,
.sectionwrap .trackbox .card-wrapper .canvas .header-text,
.sectionwrap .trackbox .card-wrapper .canvas .lead-h2,
.sectionwrap .trackbox .card-wrapper .canvas .main-heading,
.sectionwrap .trackbox .card-wrapper .canvas .page-h,
.sectionwrap .trackbox .card-wrapper .canvas .section-h,
.sectionwrap .trackbox .card-wrapper .canvas .section-heading,
.sectionwrap .trackbox .card-wrapper .canvas .topic-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.sectionwrap .trackbox .card-wrapper .text-wrapper .rowsegment {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .sectionwrap .trackbox .card-wrapper .text-wrapper .rowsegment {
    width: 100%;
  }
}.sectionwrap .trackbox .card-wrapper .section-cta .btn {
  margin-bottom: 0;
}.sectionwrap .block-title,
.sectionwrap .chapter-title,
.sectionwrap .header-text,
.sectionwrap .lead-h2,
.sectionwrap .main-heading,
.sectionwrap .page-h,
.sectionwrap .section-h,
.sectionwrap .section-heading,
.sectionwrap .topic-title {
  color: #3a001d;
}
.sectionwrap .rowsegment,
.sectionwrap .text-wrapper {
  color: #ffffff;
  text-align: center;
}.sectionwrap .block-title,
.sectionwrap .chapter-title,
.sectionwrap .header-text,
.sectionwrap .lead-h2,
.sectionwrap .main-heading,
.sectionwrap .page-h,
.sectionwrap .section-h,
.sectionwrap .section-heading,
.sectionwrap .topic-title,
.sectionwrap .section-cta,
.sectionwrap .canvas,
.sectionwrap .logo-wrapper {
  text-align: center;
}.sectionwrap .block-title,
.sectionwrap .chapter-title,
.sectionwrap .header-text,
.sectionwrap .lead-h2,
.sectionwrap .main-heading,
.sectionwrap .page-h,
.sectionwrap .section-h,
.sectionwrap .section-heading,
.sectionwrap .topic-title,
.sectionwrap .section-cta,
.sectionwrap .logo-wrapper,
.sectionwrap .canvas {
  color: #ffc354;
}
.areaunit {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
  overflow: hidden;
}
.areaunit .container {
  max-width: 800px;
}
.areaunit .col-text {
  position: relative;
  margin-bottom: 8rem;
}
.areaunit .rowsegment {
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-align: left;
}
.areaunit .icon-box {
  position: absolute;
  bottom: -3.2rem;
  right: -5.5rem;
}
@media (max-width: 1199px) {
  .areaunit .icon-box {
    bottom: -6.6rem;
    right: 1.2rem;
  }
}
.areaunit .icon-box span {
  color: #e1965f;
}
.drawwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.drawwrap .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .drawwrap .container {
    padding: 0 15px;
  }
}
.drawwrap .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .drawwrap .canvas {
    text-align: center;
  }
}
.drawwrap .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.drawwrap .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.drawwrap .canvas .block-title,
.drawwrap .canvas .chapter-title,
.drawwrap .canvas .header-text,
.drawwrap .canvas .lead-h2,
.drawwrap .canvas .main-heading,
.drawwrap .canvas .page-h,
.drawwrap .canvas .section-h,
.drawwrap .canvas .section-heading,
.drawwrap .canvas .topic-title {
  margin-bottom: 0;
}
.drawwrap .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .drawwrap .list {
    justify-content: center;
  }
}
.drawwrap .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.drawwrap .list .item-wrap:hover,
.drawwrap .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.drawwrap .list .item-wrap:last-child {
  margin-right: 0;
}
.drawwrap .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.drawwrap .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .drawwrap .copy-wrapper {
    height: auto;
  }
}
.drawwrap .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .drawwrap .copy-wrapper .tilebox {
    text-align: center;
  }
}.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: #f2ac2b;
}
.drawwrap .tilebox {
  color: #d2d2df;
}
.drawwrap .tilebox {
  text-align: center;
  color: #ffffff;
}.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,
.drawwrap .canvas {
  color: #ffc354;
}
.slotunit {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .slotunit {
    min-height: 170px !important;
  }
}
.slotunit .container,
.slotunit .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .slotunit .container,
  .slotunit .container-fluid {
    min-height: 170px !important;
  }
}
.slotunit .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.slotunit .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .slotunit .top_menu {
    min-height: 110px !important;
  }
}
.slotunit .gripbox:hover {
  color: #8d5ef1 !important;
}
.slotunit .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .slotunit .top_menu {
    min-height: 58px;
    position: relative;
  }
  .slotunit .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .slotunit .btn {
    white-space: nowrap;
  }
}
.slotunit .nav-item:focus,
.slotunit .nav-link:focus {
  outline: none;
}
.slotunit ul.navbar-nav {
  flex-wrap: wrap;
}
.slotunit ul.navbar-nav li {
  margin: auto;
}
.slotunit .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.slotunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .slotunit .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .slotunit .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .slotunit .navbar .top_menu {
    justify-content: space-between;
  }
  .slotunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .slotunit .navbar .nav-link {
    padding: 5px !important;
  }
  .slotunit .navbar .container-fluid,
  .slotunit .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .slotunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .slotunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.slotunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.slotunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.slotunit .nav-panel {
  position: absolute;
}
.slotunit a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.slotunit a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .slotunit .navbar {
    height: 77px;
  }
  .slotunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.wrapperunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.wrapperunit .trackbox {
  display: flex;
  justify-content: center;
}
.wrapperunit .trackbox .card-wrapper {
  background-color: #070707;
  border: 2px solid #8d5ef1;
  width: 58%;
  padding: 82px;
  width: 80%;
}
@media (max-width: 1440px) {
  .wrapperunit .trackbox .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .wrapperunit .trackbox .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
@media (max-width: 1440px) {
  .wrapperunit .trackbox .card-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .wrapperunit .trackbox .card-wrapper {
    width: 100%;
  }
}
.wrapperunit .trackbox .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .wrapperunit .trackbox .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.wrapperunit .trackbox .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}.wrapperunit .trackbox .card-wrapper .canvas .block-title,
.wrapperunit .trackbox .card-wrapper .canvas .chapter-title,
.wrapperunit .trackbox .card-wrapper .canvas .header-text,
.wrapperunit .trackbox .card-wrapper .canvas .lead-h2,
.wrapperunit .trackbox .card-wrapper .canvas .main-heading,
.wrapperunit .trackbox .card-wrapper .canvas .page-h,
.wrapperunit .trackbox .card-wrapper .canvas .section-h,
.wrapperunit .trackbox .card-wrapper .canvas .section-heading,
.wrapperunit .trackbox .card-wrapper .canvas .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {.wrapperunit .trackbox .card-wrapper .canvas .block-title,
.wrapperunit .trackbox .card-wrapper .canvas .chapter-title,
.wrapperunit .trackbox .card-wrapper .canvas .header-text,
.wrapperunit .trackbox .card-wrapper .canvas .lead-h2,
.wrapperunit .trackbox .card-wrapper .canvas .main-heading,
.wrapperunit .trackbox .card-wrapper .canvas .page-h,
.wrapperunit .trackbox .card-wrapper .canvas .section-h,
.wrapperunit .trackbox .card-wrapper .canvas .section-heading,
.wrapperunit .trackbox .card-wrapper .canvas .topic-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.wrapperunit .trackbox .card-wrapper .text-wrapper .rowsegment {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .wrapperunit .trackbox .card-wrapper .text-wrapper .rowsegment {
    width: 100%;
  }
}.wrapperunit .trackbox .card-wrapper .section-cta .btn {
  margin-bottom: 0;
}.wrapperunit .block-title,
.wrapperunit .chapter-title,
.wrapperunit .header-text,
.wrapperunit .lead-h2,
.wrapperunit .main-heading,
.wrapperunit .page-h,
.wrapperunit .section-h,
.wrapperunit .section-heading,
.wrapperunit .topic-title {
  color: #3a001d;
}
.wrapperunit .rowsegment,
.wrapperunit .text-wrapper {
  color: #ffffff;
  text-align: center;
}.wrapperunit .block-title,
.wrapperunit .chapter-title,
.wrapperunit .header-text,
.wrapperunit .lead-h2,
.wrapperunit .main-heading,
.wrapperunit .page-h,
.wrapperunit .section-h,
.wrapperunit .section-heading,
.wrapperunit .topic-title,
.wrapperunit .section-cta,
.wrapperunit .canvas,
.wrapperunit .logo-wrapper {
  text-align: center;
}.wrapperunit .block-title,
.wrapperunit .chapter-title,
.wrapperunit .header-text,
.wrapperunit .lead-h2,
.wrapperunit .main-heading,
.wrapperunit .page-h,
.wrapperunit .section-h,
.wrapperunit .section-heading,
.wrapperunit .topic-title,
.wrapperunit .section-cta,
.wrapperunit .logo-wrapper,
.wrapperunit .canvas {
  color: #ffc354;
}
.domcellwrap {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
  overflow: hidden;
}
.domcellwrap .container {
  max-width: 800px;
}
.domcellwrap .col-text {
  position: relative;
  margin-bottom: 8rem;
}
.domcellwrap .rowsegment {
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-align: left;
}
.domcellwrap .icon-box {
  position: absolute;
  bottom: -3.2rem;
  right: -5.5rem;
}
@media (max-width: 1199px) {
  .domcellwrap .icon-box {
    bottom: -6.6rem;
    right: 1.2rem;
  }
}
.domcellwrap .icon-box span {
  color: #e1965f;
}
.layoutcell {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.layoutcell .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .layoutcell .container {
    padding: 0 15px;
  }
}
.layoutcell .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .layoutcell .canvas {
    text-align: center;
  }
}
.layoutcell .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.layoutcell .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.layoutcell .canvas .block-title,
.layoutcell .canvas .chapter-title,
.layoutcell .canvas .header-text,
.layoutcell .canvas .lead-h2,
.layoutcell .canvas .main-heading,
.layoutcell .canvas .page-h,
.layoutcell .canvas .section-h,
.layoutcell .canvas .section-heading,
.layoutcell .canvas .topic-title {
  margin-bottom: 0;
}
.layoutcell .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .layoutcell .list {
    justify-content: center;
  }
}
.layoutcell .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.layoutcell .list .item-wrap:hover,
.layoutcell .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.layoutcell .list .item-wrap:last-child {
  margin-right: 0;
}
.layoutcell .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.layoutcell .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .layoutcell .copy-wrapper {
    height: auto;
  }
}
.layoutcell .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .layoutcell .copy-wrapper .tilebox {
    text-align: center;
  }
}.layoutcell .block-title,
.layoutcell .chapter-title,
.layoutcell .header-text,
.layoutcell .lead-h2,
.layoutcell .main-heading,
.layoutcell .page-h,
.layoutcell .section-h,
.layoutcell .section-heading,
.layoutcell .topic-title {
  color: #f2ac2b;
}
.layoutcell .tilebox {
  color: #d2d2df;
}
.layoutcell .tilebox {
  text-align: center;
  color: #ffffff;
}.layoutcell .block-title,
.layoutcell .chapter-title,
.layoutcell .header-text,
.layoutcell .lead-h2,
.layoutcell .main-heading,
.layoutcell .page-h,
.layoutcell .section-h,
.layoutcell .section-heading,
.layoutcell .topic-title,
.layoutcell .canvas {
  color: #ffc354;
}
.fieldset {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #070707;
}
@media (min-width: 991px) {
  .fieldset {
    min-height: 170px !important;
  }
}
.fieldset .container,
.fieldset .container-fluid {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .fieldset .container,
  .fieldset .container-fluid {
    min-height: 170px !important;
  }
}
.fieldset .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.fieldset .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .fieldset .top_menu {
    min-height: 110px !important;
  }
}
.fieldset .gripbox:hover {
  color: #8d5ef1 !important;
}
.fieldset .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .fieldset .top_menu {
    min-height: 58px;
    position: relative;
  }
  .fieldset .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffc354;
    left: -32px;
    width: calc(100% + 64px);
  }
  .fieldset .btn {
    white-space: nowrap;
  }
}
.fieldset .nav-item:focus,
.fieldset .nav-link:focus {
  outline: none;
}
.fieldset ul.navbar-nav {
  flex-wrap: wrap;
}
.fieldset ul.navbar-nav li {
  margin: auto;
}
.fieldset .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #070707;
}
.fieldset .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .fieldset .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .fieldset .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .fieldset .navbar .top_menu {
    justify-content: space-between;
  }
  .fieldset .navbar .nav-item .nav-link::before {
    display: none;
  }
  .fieldset .navbar .nav-link {
    padding: 5px !important;
  }
  .fieldset .navbar .container-fluid,
  .fieldset .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .fieldset .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .fieldset .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.fieldset .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.fieldset button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}

.fieldset .nav-panel {
  position: absolute;
}
.fieldset a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.fieldset a.nav-link:hover {
  color: #8d5ef1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .fieldset .navbar {
    height: 77px;
  }
  .fieldset .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.bandunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/red1.jpg");
}
.bandunit .trackbox {
  display: flex;
  justify-content: center;
}
.bandunit .trackbox .card-wrapper {
  background-color: #070707;
  border: 2px solid #8d5ef1;
  width: 58%;
  padding: 82px;
  width: 80%;
}
@media (max-width: 1440px) {
  .bandunit .trackbox .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .bandunit .trackbox .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
@media (max-width: 1440px) {
  .bandunit .trackbox .card-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .bandunit .trackbox .card-wrapper {
    width: 100%;
  }
}
.bandunit .trackbox .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .bandunit .trackbox .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.bandunit .trackbox .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}.bandunit .trackbox .card-wrapper .canvas .block-title,
.bandunit .trackbox .card-wrapper .canvas .chapter-title,
.bandunit .trackbox .card-wrapper .canvas .header-text,
.bandunit .trackbox .card-wrapper .canvas .lead-h2,
.bandunit .trackbox .card-wrapper .canvas .main-heading,
.bandunit .trackbox .card-wrapper .canvas .page-h,
.bandunit .trackbox .card-wrapper .canvas .section-h,
.bandunit .trackbox .card-wrapper .canvas .section-heading,
.bandunit .trackbox .card-wrapper .canvas .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {.bandunit .trackbox .card-wrapper .canvas .block-title,
.bandunit .trackbox .card-wrapper .canvas .chapter-title,
.bandunit .trackbox .card-wrapper .canvas .header-text,
.bandunit .trackbox .card-wrapper .canvas .lead-h2,
.bandunit .trackbox .card-wrapper .canvas .main-heading,
.bandunit .trackbox .card-wrapper .canvas .page-h,
.bandunit .trackbox .card-wrapper .canvas .section-h,
.bandunit .trackbox .card-wrapper .canvas .section-heading,
.bandunit .trackbox .card-wrapper .canvas .topic-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.bandunit .trackbox .card-wrapper .text-wrapper .rowsegment {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .bandunit .trackbox .card-wrapper .text-wrapper .rowsegment {
    width: 100%;
  }
}.bandunit .trackbox .card-wrapper .section-cta .btn {
  margin-bottom: 0;
}.bandunit .block-title,
.bandunit .chapter-title,
.bandunit .header-text,
.bandunit .lead-h2,
.bandunit .main-heading,
.bandunit .page-h,
.bandunit .section-h,
.bandunit .section-heading,
.bandunit .topic-title {
  color: #3a001d;
}
.bandunit .rowsegment,
.bandunit .text-wrapper {
  color: #ffffff;
  text-align: center;
}.bandunit .block-title,
.bandunit .chapter-title,
.bandunit .header-text,
.bandunit .lead-h2,
.bandunit .main-heading,
.bandunit .page-h,
.bandunit .section-h,
.bandunit .section-heading,
.bandunit .topic-title,
.bandunit .section-cta,
.bandunit .canvas,
.bandunit .logo-wrapper {
  text-align: center;
}.bandunit .block-title,
.bandunit .chapter-title,
.bandunit .header-text,
.bandunit .lead-h2,
.bandunit .main-heading,
.bandunit .page-h,
.bandunit .section-h,
.bandunit .section-heading,
.bandunit .topic-title,
.bandunit .section-cta,
.bandunit .logo-wrapper,
.bandunit .canvas {
  color: #ffc354;
}
.unit {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
  overflow: hidden;
}
.unit .container {
  max-width: 800px;
}
.unit .col-text {
  position: relative;
  margin-bottom: 8rem;
}
.unit .rowsegment {
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-align: left;
}
.unit .icon-box {
  position: absolute;
  bottom: -3.2rem;
  right: -5.5rem;
}
@media (max-width: 1199px) {
  .unit .icon-box {
    bottom: -6.6rem;
    right: 1.2rem;
  }
}
.unit .icon-box span {
  color: #e1965f;
}
.unitgrid {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.unitgrid .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .unitgrid .container {
    padding: 0 15px;
  }
}
.unitgrid .canvas {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .unitgrid .canvas {
    text-align: center;
  }
}
.unitgrid .canvas .flexbox {
  display: inline-flex;
  align-items: center;
}
.unitgrid .canvas img {
  width: 54px;
  height: 54px;
  border-radius: 100% !important;
  margin-right: 10px;
  object-fit: contain;
}.unitgrid .canvas .block-title,
.unitgrid .canvas .chapter-title,
.unitgrid .canvas .header-text,
.unitgrid .canvas .lead-h2,
.unitgrid .canvas .main-heading,
.unitgrid .canvas .page-h,
.unitgrid .canvas .section-h,
.unitgrid .canvas .section-heading,
.unitgrid .canvas .topic-title {
  margin-bottom: 0;
}
.unitgrid .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  height: 100%;
  color: #ffffff;
}
@media (max-width: 992px) {
  .unitgrid .list {
    justify-content: center;
  }
}
.unitgrid .list .item-wrap {
  margin: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}
.unitgrid .list .item-wrap:hover,
.unitgrid .list .item-wrap:focus {
  color: #f2ac2b;
  text-shadow: 2px 2px 4px #f2ac2b;
}
.unitgrid .list .item-wrap:last-child {
  margin-right: 0;
}
.unitgrid .spanbox {
  height: 1px;
  background: radial-gradient(50% 50% at 50% 50%, #8d5ef1 0, transparent 100%);
}
.unitgrid .copy-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .unitgrid .copy-wrapper {
    height: auto;
  }
}
.unitgrid .copy-wrapper .tilebox {
  width: 100%;
  padding: 25px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .unitgrid .copy-wrapper .tilebox {
    text-align: center;
  }
}.unitgrid .block-title,
.unitgrid .chapter-title,
.unitgrid .header-text,
.unitgrid .lead-h2,
.unitgrid .main-heading,
.unitgrid .page-h,
.unitgrid .section-h,
.unitgrid .section-heading,
.unitgrid .topic-title {
  color: #f2ac2b;
}
.unitgrid .tilebox {
  color: #d2d2df;
}
.unitgrid .tilebox {
  text-align: center;
  color: #ffffff;
}.unitgrid .block-title,
.unitgrid .chapter-title,
.unitgrid .header-text,
.unitgrid .lead-h2,
.unitgrid .main-heading,
.unitgrid .page-h,
.unitgrid .section-h,
.unitgrid .section-heading,
.unitgrid .topic-title,
.unitgrid .canvas {
  color: #ffc354;
}

.holdwrap {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  width: min(860px, calc(100vw - 32px));
  max-width: 860px;
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.holdwrap *,
.holdwrap *::before,
.holdwrap *::after {
  box-sizing: border-box;
}

.holdwrap.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.985);
}

.chunk {
  position: relative;
  width: 100%;
  padding: 22px 22px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffaf4 0%, #f5eee5 100%);
  border: 1px solid #e5d7c8;
  box-shadow: 0 22px 48px rgba(54, 38, 24, 0.14);
  overflow: hidden;
}

.chunk::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c58a52 0%, #a66a43 52%, #d3a36f 100%);
}

.chunk::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 138, 82, 0.12) 0%, rgba(197, 138, 82, 0) 72%);
  pointer-events: none;
}

.tilecell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
}

.drawunit {
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #eaded2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(166, 106, 67, 0.08);
}

.containbox {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.domwrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shellunit {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.region {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4e7d8;
  border: 1px solid #e8d4bf;
  color: #8a5c38;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coreunit {
  display: inline-block;
  color: #3d2c22;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.body-text {
  margin: 0;
  color: #4c4038;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.meta-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.popup-links-text {
  display: block;
  color: #7a6b60;
  font-size: 12px;
  line-height: 1.4;
}

.ref-links-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.ref-links-group a {
  display: inline-block;
  color: #9a6038;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(154, 96, 56, 0.36);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ref-links-group a:hover {
  color: #7c4c2c;
  border-bottom-color: #7c4c2c;
}

.ref-links-group span {
  display: inline-block;
  color: #7a6b60;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.formpad {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#understoodBtn {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 48px;
  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, #6c4a36 0%, #4f3628 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(79, 54, 40, 0.18);
}

#understoodBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .holdwrap {
    width: min(680px, calc(100vw - 28px));
    max-width: 680px;
  }

  .tilecell {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .formpad {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #understoodBtn {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .holdwrap {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
  }

  .chunk {
    padding: 16px;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tilecell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .drawunit {
    justify-content: center;
  }

  .domwrap {
    align-items: center;
    text-align: center;
  }

  .shellunit {
    justify-content: center;
  }

  .coreunit {
    text-align: center;
    font-size: 18px;
  }

  .body-text {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .meta-links {
    align-items: center;
    text-align: center;
  }

  .ref-links-group {
    justify-content: center;
  }

  .formpad {
    flex-direction: column;
    width: 100%;
  }

  #understoodBtn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .holdwrap {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .chunk {
    padding: 14px;
    border-radius: 18px;
  }

  .token-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .containbox {
    width: 38px;
    height: 38px;
  }

  .coreunit {
    font-size: 17px;
  }

  .popup-links-text,
  .ref-links-group a,
  .ref-links-group span {
    font-size: 12px;
  }
}

.post-core-alert {
  padding: 0 !important;
  background: transparent;
}
.post-core-alert .bar-content {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: #FFD000;
  border: 1px solid #d4ac00;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  overflow: hidden;
}
.post-core-alert .buildbox {
  padding: 32px 36px 28px;
  background: #FFD000;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  text-align: center;
}
.post-core-alert .area {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 0;
  background: #111827;
  color: #FFD000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.post-core-alert .bold-header {
  margin: 18px 0 8px;
  color: #111827;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}
.post-core-alert .app-main {
  margin: 0;
  color: rgba(0,0,0,0.62);
  font-size: 15px;
  line-height: 1.8;
}
.post-core-alert .link-stack {
  padding: 30px 36px 40px;
  background: #FFD000;
}
.post-core-alert .site-content *,
.post-core-alert .site-content *::before,
.post-core-alert .site-content *::after {
  box-sizing: border-box;
}
.post-core-alert .site-content [hidden] {
  display: none !important;
}
.post-core-alert .clipbox {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 22px;
}
.post-core-alert .brief-pro-top {
  grid-column: 1 / -1;
}
.post-core-alert .post-inner {
  display: block;
  margin-bottom: 8px;
  color: rgba(0,0,0,0.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.post-core-alert .bar-badge {
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  text-transform: none;
  letter-spacing: 0;
}
.post-core-alert .bold-link {
  width: 100%;
  padding: 16px 0;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.28) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111827 !important;
  font-size: 15px;
  box-shadow: none !important;
}
.post-core-alert .bold-link::placeholder {
  color: rgba(0,0,0,0.38);
  opacity: 1;
}
.post-core-alert .bold-link:focus {
  outline: none;
  border-bottom-color: rgba(0,0,0,0.8) !important;
}
.post-core-alert textarea.bold-link {
  min-height: 170px;
  resize: vertical;
}
.post-core-alert .light-primary-header {
  padding: 0 0 18px;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  background: transparent;
}
.post-core-alert .panel-live-pane {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.post-core-alert .base-last-container {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #111827;
}
.post-core-alert .text-main-container {
  color: rgba(0,0,0,0.75);
  font-size: 14px;
  line-height: 1.75;
}
.post-core-alert .text-main-container a {
  color: #111827;
  text-decoration: underline;
  font-weight: 600;
}
.post-core-alert .site-mark {
  display: flex;
  justify-content: center;
}
.post-core-alert .flow-frame {
  width: 100%;
  padding: 16px 28px;
  border: 2px solid #111827;
  border-radius: 0 !important;
  background: #111827;
  color: #FFD000 !important;
  font-size: 15px;
  font-weight: 800;
  box-shadow: none;
  cursor: pointer;
}
.post-core-alert .pane-badge {
  margin: 0;
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}
.post-core-alert .desk-foot {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.6;
}
.post-core-alert .tile-back-stack {
  background: rgba(0,0,0,0.1);
  border-left: 3px solid #111827;
  color: #111827;
}
.post-core-alert .area-full-field {
  background: rgba(0,0,0,0.12);
  border-left: 3px solid #7f0000;
  color: #7f0000;
}
@media (max-width: 720px) {
  .post-core-alert {
    padding: 0 16px !important;
  }
  .post-core-alert .buildbox {
    padding: 22px 18px 20px;
  }
  .post-core-alert .link-stack {
    padding: 22px 18px 24px;
  }
  .post-core-alert .flow-frame {
    width: 100%;
  }
}

.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("images/clean1.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);
}

.holdwrap {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  width: min(860px, calc(100vw - 32px));
  max-width: 860px;
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.holdwrap *,
.holdwrap *::before,
.holdwrap *::after {
  box-sizing: border-box;
}

.holdwrap.ready {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.holdwrap.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.985);
}

.chunk {
  position: relative;
  width: 100%;
  padding: 22px 22px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffaf4 0%, #f5eee5 100%);
  border: 1px solid #e5d7c8;
  box-shadow: 0 22px 48px rgba(54, 38, 24, 0.14);
  overflow: hidden;
}

.chunk::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c58a52 0%, #a66a43 52%, #d3a36f 100%);
}

.chunk::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 138, 82, 0.12) 0%, rgba(197, 138, 82, 0) 72%);
  pointer-events: none;
}

.tilecell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
}

.drawunit {
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #eaded2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(166, 106, 67, 0.08);
}

.containbox {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.domwrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shellunit {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.region {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4e7d8;
  border: 1px solid #e8d4bf;
  color: #8a5c38;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coreunit {
  display: inline-block;
  color: #3d2c22;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.body-text {
  margin: 0;
  color: #4c4038;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.meta-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.popup-links-text {
  display: block;
  color: #7a6b60;
  font-size: 12px;
  line-height: 1.4;
}

.ref-links-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.ref-links-group a {
  display: inline-block;
  color: #9a6038;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(154, 96, 56, 0.36);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ref-links-group a:hover {
  color: #7c4c2c;
  border-bottom-color: #7c4c2c;
}

.ref-links-group span {
  display: inline-block;
  color: #7a6b60;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.formpad {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#understoodBtn {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 48px;
  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, #6c4a36 0%, #4f3628 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(79, 54, 40, 0.18);
}

#understoodBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .holdwrap {
    width: min(680px, calc(100vw - 28px));
    max-width: 680px;
  }

  .tilecell {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .formpad {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #understoodBtn {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .holdwrap {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
  }

  .chunk {
    padding: 16px;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tilecell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .drawunit {
    justify-content: center;
  }

  .domwrap {
    align-items: center;
    text-align: center;
  }

  .shellunit {
    justify-content: center;
  }

  .coreunit {
    text-align: center;
    font-size: 18px;
  }

  .body-text {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .meta-links {
    align-items: center;
    text-align: center;
  }

  .ref-links-group {
    justify-content: center;
  }

  .formpad {
    flex-direction: column;
    width: 100%;
  }

  #understoodBtn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .holdwrap {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .chunk {
    padding: 14px;
    border-radius: 18px;
  }

  .token-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .containbox {
    width: 38px;
    height: 38px;
  }

  .coreunit {
    font-size: 17px;
  }

  .popup-links-text,
  .ref-links-group a,
  .ref-links-group span {
    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%;
}
