:root {

  --site-secondary-rgb: 108, 117, 125;
  --site-success-rgb: 25, 135, 84;
  --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);
}

 h5, .h5, h4, .h4, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--site-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

strong {
  font-weight: bolder;
}

a {
  color: rgba(var(--site-link-color-rgb), var(--site-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --site-link-color-rgb: var(--site-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[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.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.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-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 {
  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.show {
  color: var(--site-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--site-navbar-toggler-padding-y) var(--site-navbar-toggler-padding-x);
  font-size: var(--site-navbar-toggler-font-size);
  line-height: 1;
  color: var(--site-navbar-color);
  background-color: transparent;
  border: var(--site-border-width) solid var(--site-navbar-toggler-border-color);
  border-radius: var(--site-navbar-toggler-border-radius);
  transition: var(--site-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--site-navbar-toggler-focus-width);
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--site-navbar-nav-link-padding-x);
    padding-left: var(--site-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.card {
  --site-card-spacer-y: 1rem;
  --site-card-spacer-x: 1rem;
  --site-card-title-spacer-y: 0.5rem;
  --site-card-title-color: ;
  --site-card-subtitle-color: ;
  --site-card-border-width: var(--site-border-width);
  --site-card-border-color: var(--site-border-color-translucent);
  --site-card-border-radius: var(--site-border-radius);
  --site-card-box-shadow: ;
  --site-card-inner-border-radius: calc(var(--site-border-radius) - (var(--site-border-width)));
  --site-card-cap-padding-y: 0.5rem;
  --site-card-cap-padding-x: 1rem;
  --site-card-cap-bg: rgba(var(--site-body-color-rgb), 0.03);
  --site-card-cap-color: ;
  --site-card-height: ;
  --site-card-color: ;
  --site-card-bg: var(--site-body-bg);
  --site-card-img-overlay-padding: 1rem;
  --site-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--site-card-height);
  color: var(--site-body-color);
  word-wrap: break-word;
  background-color: var(--site-card-bg);
  background-clip: border-box;
  border: var(--site-card-border-width) solid var(--site-card-border-color);
  border-radius: var(--site-card-border-radius);
}

.card-title {
  margin-bottom: var(--site-card-title-spacer-y);
  color: var(--site-card-title-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.alert {
  --site-alert-bg: transparent;
  --site-alert-padding-x: 1rem;
  --site-alert-padding-y: 1rem;
  --site-alert-margin-bottom: 1rem;
  --site-alert-color: inherit;
  --site-alert-border-color: transparent;
  --site-alert-border: var(--site-border-width) solid var(--site-alert-border-color);
  --site-alert-border-radius: var(--site-border-radius);
  --site-alert-link-color: inherit;
  position: relative;
  padding: var(--site-alert-padding-y) var(--site-alert-padding-x);
  margin-bottom: var(--site-alert-margin-bottom);
  color: var(--site-alert-color);
  background-color: var(--site-alert-bg);
  border: var(--site-alert-border);
  border-radius: var(--site-alert-border-radius);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--site-progress-height);
  }
}

.btn-close {
  --site-btn-close-color: #000;
  --site-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --site-btn-close-opacity: 0.5;
  --site-btn-close-hover-opacity: 0.75;
  --site-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --site-btn-close-focus-opacity: 1;
  --site-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--site-btn-close-color);
  background: transparent var(--site-btn-close-bg) center/1em auto no-repeat;
  filter: var(--site-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--site-btn-close-opacity);
}
.btn-close:hover {
  color: var(--site-btn-close-color);
  text-decoration: none;
  opacity: var(--site-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--site-btn-close-focus-shadow);
  opacity: var(--site-btn-close-focus-opacity);
}
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--site-btn-close-disabled-opacity);
}

.btn-close-white {
  --site-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root {
  --site-btn-close-filter: ;
}

:root {
  --site-carousel-indicator-active-bg: #fff;
  --site-carousel-caption-color: #fff;
  --site-carousel-control-icon-filter: ;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) ;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-secondary {
  --site-text-opacity: 1;
  color: rgba(var(--site-secondary-rgb), var(--site-text-opacity)) !important;
}

.text-success {
  --site-text-opacity: 1;
  color: rgba(var(--site-success-rgb), var(--site-text-opacity)) !important;
}

.quiz-section {
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/quiet2.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 440px;
  padding: 36px 30px;
  border-radius: 18px;
  background: rgba(20, 22, 38, 0.74);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  color: #eef1f8;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.quiz-title {
  margin: 0 0 6px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.quiz-subtitle {
  margin: 0 0 26px;
  text-align: center;
  font-size: 14px;
  color: #aab2c8;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #cdd4e6;
}

.quiz-field {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f6fc;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz-field:focus {
  outline: none;
  border-color: #7c5cff;
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25);
}

.quiz-field option {
  color: #16182a;
}

.quiz-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c5cff, #33d1ff);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.35);
}

.quiz-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.45);
}

.header-nav {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .header-nav .routebox {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .header-nav .routebox img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
  .header-nav .coreunit {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .header-nav .coreunit, .header-nav .coreunit:hover {
      color: inherit;
      text-decoration: none; }
  .header-nav .navbar-brand span {
    vertical-align: -4px; }

.nav-dropdown {
  font-size: 0.75rem;
  font-weight: 500;
  height: auto !important; }
  .nav-dropdown .link {
    margin: .667em 1.667em;
    font-weight: 500;
    padding: 0;
    transition: color .2s ease-in-out; }
  .nav-dropdown .link::after {
    color: inherit; }
  .nav-dropdown .btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem; }

.quiz-section {
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/quiet2.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 440px;
  padding: 36px 30px;
  border-radius: 18px;
  background: rgba(20, 22, 38, 0.74);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  color: #eef1f8;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.quiz-title {
  margin: 0 0 6px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.quiz-subtitle {
  margin: 0 0 26px;
  text-align: center;
  font-size: 14px;
  color: #aab2c8;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #cdd4e6;
}

.quiz-field {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f6fc;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz-field:focus {
  outline: none;
  border-color: #7c5cff;
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25);
}

.quiz-field option {
  color: #16182a;
}

.quiz-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c5cff, #33d1ff);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.35);
}

.quiz-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.45);
}

@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 {
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/quiet2.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 440px;
  padding: 36px 30px;
  border-radius: 18px;
  background: rgba(20, 22, 38, 0.74);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  color: #eef1f8;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.quiz-title {
  margin: 0 0 6px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.quiz-subtitle {
  margin: 0 0 26px;
  text-align: center;
  font-size: 14px;
  color: #aab2c8;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #cdd4e6;
}

.quiz-field {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f6fc;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz-field:focus {
  outline: none;
  border-color: #7c5cff;
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25);
}

.quiz-field option {
  color: #16182a;
}

.quiz-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c5cff, #33d1ff);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.35);
}

.quiz-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.45);
}

section {
  background-color: #ffffff;
}

body {
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  color: #232323;
  position: relative;
}

button {
  background-color: transparent;
  border-color: transparent;
}

section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}

a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}.block-title,
.chapter-title,
.header-text,
.lead-h2,
.main-heading,
.page-h,
.section-h,
.section-heading,
.topic-title {
  font-style: normal;
  line-height: 1.3;
}.block-subtitle,
.h-secondary,
.lead-sub,
.section-sub,
.section-tag,
.sub-heading,
.subtitle-text,
.tagline-h {
  line-height: 1.3;
}

.boxwrap {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h4,
h5,
.display-1,
.display-2,
.display-4,
.display-5,
.flowsegment,
span,
p,
a {
  line-height: 1;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}

strong {
  font-weight: bold;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  transition-delay: 9999s;
  transition-property: background-color, color;
}

textarea[type=hidden] {
  display: none;
}

section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hidden {
  visibility: hidden;
}

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-box {
  width: 100%;
}.block-action {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  font-size: 0;
}

.btn {
  font-weight: 600;
  border-width: 1px;
  font-style: normal;
  margin: 0.6rem 0.6rem;
  white-space: normal;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}

.btn-sm {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-md {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-lg {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-form {
  margin: 0;
}
.btn-form:hover {
  cursor: pointer;
}nav .block-action {
  margin-left: 0rem;
  margin-right: 0rem;
}

[type=submit] {
  -webkit-appearance: none;
}

@keyframes arrowdown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes gradient-animation {
  from {
    background-position: 0% 100%;
    animation-timing-function: ease-in-out;
  }
  to {
    background-position: 100% 0%;
    animation-timing-function: ease-in-out;
  }
}

.menu .navbar-brand {
  display: flex;
}
.menu .navbar-brand span {
  display: flex;
  display: flex;
}
.menu .navbar-brand .navbar-brand {
  display: flex;
}
.menu .navbar-brand .routebox img {
  display: flex;
  width: auto;
}
@media (max-width: 991px) {
  .menu .navbar-collapse {
    max-height: 93.5vh;
  }
  .menu .navbar-collapse.show {
    overflow: auto;
  }
}
@media (min-width: 992px) {
  .menu .navbar-nav.nav-dropdown {
    display: flex;
  }
}
@media (max-width: 767px) {
  .menu .navbar-collapse {
    max-height: 80vh;
  }
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.nav-dropdown .link {
  padding: 0.667em 1.667em !important;
  margin: 0 !important;
}

.nav {
  display: flex;
  flex-wrap: wrap;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.justify-content-center {
  justify-content: center;
}

.card-wrapper {
  flex: 1;
}

.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 .block-action {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

form .btn {
  min-height: 48px;
}

.tailbox {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

ul {
  margin-bottom: 2.3125rem;
}

.container,
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > [class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 1440px) {
  .container-fluid {
    padding-left: 200px;
    padding-right: 200px;
  }
}
@media (min-width: 992px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.item {
  position: relative;
}

.quiz-section {
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/quiet2.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 440px;
  padding: 36px 30px;
  border-radius: 18px;
  background: rgba(20, 22, 38, 0.74);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  color: #eef1f8;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.quiz-title {
  margin: 0 0 6px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.quiz-subtitle {
  margin: 0 0 26px;
  text-align: center;
  font-size: 14px;
  color: #aab2c8;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #cdd4e6;
}

.quiz-field {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f6fc;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz-field:focus {
  outline: none;
  border-color: #7c5cff;
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25);
}

.quiz-field option {
  color: #16182a;
}

.quiz-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c5cff, #33d1ff);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.35);
}

.quiz-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.45);
}

@font-face {
  font-family: 'animation2';
  font-display: swap;
  src: url('fonts/script2.woff2') format('woff2'), url('fonts/script2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.quiz-section {
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/quiet2.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 440px;
  padding: 36px 30px;
  border-radius: 18px;
  background: rgba(20, 22, 38, 0.74);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  color: #eef1f8;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.quiz-title {
  margin: 0 0 6px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.quiz-subtitle {
  margin: 0 0 26px;
  text-align: center;
  font-size: 14px;
  color: #aab2c8;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #cdd4e6;
}

.quiz-field {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f6fc;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz-field:focus {
  outline: none;
  border-color: #7c5cff;
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25);
}

.quiz-field option {
  color: #16182a;
}

.quiz-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c5cff, #33d1ff);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.35);
}

.quiz-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.45);
}

.btn {
  border-width: 2px;
}
img,
.card-wrap,
.card-wrapper,
.card,
.item-wrapper {
  border-radius: 0 !important;
}
body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 4.5rem;
  line-height: 1.25;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 3rem;
  line-height: 1.25;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  line-height: 1.25;
}
.flowsegment {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((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.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .flowsegment {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}

.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus {
  color: inherit;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e38a2a !important;
  border-color: #e38a2a !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus {
  color: inherit;
  background-color: #e9a357 !important;
  border-color: #e9a357 !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e9a357 !important;
  border-color: #e9a357 !important;
}
.btn-info,
.btn-info:active {
  background-color: #25607d !important;
  border-color: #25607d !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus {
  color: inherit;
  background-color: #317ea4 !important;
  border-color: #317ea4 !important;
  box-shadow: none;
}

.btn-info:disabled {
  color: #ffffff !important;
  background-color: #317ea4 !important;
  border-color: #317ea4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #a7c169 !important;
  border-color: #a7c169 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus {
  color: inherit;
  background-color: #bcd08d !important;
  border-color: #bcd08d !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #ffffff !important;
  background-color: #bcd08d !important;
  border-color: #bcd08d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus {
  color: inherit;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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 {
  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 {
  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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e38a2a;
  color: #e38a2a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  color: #a15e15 !important;
  background-color: transparent !important;
  border-color: #a15e15 !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e38a2a !important;
  border-color: #e38a2a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #25607d;
  color: #25607d;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  color: #112d3a !important;
  background-color: transparent !important;
  border-color: #112d3a !important;
  box-shadow: none !important;
}

.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #25607d !important;
  border-color: #25607d !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #a7c169;
  color: #a7c169;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  color: #7c963e !important;
  background-color: transparent !important;
  border-color: #7c963e !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a7c169 !important;
  border-color: #a7c169 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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 {
  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 {
  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-secondary {
  color: #e38a2a !important;
}
.text-success {
  color: #a7c169 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #945613 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #738b39 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
a,
a:hover {
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}.block-action .btn {
  padding: 15px 24px;
  border-radius: 4rem !important;
  flex-direction: row-reverse;
  border: none !important;
  border-radius: 0 !important;
}.block-action .btn-primary-outline,
.block-action .btn-secondary-outline,
.block-action .btn-success-outline,
.block-action .btn-info-outline,
.block-action .btn-warning-outline,
.block-action .btn-danger-outline,
.block-action .btn-black-outline,
.block-action .btn-white-outline {
  padding: 0;
  border-radius: 0 !important;
  font-weight: 400 !important;
}.block-action .btn-primary,
.block-action .btn-secondary,
.block-action .btn-success,
.block-action .btn-info,
.block-action .btn-warning,
.block-action .btn-danger,
.block-action .btn-black,
.block-action .btn-white {
  font-weight: 700 !important;
}
img {
  border-radius: 0 !important;
}
.container-fluid {
  padding: 0 200px;
}
@media (max-width: 1440px) {
  .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .container {
    padding: 0 16px;
  }
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.rootbox .header-nav {
  position: relative !important;
}
.rootbox .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rootbox .nav-link {
  position: relative;
}
.rootbox .container {
  display: flex;
  margin: 0 auto;
  max-width: 1284px;
  border-bottom: 1px solid #282828;
}
@media (min-width: 992px) {
  .rootbox .container {
    flex-wrap: nowrap;
  }
}
.rootbox .nav-item:focus,
.rootbox .nav-link:focus {
  outline: none;
}
.rootbox .navbar {
  min-height: 87px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.rootbox .navbar .routebox {
  margin-right: 1rem;
}
.rootbox .navbar .routebox img {
  width: auto;
}
.rootbox .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rootbox .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rootbox .navbar .routebox img {
    height: 3rem !important;
  }
  .rootbox .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rootbox .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rootbox .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rootbox .navbar-brand {
  min-height: 87px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rootbox .navbar-brand .coreunit {
  line-height: inherit !important;
  font-weight: 400;
}
.rootbox .navbar-brand .coreunit:hover,
.rootbox .navbar-brand .coreunit:focus {
  color: #ffffff !important;
}
.rootbox .navbar-brand .routebox a {
  outline: none;
}
.rootbox .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rootbox ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rootbox ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rootbox button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.rootbox .header-nav {
  padding: 0 1rem;
}
.rootbox a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rootbox .navbar {
    height: 87px;
  }
  .rootbox .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rootbox .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.rootbox .nav-item {
  padding: 0;
  margin: 0;
}
.rootbox .nav-item .nav-link {
  padding: 6px 8px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.rootbox .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.rootbox .nav-item .nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background-color: #819e3d;
  transition: all .3s ease;
  opacity: 0;
  z-index: -1;
}
.rootbox .nav-item .nav-link:hover,
.rootbox .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.rootbox .nav-item .nav-link:hover::after,
.rootbox .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.rootbox .nav-item .nav-link:hover::before,
.rootbox .nav-item .nav-link:focus::before {
  transform: scale(1);
  opacity: 1;
}
.rootbox .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rootbox .navbar {
    justify-content: flex-start !important;
  }
  .rootbox .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rootbox .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rootbox .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rootbox .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .rootbox .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.rootbox .shelllayer {
  min-height: 87px;
}
.gridcell {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-image: url("images/dryframe1.jpg");
}
.gridcell img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 800px;
  border-radius: 8rem 8rem 0 0;
  object-fit: cover;
}
@media (max-width: 992px) {
  .gridcell img {
    height: 400px;
  }
}
.gridcell .card {
  justify-content: flex-end;
}
.gridcell .contentbox {
  position: relative;
  z-index: 1;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .gridcell .contentbox {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .gridcell .contentbox {
    margin-bottom: 35px;
  }
}.gridcell .contentbox .block-title,
.gridcell .contentbox .chapter-title,
.gridcell .contentbox .header-text,
.gridcell .contentbox .lead-h2,
.gridcell .contentbox .main-heading,
.gridcell .contentbox .page-h,
.gridcell .contentbox .section-h,
.gridcell .contentbox .section-heading,
.gridcell .contentbox .topic-title {
  margin-bottom: 10px;
}
.gridcell .text-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .gridcell .text-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .gridcell .text-wrapper {
    margin-bottom: 35px;
  }
}
.gridcell .text-wrapper .boxwrap {
  margin-bottom: 0;
}
.gridcell .rootsegment {
  display: flex;
  align-items: flex-end;
  min-height: 720px;
}
@media (max-width: 992px) {
  .gridcell .rootsegment {
    min-height: 400px;
  }
}
.gridcell .rootsegment .card-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.gridcell .rootsegment .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 32px;
  border-radius: 1rem !important;
  background-color: #d0e59f;
  width: 55%;
}
@media (max-width: 992px) {
  .gridcell .rootsegment .card-wrapper .card-wrap {
    width: 100%;
    padding: 40px 16px;
    display: block;
  }
}.gridcell .block-title,
.gridcell .chapter-title,
.gridcell .header-text,
.gridcell .lead-h2,
.gridcell .main-heading,
.gridcell .page-h,
.gridcell .section-h,
.gridcell .section-heading,
.gridcell .topic-title {
  color: #000000;
}
.gridcell .boxwrap {
  color: #000000;
}
.gridcell .card-text {
  color: #000000;
}.gridcell .block-title,
.gridcell .chapter-title,
.gridcell .header-text,
.gridcell .lead-h2,
.gridcell .main-heading,
.gridcell .page-h,
.gridcell .section-h,
.gridcell .section-heading,
.gridcell .topic-title,
.gridcell .block-action {
  color: #819e3d;
}
.zoneunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.zoneunit .row {
  justify-content: space-between;
}
.zoneunit .stub {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .zoneunit .stub {
    padding: 0;
  }
}.zoneunit .stub .block-title,
.zoneunit .stub .chapter-title,
.zoneunit .stub .header-text,
.zoneunit .stub .lead-h2,
.zoneunit .stub .main-heading,
.zoneunit .stub .page-h,
.zoneunit .stub .section-h,
.zoneunit .stub .section-heading,
.zoneunit .stub .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.zoneunit .stub .block-title,
.zoneunit .stub .chapter-title,
.zoneunit .stub .header-text,
.zoneunit .stub .lead-h2,
.zoneunit .stub .main-heading,
.zoneunit .stub .page-h,
.zoneunit .stub .section-h,
.zoneunit .stub .section-heading,
.zoneunit .stub .topic-title {
    margin-bottom: 20px;
  }
}
.zoneunit .stub .boxwrap {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .zoneunit .stub .boxwrap {
    margin-bottom: 20px;
  }
}
.zoneunit .stub .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.zoneunit .stub .logo-wrapper .logo-wrap .boxlayer {
  margin-right: 12px;
}
.zoneunit .stub .logo-wrapper .logo-wrap .boxlayer img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #000000;
}
.zoneunit .boxwrap {
  color: #000000;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title,
.zoneunit .block-action {
  color: #e38a2a;
}
.wrapsegment {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.wrapsegment .card {
  justify-content: flex-end;
}.wrapsegment .contentbox .block-title,
.wrapsegment .contentbox .chapter-title,
.wrapsegment .contentbox .header-text,
.wrapsegment .contentbox .lead-h2,
.wrapsegment .contentbox .main-heading,
.wrapsegment .contentbox .page-h,
.wrapsegment .contentbox .section-h,
.wrapsegment .contentbox .section-heading,
.wrapsegment .contentbox .topic-title {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {.wrapsegment .contentbox .block-title,
.wrapsegment .contentbox .chapter-title,
.wrapsegment .contentbox .header-text,
.wrapsegment .contentbox .lead-h2,
.wrapsegment .contentbox .main-heading,
.wrapsegment .contentbox .page-h,
.wrapsegment .contentbox .section-h,
.wrapsegment .contentbox .section-heading,
.wrapsegment .contentbox .topic-title {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {.wrapsegment .contentbox .block-title,
.wrapsegment .contentbox .chapter-title,
.wrapsegment .contentbox .header-text,
.wrapsegment .contentbox .lead-h2,
.wrapsegment .contentbox .main-heading,
.wrapsegment .contentbox .page-h,
.wrapsegment .contentbox .section-h,
.wrapsegment .contentbox .section-heading,
.wrapsegment .contentbox .topic-title {
    margin-bottom: 35px;
  }
}
.wrapsegment .text-wrapper .boxwrap {
  display: inline-flex;
  width: 70%;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .wrapsegment .text-wrapper .boxwrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .wrapsegment .text-wrapper .boxwrap {
    width: 100%;
    margin-bottom: 35px;
  }
}
.wrapsegment .card-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 670px;
  padding: 50px;
}
@media (max-width: 992px) {
  .wrapsegment .card-wrapper {
    padding: 16px 16px 40px;
    min-height: 400px;
  }
}
.wrapsegment .card-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 3rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .wrapsegment .card-wrapper img {
    border-radius: 2rem;
  }
}
.wrapsegment .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 992px) {
  .wrapsegment .card-wrapper .card-wrap {
    display: block;
    padding: 16px;
  }
}
.wrapsegment .card-wrapper .card-wrap .shelllayer {
  display: flex;
  align-items: center;
  width: 50%;
  margin-right: 24px;
}
@media (max-width: 992px) {
  .wrapsegment .card-wrapper .card-wrap .shelllayer {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.wrapsegment .card-wrapper .card-wrap .shelllayer .card-date {
  padding: 8px 16px;
  background-color: #e38a2a;
  border-radius: .5rem;
  min-width: 75px;
  margin-right: 24px;
  margin-bottom: 0;
  line-height: 1.7;
}
@media (max-width: 992px) {
  .wrapsegment .card-wrapper .card-wrap .shelllayer .card-date {
    margin-right: 0;
    margin-bottom: 20px;
    min-width: auto;
    width: 100%;
  }
}
.wrapsegment .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .wrapsegment .card-wrapper .card-wrap .text-wrap {
    width: 100%;
  }
}
.wrapsegment .card-wrapper .card-wrap .text-wrap .item-text {
  margin-bottom: 0;
}.wrapsegment .block-title,
.wrapsegment .chapter-title,
.wrapsegment .header-text,
.wrapsegment .lead-h2,
.wrapsegment .main-heading,
.wrapsegment .page-h,
.wrapsegment .section-h,
.wrapsegment .section-heading,
.wrapsegment .topic-title {
  color: #000000;
}
.wrapsegment .boxwrap {
  color: #000000;
}
.wrapsegment .card-date {
  color: #ffffff;
  text-align: center;
}
.wrapsegment .card-title {
  color: #000000;
}
.wrapsegment .card-text {
  color: #000000;
}.wrapsegment .block-title,
.wrapsegment .chapter-title,
.wrapsegment .header-text,
.wrapsegment .lead-h2,
.wrapsegment .main-heading,
.wrapsegment .page-h,
.wrapsegment .section-h,
.wrapsegment .section-heading,
.wrapsegment .topic-title,
.wrapsegment .block-action {
  color: #3e7691;
}
.grip {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.grip .row {
  justify-content: space-between;
}
.grip .stub {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .grip .stub {
    padding: 0;
  }
}.grip .stub .block-title,
.grip .stub .chapter-title,
.grip .stub .header-text,
.grip .stub .lead-h2,
.grip .stub .main-heading,
.grip .stub .page-h,
.grip .stub .section-h,
.grip .stub .section-heading,
.grip .stub .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.grip .stub .block-title,
.grip .stub .chapter-title,
.grip .stub .header-text,
.grip .stub .lead-h2,
.grip .stub .main-heading,
.grip .stub .page-h,
.grip .stub .section-h,
.grip .stub .section-heading,
.grip .stub .topic-title {
    margin-bottom: 20px;
  }
}
.grip .stub .boxwrap {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .grip .stub .boxwrap {
    margin-bottom: 20px;
  }
}
.grip .stub .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.grip .stub .logo-wrapper .logo-wrap .boxlayer {
  margin-right: 12px;
}
.grip .stub .logo-wrapper .logo-wrap .boxlayer img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}.grip .block-title,
.grip .chapter-title,
.grip .header-text,
.grip .lead-h2,
.grip .main-heading,
.grip .page-h,
.grip .section-h,
.grip .section-heading,
.grip .topic-title {
  color: #000000;
}
.grip .boxwrap {
  color: #000000;
}.grip .block-title,
.grip .chapter-title,
.grip .header-text,
.grip .lead-h2,
.grip .main-heading,
.grip .page-h,
.grip .section-h,
.grip .section-heading,
.grip .topic-title,
.grip .block-action {
  color: #e38a2a;
}
.containerwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.containerwrap .row {
  justify-content: space-between;
}
.containerwrap .stub {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .stub {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .stub {
    margin-bottom: 35px;
  }
}.containerwrap .stub .block-title,
.containerwrap .stub .chapter-title,
.containerwrap .stub .header-text,
.containerwrap .stub .lead-h2,
.containerwrap .stub .main-heading,
.containerwrap .stub .page-h,
.containerwrap .stub .section-h,
.containerwrap .stub .section-heading,
.containerwrap .stub .topic-title {
  margin-bottom: 10px;
}
.containerwrap .stub .boxwrap {
  margin-bottom: 10px;
}
.containerwrap .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .list-wrapper {
    margin-bottom: 35px;
  }
}
.containerwrap .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.containerwrap .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.containerwrap .list-wrapper .list .item-wrap:hover,
.containerwrap .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.containerwrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.containerwrap .shelllayer {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .shelllayer {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .shelllayer {
    margin-bottom: 35px;
  }
}
.containerwrap .copy-wrapper .noteunit {
  margin-bottom: 0;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title {
  color: #000000;
}
.containerwrap .boxwrap {
  color: #ffbf76;
}
.containerwrap .list {
  color: #000000;
}
.containerwrap .noteunit {
  color: #000000;
}
.containerwrap .noteunit {
  text-align: center;
  color: #ffffff;
}
.containerwrap .list,
.containerwrap .item-wrap {
  color: #d0e59f;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title,
.containerwrap .block-action {
  color: #8fb9cd;
}
.rootbox .header-nav {
  position: relative !important;
}
.rootbox .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rootbox .nav-link {
  position: relative;
}
.rootbox .container {
  display: flex;
  margin: 0 auto;
  max-width: 1284px;
  border-bottom: 1px solid #282828;
}
@media (min-width: 992px) {
  .rootbox .container {
    flex-wrap: nowrap;
  }
}
.rootbox .nav-item:focus,
.rootbox .nav-link:focus {
  outline: none;
}
.rootbox .navbar {
  min-height: 87px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.rootbox .navbar .routebox {
  margin-right: 1rem;
}
.rootbox .navbar .routebox img {
  width: auto;
}
.rootbox .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rootbox .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rootbox .navbar .routebox img {
    height: 3rem !important;
  }
  .rootbox .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rootbox .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rootbox .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rootbox .navbar-brand {
  min-height: 87px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rootbox .navbar-brand .coreunit {
  line-height: inherit !important;
  font-weight: 400;
}
.rootbox .navbar-brand .coreunit:hover,
.rootbox .navbar-brand .coreunit:focus {
  color: #ffffff !important;
}
.rootbox .navbar-brand .routebox a {
  outline: none;
}
.rootbox .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rootbox ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rootbox ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rootbox button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.rootbox .header-nav {
  padding: 0 1rem;
}
.rootbox a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rootbox .navbar {
    height: 87px;
  }
  .rootbox .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rootbox .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.rootbox .nav-item {
  padding: 0;
  margin: 0;
}
.rootbox .nav-item .nav-link {
  padding: 6px 8px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.rootbox .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.rootbox .nav-item .nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background-color: #819e3d;
  transition: all .3s ease;
  opacity: 0;
  z-index: -1;
}
.rootbox .nav-item .nav-link:hover,
.rootbox .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.rootbox .nav-item .nav-link:hover::after,
.rootbox .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.rootbox .nav-item .nav-link:hover::before,
.rootbox .nav-item .nav-link:focus::before {
  transform: scale(1);
  opacity: 1;
}
.rootbox .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rootbox .navbar {
    justify-content: flex-start !important;
  }
  .rootbox .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rootbox .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rootbox .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rootbox .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .rootbox .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.rootbox .shelllayer {
  min-height: 87px;
}
.treebox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.treebox .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .treebox .contentbox {
    margin-bottom: 35px;
  }
}.treebox .contentbox .block-title,
.treebox .contentbox .chapter-title,
.treebox .contentbox .header-text,
.treebox .contentbox .lead-h2,
.treebox .contentbox .main-heading,
.treebox .contentbox .page-h,
.treebox .contentbox .section-h,
.treebox .contentbox .section-heading,
.treebox .contentbox .topic-title {
  margin-bottom: 0;
}
.treebox .rootsegment {
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .treebox .rootsegment {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .treebox .rootsegment {
    margin-bottom: 35px;
  }
}
.treebox .rootsegment img {
  height: 405px;
  object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .treebox .rootsegment img {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .treebox .text-wrapper {
    margin-bottom: 35px;
  }
}
.treebox .text-wrapper .boxwrap {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .treebox .text-wrapper .boxwrap {
    margin-bottom: 15px;
  }
}.treebox .block-title,
.treebox .chapter-title,
.treebox .header-text,
.treebox .lead-h2,
.treebox .main-heading,
.treebox .page-h,
.treebox .section-h,
.treebox .section-heading,
.treebox .topic-title {
  color: #3e7691;
}
.treebox .boxwrap {
  color: #000000;
}
.flexunit {
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
  background-color: #f6f6f6;
}
.flexunit .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .flexunit .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .flexunit .container {
    padding: 0 24px;
  }
}
.flexunit .row {
  justify-content: center;
}
.flexunit .stub {
  position: relative;
  z-index: 1;
}.flexunit .stub .block-title,
.flexunit .stub .chapter-title,
.flexunit .stub .header-text,
.flexunit .stub .lead-h2,
.flexunit .stub .main-heading,
.flexunit .stub .page-h,
.flexunit .stub .section-h,
.flexunit .stub .section-heading,
.flexunit .stub .topic-title {
  margin-bottom: 32px;
}
.flexunit .stub .text-wrapper .boxwrap {
  display: inline-flex;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .flexunit .stub .text-wrapper .boxwrap {
    width: 100%;
  }
}.flexunit .stub .block-action {
  margin-top: 22px;
}.flexunit .stub .block-action .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}.flexunit .stub .block-action .btn:hover,
.flexunit .stub .block-action .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.flexunit .unitcol {
  position: absolute;
  top: -65%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.flexunit .unitcol .matrix {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.flexunit .unitcol .decor_1 {
  background-color: #e7f4c9;
}
.flexunit .unitcol .decor_2 {
  background-color: #8fb9cd;
}
.flexunit .unitcol .decor_3 {
  background-color: #f6a851;
}
.flexunit .unitcol .decor_4 {
  background-color: #a7c169;
}
.flexunit .rootsegment {
  position: absolute;
  bottom: -46%;
  right: -2rem;
  width: 60%;
  height: 500px;
}
@media (max-width: 992px) {
  .flexunit .rootsegment {
    position: static;
    width: 100%;
    height: 350px;
    margin-top: 32px;
  }
}
.flexunit .rootsegment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
.flexunit .rootsegment::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .8;
  border-radius: .75rem;
  pointer-events: none;
}.flexunit .block-title,
.flexunit .chapter-title,
.flexunit .header-text,
.flexunit .lead-h2,
.flexunit .main-heading,
.flexunit .page-h,
.flexunit .section-h,
.flexunit .section-heading,
.flexunit .topic-title {
  color: #141414;
}
.flexunit .boxwrap {
  color: #141414;
}
.flexunit .boxwrap,
.flexunit .text-wrapper {
  color: #000000;
}.flexunit .block-title,
.flexunit .chapter-title,
.flexunit .header-text,
.flexunit .lead-h2,
.flexunit .main-heading,
.flexunit .page-h,
.flexunit .section-h,
.flexunit .section-heading,
.flexunit .topic-title,
.flexunit .block-action {
  color: #e38a2a;
}
.element {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.element .row {
  margin: 0 -20px;
}
.element .row .card {
  padding: 0 20px;
  justify-content: space-between;
}
.element .rootsegment {
  position: relative;
  min-height: 650px;
}
@media (max-width: 1440px) {
  .element .rootsegment {
    min-height: 550px;
  }
}
@media (max-width: 1200px) {
  .element .rootsegment {
    min-height: 450px;
  }
}
@media (max-width: 992px) {
  .element .rootsegment {
    min-height: auto;
    height: 300px;
    margin-bottom: 40px;
  }
}
.element .rootsegment img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}.element .stub .block-title,
.element .stub .chapter-title,
.element .stub .header-text,
.element .stub .lead-h2,
.element .stub .main-heading,
.element .stub .page-h,
.element .stub .section-h,
.element .stub .section-heading,
.element .stub .topic-title {
  margin-bottom: 12px;
}
.element .stub .boxwrap {
  margin-bottom: 0;
}.element .block-action {
  margin-top: 16px;
}.element .block-action .btn {
  margin-bottom: 0;
}.element .block-title,
.element .chapter-title,
.element .header-text,
.element .lead-h2,
.element .main-heading,
.element .page-h,
.element .section-h,
.element .section-heading,
.element .topic-title {
  color: #ffffff;
}
.element .boxwrap {
  color: #ffffff;
}.element .block-title,
.element .chapter-title,
.element .header-text,
.element .lead-h2,
.element .main-heading,
.element .page-h,
.element .section-h,
.element .section-heading,
.element .topic-title,
.element .block-action {
  color: #a7c169;
}
.element .boxwrap,
.element .text-wrapper {
  color: #000000;
}
.markbox {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #f6f6f6;
}
.markbox .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .markbox .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .markbox .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .markbox .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .markbox .container {
    padding: 0 16px;
  }
}
.markbox .row {
  justify-content: center;
}.markbox .stub .block-subtitle,
.markbox .stub .h-secondary,
.markbox .stub .lead-sub,
.markbox .stub .section-sub,
.markbox .stub .section-tag,
.markbox .stub .sub-heading,
.markbox .stub .subtitle-text,
.markbox .stub .tagline-h {
  margin-bottom: 32px;
}.markbox .stub .block-title,
.markbox .stub .chapter-title,
.markbox .stub .header-text,
.markbox .stub .lead-h2,
.markbox .stub .main-heading,
.markbox .stub .page-h,
.markbox .stub .section-h,
.markbox .stub .section-heading,
.markbox .stub .topic-title {
  margin-bottom: 16px;
}
.markbox .stub .boxwrap {
  margin-bottom: 0;
}.markbox .block-title,
.markbox .chapter-title,
.markbox .header-text,
.markbox .lead-h2,
.markbox .main-heading,
.markbox .page-h,
.markbox .section-h,
.markbox .section-heading,
.markbox .topic-title {
  color: #3e7691;
  text-align: center;
}.markbox .block-subtitle,
.markbox .h-secondary,
.markbox .lead-sub,
.markbox .section-sub,
.markbox .section-tag,
.markbox .sub-heading,
.markbox .subtitle-text,
.markbox .tagline-h {
  color: #000000;
  text-align: center;
}
.markbox .boxwrap {
  color: #000000;
  text-align: center;
}
.navbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.navbox .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .navbox .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .navbox .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .navbox .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .navbox .container {
    padding: 0 16px;
  }
}
.navbox .row {
  padding: 60px 64px;
  background-color: #f6f6f6;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .navbox .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .navbox .row {
    padding: 25px 9px;
  }
}.navbox .contentbox .block-title,
.navbox .contentbox .chapter-title,
.navbox .contentbox .header-text,
.navbox .contentbox .lead-h2,
.navbox .contentbox .main-heading,
.navbox .contentbox .page-h,
.navbox .contentbox .section-h,
.navbox .contentbox .section-heading,
.navbox .contentbox .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.navbox .contentbox .block-title,
.navbox .contentbox .chapter-title,
.navbox .contentbox .header-text,
.navbox .contentbox .lead-h2,
.navbox .contentbox .main-heading,
.navbox .contentbox .page-h,
.navbox .contentbox .section-h,
.navbox .contentbox .section-heading,
.navbox .contentbox .topic-title {
    margin-bottom: 32px;
  }
}
.navbox .rootsegment {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .navbox .rootsegment {
    margin: 0 0 32px 0;
  }
}
.navbox .rootsegment img {
  height: 400px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .navbox .rootsegment img {
    height: 350px;
  }
}
.navbox .stub {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .navbox .stub {
    margin-bottom: 32px;
    height: auto;
  }
}
.navbox .stub .shelllayer .boxwrap {
  margin-bottom: 16px;
}
.navbox .pack {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .navbox .pack {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .navbox .pack {
    display: block;
  }
}
.navbox .pack .item {
  padding: 50px;
  background-color: #ffffff;
  border-radius: .5rem !important;
}
.navbox .pack .item:nth-child(2n) {
  background-color: #e7f4c9;
}
@media (max-width: 992px) {
  .navbox .pack .item {
    margin-bottom: 2rem;
    padding: 25px;
  }
}
.navbox .pack .item .item-wrapper .card-box .card-title {
  margin-bottom: 12px;
}
.navbox .pack .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.navbox .card {
  justify-content: center;
}.navbox .block-title,
.navbox .chapter-title,
.navbox .header-text,
.navbox .lead-h2,
.navbox .main-heading,
.navbox .page-h,
.navbox .section-h,
.navbox .section-heading,
.navbox .topic-title {
  color: #e38a2a;
  text-align: center;
}
.navbox .boxwrap {
  color: #000000;
}
.navbox .card-title {
  color: #000000;
}
.navbox .card-text {
  color: #000000;
  text-align: center;
}
.navbox .card-title {
  text-align: center;
  color: #819e3d;
}
.containerwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.containerwrap .row {
  justify-content: space-between;
}
.containerwrap .stub {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .stub {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .stub {
    margin-bottom: 35px;
  }
}.containerwrap .stub .block-title,
.containerwrap .stub .chapter-title,
.containerwrap .stub .header-text,
.containerwrap .stub .lead-h2,
.containerwrap .stub .main-heading,
.containerwrap .stub .page-h,
.containerwrap .stub .section-h,
.containerwrap .stub .section-heading,
.containerwrap .stub .topic-title {
  margin-bottom: 10px;
}
.containerwrap .stub .boxwrap {
  margin-bottom: 10px;
}
.containerwrap .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .list-wrapper {
    margin-bottom: 35px;
  }
}
.containerwrap .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.containerwrap .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.containerwrap .list-wrapper .list .item-wrap:hover,
.containerwrap .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.containerwrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.containerwrap .shelllayer {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .shelllayer {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .shelllayer {
    margin-bottom: 35px;
  }
}
.containerwrap .copy-wrapper .noteunit {
  margin-bottom: 0;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title {
  color: #000000;
}
.containerwrap .boxwrap {
  color: #ffbf76;
}
.containerwrap .list {
  color: #000000;
}
.containerwrap .noteunit {
  color: #000000;
}
.containerwrap .noteunit {
  text-align: center;
  color: #ffffff;
}
.containerwrap .list,
.containerwrap .item-wrap {
  color: #d0e59f;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title,
.containerwrap .block-action {
  color: #8fb9cd;
}
.rootbox .header-nav {
  position: relative !important;
}
.rootbox .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.rootbox .nav-link {
  position: relative;
}
.rootbox .container {
  display: flex;
  margin: 0 auto;
  max-width: 1284px;
  border-bottom: 1px solid #282828;
}
@media (min-width: 992px) {
  .rootbox .container {
    flex-wrap: nowrap;
  }
}
.rootbox .nav-item:focus,
.rootbox .nav-link:focus {
  outline: none;
}
.rootbox .navbar {
  min-height: 87px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.rootbox .navbar .routebox {
  margin-right: 1rem;
}
.rootbox .navbar .routebox img {
  width: auto;
}
.rootbox .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .rootbox .navbar .nav-item .nav-link::before {
    display: none;
  }
  .rootbox .navbar .routebox img {
    height: 3rem !important;
  }
  .rootbox .navbar ul.navbar-nav li {
    margin: auto;
  }
  .rootbox .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .rootbox .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.rootbox .navbar-brand {
  min-height: 87px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.rootbox .navbar-brand .coreunit {
  line-height: inherit !important;
  font-weight: 400;
}
.rootbox .navbar-brand .coreunit:hover,
.rootbox .navbar-brand .coreunit:focus {
  color: #ffffff !important;
}
.rootbox .navbar-brand .routebox a {
  outline: none;
}
.rootbox .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.rootbox ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .rootbox ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.rootbox button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.rootbox .header-nav {
  padding: 0 1rem;
}
.rootbox a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .rootbox .navbar {
    height: 87px;
  }
  .rootbox .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.rootbox .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.rootbox .nav-item {
  padding: 0;
  margin: 0;
}
.rootbox .nav-item .nav-link {
  padding: 6px 8px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.rootbox .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.rootbox .nav-item .nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background-color: #819e3d;
  transition: all .3s ease;
  opacity: 0;
  z-index: -1;
}
.rootbox .nav-item .nav-link:hover,
.rootbox .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.rootbox .nav-item .nav-link:hover::after,
.rootbox .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.rootbox .nav-item .nav-link:hover::before,
.rootbox .nav-item .nav-link:focus::before {
  transform: scale(1);
  opacity: 1;
}
.rootbox .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .rootbox .navbar {
    justify-content: flex-start !important;
  }
  .rootbox .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .rootbox .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .rootbox .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .rootbox .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .rootbox .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.rootbox .shelllayer {
  min-height: 87px;
}
.cellunitwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cellunitwrap .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cellunitwrap .container {
    padding: 0 16px;
  }
}
.cellunitwrap .row {
  padding: 60px 64px;
  background-color: #f6f6f6;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cellunitwrap .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cellunitwrap .row {
    padding: 25px 9px;
  }
}.cellunitwrap .contentbox .block-title,
.cellunitwrap .contentbox .chapter-title,
.cellunitwrap .contentbox .header-text,
.cellunitwrap .contentbox .lead-h2,
.cellunitwrap .contentbox .main-heading,
.cellunitwrap .contentbox .page-h,
.cellunitwrap .contentbox .section-h,
.cellunitwrap .contentbox .section-heading,
.cellunitwrap .contentbox .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.cellunitwrap .contentbox .block-title,
.cellunitwrap .contentbox .chapter-title,
.cellunitwrap .contentbox .header-text,
.cellunitwrap .contentbox .lead-h2,
.cellunitwrap .contentbox .main-heading,
.cellunitwrap .contentbox .page-h,
.cellunitwrap .contentbox .section-h,
.cellunitwrap .contentbox .section-heading,
.cellunitwrap .contentbox .topic-title {
    margin-bottom: 32px;
  }
}
.cellunitwrap .rootsegment {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cellunitwrap .rootsegment {
    margin: 0 0 32px 0;
  }
}
.cellunitwrap .rootsegment img {
  height: 400px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cellunitwrap .rootsegment img {
    height: 350px;
  }
}
.cellunitwrap .stub {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cellunitwrap .stub {
    margin-bottom: 32px;
    height: auto;
  }
}
.cellunitwrap .stub .shelllayer .boxwrap {
  margin-bottom: 16px;
}
.cellunitwrap .pack {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .cellunitwrap .pack {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .cellunitwrap .pack {
    display: block;
  }
}
.cellunitwrap .pack .item {
  padding: 50px;
  background-color: #e7f4c9;
  border-radius: .5rem !important;
}
.cellunitwrap .pack .item:nth-child(2n) {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cellunitwrap .pack .item {
    margin-bottom: 2rem;
    padding: 25px;
  }
}
.cellunitwrap .pack .item .item-wrapper .card-box .card-title {
  margin-bottom: 12px;
}
.cellunitwrap .pack .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cellunitwrap .card {
  justify-content: center;
}.cellunitwrap .block-title,
.cellunitwrap .chapter-title,
.cellunitwrap .header-text,
.cellunitwrap .lead-h2,
.cellunitwrap .main-heading,
.cellunitwrap .page-h,
.cellunitwrap .section-h,
.cellunitwrap .section-heading,
.cellunitwrap .topic-title {
  color: #819e3d;
  text-align: center;
}
.cellunitwrap .boxwrap {
  color: #000000;
}
.cellunitwrap .card-title {
  color: #000000;
}
.cellunitwrap .card-text {
  color: #000000;
  text-align: left;
}
.cellunitwrap .card-title {
  text-align: center;
}
.modulewrap {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.modulewrap .contentbox {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .modulewrap .contentbox {
    margin-bottom: 40px;
  }
}.modulewrap .contentbox .block-title,
.modulewrap .contentbox .chapter-title,
.modulewrap .contentbox .header-text,
.modulewrap .contentbox .lead-h2,
.modulewrap .contentbox .main-heading,
.modulewrap .contentbox .page-h,
.modulewrap .contentbox .section-h,
.modulewrap .contentbox .section-heading,
.modulewrap .contentbox .topic-title {
  margin-bottom: 0;
}.modulewrap .contentbox .block-subtitle,
.modulewrap .contentbox .h-secondary,
.modulewrap .contentbox .lead-sub,
.modulewrap .contentbox .section-sub,
.modulewrap .contentbox .section-tag,
.modulewrap .contentbox .sub-heading,
.modulewrap .contentbox .subtitle-text,
.modulewrap .contentbox .tagline-h {
  margin-bottom: 0;
}
.modulewrap .pack {
  margin: 0 -20px;
}
.modulewrap .pack .item {
  padding: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .modulewrap .pack .item:last-child {
    margin-bottom: 0;
  }
}
.modulewrap .pack .item .item-wrapper .item-img {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .modulewrap .pack .item .item-wrapper .item-img {
    margin-bottom: 24px;
  }
}
.modulewrap .pack .item .item-wrapper .item-img img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .modulewrap .pack .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .modulewrap .pack .item .item-wrapper .item-img img {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .modulewrap .pack .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.modulewrap .pack .item .item-wrapper .card-box {
  padding: 40px;
  border: 1px solid #ffffff;
  overflow: hidden;
  background-image: linear-gradient(135deg, #e7f4c9 0%, #e7f4c9 50%, transparent 100%);
}
@media (max-width: 992px) {
  .modulewrap .pack .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.modulewrap .pack .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.modulewrap .pack .item .item-wrapper .card-box .text-wrap .item-text {
  margin-bottom: 0;
}.modulewrap .pack .item .item-wrapper .card-box .block-action {
  margin-bottom: -9.6px;
  margin-top: 14px;
}.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 .block-subtitle,
.modulewrap .h-secondary,
.modulewrap .lead-sub,
.modulewrap .section-sub,
.modulewrap .section-tag,
.modulewrap .sub-heading,
.modulewrap .subtitle-text,
.modulewrap .tagline-h {
  color: #ffee00;
}
.modulewrap .item-title {
  color: #ffffff;
}
.modulewrap .item-text {
  color: #8c8c8c;
}.modulewrap .item-title,
.modulewrap .block-action {
  color: #000000;
}
.modulewrap .item-text,
.modulewrap .text-wrap {
  color: #000000;
}
.viewlayer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.viewlayer .shelllayer {
  margin: 0 -25px;
}
.viewlayer .shelllayer .card {
  padding: 0 25px;
}
.viewlayer .rootsegment {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .viewlayer .rootsegment {
    margin-top: 40px;
    height: 300px;
  }
}
.viewlayer .rootsegment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171719;
  opacity: 0;
  z-index: 1;
}
.viewlayer .rootsegment .boxlayer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.viewlayer .contentbox {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .viewlayer .contentbox {
    margin-bottom: 40px;
  }
}
.viewlayer .pack {
  position: relative;
  padding-left: 33px;
}
@media (max-width: 992px) {
  .viewlayer .pack {
    padding-left: 23px;
  }
}
.viewlayer .pack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-image: linear-gradient(180deg, #ffbf76 0%, #e7f4c9 50%, #8fb9cd 100%);
}
.viewlayer .pack .item {
  margin-bottom: 30px;
}
.viewlayer .pack .item:last-child {
  margin-bottom: 0;
}
.viewlayer .pack .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.viewlayer .pack .item .item-wrapper .item-text {
  margin-bottom: 0;
}.viewlayer .block-action .btn-primary-outline,
.viewlayer .block-action .btn-secondary-outline,
.viewlayer .block-action .btn-success-outline,
.viewlayer .block-action .btn-info-outline,
.viewlayer .block-action .btn-warning-outline,
.viewlayer .block-action .btn-danger-outline,
.viewlayer .block-action .btn-black-outline,
.viewlayer .block-action .btn-white-outline {
  padding: 0;
  border: none !important;
}

.viewlayer .layoutnode {
  color: #171719;
}.viewlayer .block-title,
.viewlayer .chapter-title,
.viewlayer .header-text,
.viewlayer .lead-h2,
.viewlayer .main-heading,
.viewlayer .page-h,
.viewlayer .section-h,
.viewlayer .section-heading,
.viewlayer .topic-title {
  color: #171719;
}
.viewlayer .item-title {
  color: #171719;
}
.viewlayer .item-text {
  color: #000000;
}
.formunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.formunit .topbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: #e7f4c9;
}
.formunit .pack {
  position: relative;
  z-index: 1;
  margin: 0 -20px;
}
.formunit .pack .item {
  padding: 0 20px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .formunit .pack .item:last-child {
    margin-bottom: 0;
  }
}
.formunit .pack .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid #e7f4c9;
  background-color: #ffffff;
  padding: 40px;
}
@media (max-width: 992px) {
  .formunit .pack .item .item-wrapper {
    padding: 30px;
  }
}
.formunit .pack .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.formunit .pack .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.formunit .item-title {
  color: #1d1d1d;
}
.formunit .item-text {
  color: #000000;
  text-align: left;
}
.formunit .item-title {
  text-align: center;
}
.containerwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.containerwrap .row {
  justify-content: space-between;
}
.containerwrap .stub {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .stub {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .stub {
    margin-bottom: 35px;
  }
}.containerwrap .stub .block-title,
.containerwrap .stub .chapter-title,
.containerwrap .stub .header-text,
.containerwrap .stub .lead-h2,
.containerwrap .stub .main-heading,
.containerwrap .stub .page-h,
.containerwrap .stub .section-h,
.containerwrap .stub .section-heading,
.containerwrap .stub .topic-title {
  margin-bottom: 10px;
}
.containerwrap .stub .boxwrap {
  margin-bottom: 10px;
}
.containerwrap .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .list-wrapper {
    margin-bottom: 35px;
  }
}
.containerwrap .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.containerwrap .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.containerwrap .list-wrapper .list .item-wrap:hover,
.containerwrap .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.containerwrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.containerwrap .shelllayer {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .shelllayer {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .shelllayer {
    margin-bottom: 35px;
  }
}
.containerwrap .copy-wrapper .noteunit {
  margin-bottom: 0;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title {
  color: #000000;
}
.containerwrap .boxwrap {
  color: #ffbf76;
}
.containerwrap .list {
  color: #000000;
}
.containerwrap .noteunit {
  color: #000000;
}
.containerwrap .noteunit {
  text-align: center;
  color: #ffffff;
}
.containerwrap .list,
.containerwrap .item-wrap {
  color: #d0e59f;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title,
.containerwrap .block-action {
  color: #8fb9cd;
}
.nodemodule .header-nav {
  position: relative !important;
}
.nodemodule .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.nodemodule .nav-link {
  position: relative;
}
.nodemodule .container {
  display: flex;
  margin: 0 auto;
  max-width: 1284px;
  border-bottom: 1px solid #282828;
}
@media (min-width: 992px) {
  .nodemodule .container {
    flex-wrap: nowrap;
  }
}
.nodemodule .nav-item:focus,
.nodemodule .nav-link:focus {
  outline: none;
}
.nodemodule .navbar {
  min-height: 87px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.nodemodule .navbar .routebox {
  margin-right: 1rem;
}
.nodemodule .navbar .routebox img {
  width: auto;
}
.nodemodule .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .nodemodule .navbar .nav-item .nav-link::before {
    display: none;
  }
  .nodemodule .navbar .routebox img {
    height: 3rem !important;
  }
  .nodemodule .navbar ul.navbar-nav li {
    margin: auto;
  }
  .nodemodule .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .nodemodule .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.nodemodule .navbar-brand {
  min-height: 87px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.nodemodule .navbar-brand .coreunit {
  line-height: inherit !important;
  font-weight: 400;
}
.nodemodule .navbar-brand .coreunit:hover,
.nodemodule .navbar-brand .coreunit:focus {
  color: #ffffff !important;
}
.nodemodule .navbar-brand .routebox a {
  outline: none;
}
.nodemodule .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.nodemodule ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .nodemodule ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.nodemodule button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.nodemodule .header-nav {
  padding: 0 1rem;
}
.nodemodule a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .nodemodule .navbar {
    height: 87px;
  }
  .nodemodule .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.nodemodule .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.nodemodule .nav-item {
  padding: 0;
  margin: 0;
}
.nodemodule .nav-item .nav-link {
  padding: 6px 8px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.nodemodule .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.nodemodule .nav-item .nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background-color: #819e3d;
  transition: all .3s ease;
  opacity: 0;
  z-index: -1;
}
.nodemodule .nav-item .nav-link:hover,
.nodemodule .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.nodemodule .nav-item .nav-link:hover::after,
.nodemodule .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.nodemodule .nav-item .nav-link:hover::before,
.nodemodule .nav-item .nav-link:focus::before {
  transform: scale(1);
  opacity: 1;
}
.nodemodule .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .nodemodule .navbar {
    justify-content: flex-start !important;
  }
  .nodemodule .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .nodemodule .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .nodemodule .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .nodemodule .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .nodemodule .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.nodemodule .shelllayer {
  min-height: 87px;
}
.layoutgrid {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .layoutgrid .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .layoutgrid .container {
    padding: 0 16px;
  }
}
.layoutgrid .row {
  padding: 60px 64px;
  background-color: #f6f6f6;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .layoutgrid .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .layoutgrid .row {
    padding: 25px 9px;
  }
}.layoutgrid .contentbox .block-title,
.layoutgrid .contentbox .chapter-title,
.layoutgrid .contentbox .header-text,
.layoutgrid .contentbox .lead-h2,
.layoutgrid .contentbox .main-heading,
.layoutgrid .contentbox .page-h,
.layoutgrid .contentbox .section-h,
.layoutgrid .contentbox .section-heading,
.layoutgrid .contentbox .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.layoutgrid .contentbox .block-title,
.layoutgrid .contentbox .chapter-title,
.layoutgrid .contentbox .header-text,
.layoutgrid .contentbox .lead-h2,
.layoutgrid .contentbox .main-heading,
.layoutgrid .contentbox .page-h,
.layoutgrid .contentbox .section-h,
.layoutgrid .contentbox .section-heading,
.layoutgrid .contentbox .topic-title {
    margin-bottom: 32px;
  }
}
.layoutgrid .rootsegment {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .layoutgrid .rootsegment {
    margin: 0 0 32px 0;
  }
}
.layoutgrid .rootsegment img {
  height: 400px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .layoutgrid .rootsegment img {
    height: 350px;
  }
}
.layoutgrid .stub {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .layoutgrid .stub {
    margin-bottom: 32px;
    height: auto;
  }
}
.layoutgrid .stub .shelllayer .boxwrap {
  margin-bottom: 16px;
}
.layoutgrid .pack {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .layoutgrid .pack {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .layoutgrid .pack {
    display: block;
  }
}
.layoutgrid .pack .item {
  padding: 50px;
  background-color: #25607d;
  border-radius: .5rem !important;
}
.layoutgrid .pack .item:nth-child(2n) {
  background-color: #e38a2a;
}
@media (max-width: 992px) {
  .layoutgrid .pack .item {
    margin-bottom: 2rem;
    padding: 25px;
  }
}
.layoutgrid .pack .item .item-wrapper .card-box .card-title {
  margin-bottom: 12px;
}
.layoutgrid .pack .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.layoutgrid .card {
  justify-content: center;
}.layoutgrid .block-title,
.layoutgrid .chapter-title,
.layoutgrid .header-text,
.layoutgrid .lead-h2,
.layoutgrid .main-heading,
.layoutgrid .page-h,
.layoutgrid .section-h,
.layoutgrid .section-heading,
.layoutgrid .topic-title {
  color: #3e7691;
  text-align: center;
}
.layoutgrid .boxwrap {
  color: #000000;
}
.layoutgrid .card-title {
  color: #000000;
}
.layoutgrid .card-text {
  color: #ffffff;
  text-align: left;
}
.layoutgrid .card-title {
  text-align: center;
  color: #ffffff;
}
.shellcell {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.shellcell .shelllayer {
  margin: 0 -25px;
}
.shellcell .shelllayer .card {
  padding: 0 25px;
}
.shellcell .rootsegment {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .shellcell .rootsegment {
    margin-top: 40px;
    height: 300px;
  }
}
.shellcell .rootsegment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171719;
  opacity: 0;
  z-index: 1;
}
.shellcell .rootsegment .boxlayer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shellcell .contentbox {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .shellcell .contentbox {
    margin-bottom: 40px;
  }
}
.shellcell .pack {
  position: relative;
  padding-left: 33px;
}
@media (max-width: 992px) {
  .shellcell .pack {
    padding-left: 23px;
  }
}
.shellcell .pack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-image: linear-gradient(180deg, #8fb9cd 0%, #d0e59f 50%, #f6a851 100%);
}
.shellcell .pack .item {
  margin-bottom: 30px;
}
.shellcell .pack .item:last-child {
  margin-bottom: 0;
}
.shellcell .pack .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.shellcell .pack .item .item-wrapper .item-text {
  margin-bottom: 0;
}.shellcell .block-action .btn-primary-outline,
.shellcell .block-action .btn-secondary-outline,
.shellcell .block-action .btn-success-outline,
.shellcell .block-action .btn-info-outline,
.shellcell .block-action .btn-warning-outline,
.shellcell .block-action .btn-danger-outline,
.shellcell .block-action .btn-black-outline,
.shellcell .block-action .btn-white-outline {
  padding: 0;
  border: none !important;
}

.shellcell .layoutnode {
  color: #171719;
}.shellcell .block-title,
.shellcell .chapter-title,
.shellcell .header-text,
.shellcell .lead-h2,
.shellcell .main-heading,
.shellcell .page-h,
.shellcell .section-h,
.shellcell .section-heading,
.shellcell .topic-title {
  color: #171719;
}
.shellcell .item-title {
  color: #171719;
}
.shellcell .item-text {
  color: #000000;
}
.body {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.body .topbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: #ffbf76;
}
.body .pack {
  position: relative;
  z-index: 1;
  margin: 0 -20px;
}
.body .pack .item {
  padding: 0 20px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .body .pack .item:last-child {
    margin-bottom: 0;
  }
}
.body .pack .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid #f6a851;
  background-color: #ffffff;
  padding: 40px;
}
@media (max-width: 992px) {
  .body .pack .item .item-wrapper {
    padding: 30px;
  }
}
.body .pack .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.body .pack .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.body .item-title {
  color: #1d1d1d;
}
.body .item-text {
  color: #000000;
  text-align: left;
}
.body .item-title {
  text-align: center;
}
.outer {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.outer .contentbox {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .outer .contentbox {
    margin-bottom: 40px;
  }
}.outer .contentbox .block-title,
.outer .contentbox .chapter-title,
.outer .contentbox .header-text,
.outer .contentbox .lead-h2,
.outer .contentbox .main-heading,
.outer .contentbox .page-h,
.outer .contentbox .section-h,
.outer .contentbox .section-heading,
.outer .contentbox .topic-title {
  margin-bottom: 0;
}.outer .contentbox .block-subtitle,
.outer .contentbox .h-secondary,
.outer .contentbox .lead-sub,
.outer .contentbox .section-sub,
.outer .contentbox .section-tag,
.outer .contentbox .sub-heading,
.outer .contentbox .subtitle-text,
.outer .contentbox .tagline-h {
  margin-bottom: 0;
}
.outer .pack {
  margin: 0 -20px;
}
.outer .pack .item {
  padding: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .outer .pack .item:last-child {
    margin-bottom: 0;
  }
}
.outer .pack .item .item-wrapper .item-img {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .outer .pack .item .item-wrapper .item-img {
    margin-bottom: 24px;
  }
}
.outer .pack .item .item-wrapper .item-img img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .outer .pack .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .outer .pack .item .item-wrapper .item-img img {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .outer .pack .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.outer .pack .item .item-wrapper .card-box {
  padding: 40px;
  border: 1px solid #ffffff;
  overflow: hidden;
  background-image: linear-gradient(135deg, #25607d 0%, #25607d 50%, transparent 100%);
}
@media (max-width: 992px) {
  .outer .pack .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.outer .pack .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.outer .pack .item .item-wrapper .card-box .text-wrap .item-text {
  margin-bottom: 0;
}.outer .pack .item .item-wrapper .card-box .block-action {
  margin-bottom: -9.6px;
  margin-top: 14px;
}.outer .block-title,
.outer .chapter-title,
.outer .header-text,
.outer .lead-h2,
.outer .main-heading,
.outer .page-h,
.outer .section-h,
.outer .section-heading,
.outer .topic-title {
  color: #ffffff;
}.outer .block-subtitle,
.outer .h-secondary,
.outer .lead-sub,
.outer .section-sub,
.outer .section-tag,
.outer .sub-heading,
.outer .subtitle-text,
.outer .tagline-h {
  color: #ffee00;
}
.outer .item-title {
  color: #ffffff;
}
.outer .item-text {
  color: #8c8c8c;
}.outer .item-title,
.outer .block-action {
  color: #ffffff;
}
.outer .item-text,
.outer .text-wrap {
  color: #ffffff;
}
.containerwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.containerwrap .row {
  justify-content: space-between;
}
.containerwrap .stub {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .stub {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .stub {
    margin-bottom: 35px;
  }
}.containerwrap .stub .block-title,
.containerwrap .stub .chapter-title,
.containerwrap .stub .header-text,
.containerwrap .stub .lead-h2,
.containerwrap .stub .main-heading,
.containerwrap .stub .page-h,
.containerwrap .stub .section-h,
.containerwrap .stub .section-heading,
.containerwrap .stub .topic-title {
  margin-bottom: 10px;
}
.containerwrap .stub .boxwrap {
  margin-bottom: 10px;
}
.containerwrap .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .list-wrapper {
    margin-bottom: 35px;
  }
}
.containerwrap .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.containerwrap .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.containerwrap .list-wrapper .list .item-wrap:hover,
.containerwrap .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.containerwrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.containerwrap .shelllayer {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .shelllayer {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .shelllayer {
    margin-bottom: 35px;
  }
}
.containerwrap .copy-wrapper .noteunit {
  margin-bottom: 0;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title {
  color: #000000;
}
.containerwrap .boxwrap {
  color: #ffbf76;
}
.containerwrap .list {
  color: #000000;
}
.containerwrap .noteunit {
  color: #000000;
}
.containerwrap .noteunit {
  text-align: center;
  color: #ffffff;
}
.containerwrap .list,
.containerwrap .item-wrap {
  color: #d0e59f;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title,
.containerwrap .block-action {
  color: #8fb9cd;
}
.nodemodule .header-nav {
  position: relative !important;
}
.nodemodule .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.nodemodule .nav-link {
  position: relative;
}
.nodemodule .container {
  display: flex;
  margin: 0 auto;
  max-width: 1284px;
  border-bottom: 1px solid #282828;
}
@media (min-width: 992px) {
  .nodemodule .container {
    flex-wrap: nowrap;
  }
}
.nodemodule .nav-item:focus,
.nodemodule .nav-link:focus {
  outline: none;
}
.nodemodule .navbar {
  min-height: 87px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.nodemodule .navbar .routebox {
  margin-right: 1rem;
}
.nodemodule .navbar .routebox img {
  width: auto;
}
.nodemodule .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .nodemodule .navbar .nav-item .nav-link::before {
    display: none;
  }
  .nodemodule .navbar .routebox img {
    height: 3rem !important;
  }
  .nodemodule .navbar ul.navbar-nav li {
    margin: auto;
  }
  .nodemodule .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .nodemodule .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.nodemodule .navbar-brand {
  min-height: 87px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.nodemodule .navbar-brand .coreunit {
  line-height: inherit !important;
  font-weight: 400;
}
.nodemodule .navbar-brand .coreunit:hover,
.nodemodule .navbar-brand .coreunit:focus {
  color: #ffffff !important;
}
.nodemodule .navbar-brand .routebox a {
  outline: none;
}
.nodemodule .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.nodemodule ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .nodemodule ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.nodemodule button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.nodemodule .header-nav {
  padding: 0 1rem;
}
.nodemodule a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .nodemodule .navbar {
    height: 87px;
  }
  .nodemodule .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.nodemodule .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.nodemodule .nav-item {
  padding: 0;
  margin: 0;
}
.nodemodule .nav-item .nav-link {
  padding: 6px 8px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.nodemodule .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.nodemodule .nav-item .nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background-color: #819e3d;
  transition: all .3s ease;
  opacity: 0;
  z-index: -1;
}
.nodemodule .nav-item .nav-link:hover,
.nodemodule .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.nodemodule .nav-item .nav-link:hover::after,
.nodemodule .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.nodemodule .nav-item .nav-link:hover::before,
.nodemodule .nav-item .nav-link:focus::before {
  transform: scale(1);
  opacity: 1;
}
.nodemodule .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .nodemodule .navbar {
    justify-content: flex-start !important;
  }
  .nodemodule .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .nodemodule .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .nodemodule .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .nodemodule .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .nodemodule .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.nodemodule .shelllayer {
  min-height: 87px;
}
.mapwrap {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.mapwrap .pack {
  margin: 0 -20px;
}
.mapwrap .pack .card {
  padding: 0 20px;
  justify-content: center;
}
.mapwrap .stub {
  position: relative;
  padding: 100px 40px;
  min-height: 500px;
}
@media (max-width: 992px) {
  .mapwrap .stub {
    padding: 40px 24px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .mapwrap .stub {
    padding: 40px 12px;
  }
}
.mapwrap .stub .rootsegment img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mapwrap .stub .sectionlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.9;
  pointer-events: none;
}
.mapwrap .stub .shelllayer {
  position: relative;
  z-index: 1;
}.mapwrap .stub .shelllayer .block-title,
.mapwrap .stub .shelllayer .chapter-title,
.mapwrap .stub .shelllayer .header-text,
.mapwrap .stub .shelllayer .lead-h2,
.mapwrap .stub .shelllayer .main-heading,
.mapwrap .stub .shelllayer .page-h,
.mapwrap .stub .shelllayer .section-h,
.mapwrap .stub .shelllayer .section-heading,
.mapwrap .stub .shelllayer .topic-title {
  margin-bottom: 24px;
}
.mapwrap .stub .shelllayer .text-wrapper .boxwrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .mapwrap .stub .shelllayer .text-wrapper .boxwrap {
    width: 100%;
  }
}.mapwrap .stub .shelllayer .block-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.mapwrap .boxlayer img {
  height: 540px;
  width: 100%;
  object-fit: cover;
  height: 400px;
}
@media (max-width: 1440px) {
  .mapwrap .boxlayer img {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .mapwrap .boxlayer img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .mapwrap .boxlayer img {
    height: 300px;
  }
}
.mapwrap .image_1 {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .mapwrap .image_1 {
    margin-bottom: 24px;
  }
}
.mapwrap .image_2 {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.mapwrap .image_2 img {
  margin-bottom: -40px;
}
@media (max-width: 992px) {
  .mapwrap .image_2 img {
    margin-top: 24px;
  }
}.mapwrap .block-title,
.mapwrap .chapter-title,
.mapwrap .header-text,
.mapwrap .lead-h2,
.mapwrap .main-heading,
.mapwrap .page-h,
.mapwrap .section-h,
.mapwrap .section-heading,
.mapwrap .topic-title {
  color: #ffffff;
}
.mapwrap .boxwrap,
.mapwrap .text-wrapper {
  color: #000000;
  text-align: center;
}.mapwrap .block-title,
.mapwrap .chapter-title,
.mapwrap .header-text,
.mapwrap .lead-h2,
.mapwrap .main-heading,
.mapwrap .page-h,
.mapwrap .section-h,
.mapwrap .section-heading,
.mapwrap .topic-title,
.mapwrap .block-action {
  text-align: center;
  color: #3e7691;
}
.interfacerow {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}.interfacerow .stub .contentbox .block-title,
.interfacerow .stub .contentbox .chapter-title,
.interfacerow .stub .contentbox .header-text,
.interfacerow .stub .contentbox .lead-h2,
.interfacerow .stub .contentbox .main-heading,
.interfacerow .stub .contentbox .page-h,
.interfacerow .stub .contentbox .section-h,
.interfacerow .stub .contentbox .section-heading,
.interfacerow .stub .contentbox .topic-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {.interfacerow .stub .contentbox .block-title,
.interfacerow .stub .contentbox .chapter-title,
.interfacerow .stub .contentbox .header-text,
.interfacerow .stub .contentbox .lead-h2,
.interfacerow .stub .contentbox .main-heading,
.interfacerow .stub .contentbox .page-h,
.interfacerow .stub .contentbox .section-h,
.interfacerow .stub .contentbox .section-heading,
.interfacerow .stub .contentbox .topic-title {
    width: 75%;
  }
}
@media (max-width: 992px) {.interfacerow .stub .contentbox .block-title,
.interfacerow .stub .contentbox .chapter-title,
.interfacerow .stub .contentbox .header-text,
.interfacerow .stub .contentbox .lead-h2,
.interfacerow .stub .contentbox .main-heading,
.interfacerow .stub .contentbox .page-h,
.interfacerow .stub .contentbox .section-h,
.interfacerow .stub .contentbox .section-heading,
.interfacerow .stub .contentbox .topic-title {
    width: 100%;
  }
}
.interfacerow .stub .text-wrapper .boxwrap {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .interfacerow .stub .text-wrapper .boxwrap {
    width: 65%;
  }
}
@media (max-width: 992px) {
  .interfacerow .stub .text-wrapper .boxwrap {
    width: 100%;
  }
}.interfacerow .stub .block-action {
  margin-top: 20px;
}.interfacerow .stub .block-action .btn {
  margin-bottom: 0;
}

.interfacerow .layoutnode {
  color: #116e99;
  text-align: center;
}.interfacerow .block-title,
.interfacerow .chapter-title,
.interfacerow .header-text,
.interfacerow .lead-h2,
.interfacerow .main-heading,
.interfacerow .page-h,
.interfacerow .section-h,
.interfacerow .section-heading,
.interfacerow .topic-title {
  color: #000000;
}
.interfacerow .boxwrap,
.interfacerow .text-wrapper {
  color: #000000;
  text-align: center;
}.interfacerow .block-title,
.interfacerow .chapter-title,
.interfacerow .header-text,
.interfacerow .lead-h2,
.interfacerow .main-heading,
.interfacerow .page-h,
.interfacerow .section-h,
.interfacerow .section-heading,
.interfacerow .topic-title,
.interfacerow .block-action,
.interfacerow .contentbox {
  text-align: center;
  color: #819e3d;
}
.headwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.headwrap .stub {
  align-items: center;
  margin: 0 -40px;
}
.headwrap .stub .card {
  padding: 0 40px;
}
.headwrap .rootsegment {
  border: 1px solid #ffffff;
  background-color: #8fb9cd;
  padding: 60px 60px 0;
}
@media (max-width: 992px) {
  .headwrap .rootsegment {
    padding: 20px 20px 0;
    margin-bottom: 30px;
  }
}
.headwrap .rootsegment img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
@media (max-width: 992px) {
  .headwrap .rootsegment img {
    height: 300px;
  }
}
@media (max-width: 425px) {
  .headwrap .rootsegment img {
    height: 200px;
  }
}.headwrap .contentbox .block-title,
.headwrap .contentbox .chapter-title,
.headwrap .contentbox .header-text,
.headwrap .contentbox .lead-h2,
.headwrap .contentbox .main-heading,
.headwrap .contentbox .page-h,
.headwrap .contentbox .section-h,
.headwrap .contentbox .section-heading,
.headwrap .contentbox .topic-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {.headwrap .contentbox .block-title,
.headwrap .contentbox .chapter-title,
.headwrap .contentbox .header-text,
.headwrap .contentbox .lead-h2,
.headwrap .contentbox .main-heading,
.headwrap .contentbox .page-h,
.headwrap .contentbox .section-h,
.headwrap .contentbox .section-heading,
.headwrap .contentbox .topic-title {
    margin-bottom: 15px;
  }
}
.headwrap .contentbox .text-wrapper .boxwrap {
  margin-bottom: 0;
}.headwrap .contentbox .block-action {
  margin-top: 20px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {.headwrap .contentbox .block-action {
    margin-top: 10px;
  }
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title {
  color: #1d1d1d;
}
.headwrap .boxwrap,
.headwrap .text-wrapper {
  color: #000000;
}.headwrap .block-title,
.headwrap .chapter-title,
.headwrap .header-text,
.headwrap .lead-h2,
.headwrap .main-heading,
.headwrap .page-h,
.headwrap .section-h,
.headwrap .section-heading,
.headwrap .topic-title,
.headwrap .block-action {
  color: #e38a2a;
}
.elementbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
@media (max-width: 992px) {
  .elementbox .shelllayer {
    margin-bottom: 32px;
  }
}.elementbox .shelllayer .block-title,
.elementbox .shelllayer .chapter-title,
.elementbox .shelllayer .header-text,
.elementbox .shelllayer .lead-h2,
.elementbox .shelllayer .main-heading,
.elementbox .shelllayer .page-h,
.elementbox .shelllayer .section-h,
.elementbox .shelllayer .section-heading,
.elementbox .shelllayer .topic-title {
  margin-bottom: 0;
}.elementbox .shelllayer .block-action {
  margin-top: 14px;
}.elementbox .shelllayer .block-action .btn {
  margin-bottom: 0;
}
.elementbox .text-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.elementbox .text-wrapper .boxwrap {
  display: inline-block;
  margin-bottom: 0;
}
.elementbox .text-wrapper .list-wrapper {
  margin-top: 24px;
}
.elementbox .text-wrapper .list-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.elementbox .text-wrapper .list-wrapper .list .item-wrap {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e7f4c9;
}.elementbox .block-title,
.elementbox .chapter-title,
.elementbox .header-text,
.elementbox .lead-h2,
.elementbox .main-heading,
.elementbox .page-h,
.elementbox .section-h,
.elementbox .section-heading,
.elementbox .topic-title {
  color: #000000;
}
.elementbox .boxwrap,
.elementbox .text-wrapper {
  color: #4f4f4f;
}
.elementbox .list {
  color: #000000;
}
.elementbox .boxwrap {
  color: #000000;
}.elementbox .block-title,
.elementbox .chapter-title,
.elementbox .header-text,
.elementbox .lead-h2,
.elementbox .main-heading,
.elementbox .page-h,
.elementbox .section-h,
.elementbox .section-heading,
.elementbox .topic-title,
.elementbox .block-action {
  color: #3e7691;
}
.containerwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.containerwrap .row {
  justify-content: space-between;
}
.containerwrap .stub {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .stub {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .stub {
    margin-bottom: 35px;
  }
}.containerwrap .stub .block-title,
.containerwrap .stub .chapter-title,
.containerwrap .stub .header-text,
.containerwrap .stub .lead-h2,
.containerwrap .stub .main-heading,
.containerwrap .stub .page-h,
.containerwrap .stub .section-h,
.containerwrap .stub .section-heading,
.containerwrap .stub .topic-title {
  margin-bottom: 10px;
}
.containerwrap .stub .boxwrap {
  margin-bottom: 10px;
}
.containerwrap .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .list-wrapper {
    margin-bottom: 35px;
  }
}
.containerwrap .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.containerwrap .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.containerwrap .list-wrapper .list .item-wrap:hover,
.containerwrap .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.containerwrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.containerwrap .shelllayer {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .shelllayer {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .shelllayer {
    margin-bottom: 35px;
  }
}
.containerwrap .copy-wrapper .noteunit {
  margin-bottom: 0;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title {
  color: #000000;
}
.containerwrap .boxwrap {
  color: #ffbf76;
}
.containerwrap .list {
  color: #000000;
}
.containerwrap .noteunit {
  color: #000000;
}
.containerwrap .noteunit {
  text-align: center;
  color: #ffffff;
}
.containerwrap .list,
.containerwrap .item-wrap {
  color: #d0e59f;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title,
.containerwrap .block-action {
  color: #8fb9cd;
}
.nodemodule .header-nav {
  position: relative !important;
}
.nodemodule .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.nodemodule .nav-link {
  position: relative;
}
.nodemodule .container {
  display: flex;
  margin: 0 auto;
  max-width: 1284px;
  border-bottom: 1px solid #282828;
}
@media (min-width: 992px) {
  .nodemodule .container {
    flex-wrap: nowrap;
  }
}
.nodemodule .nav-item:focus,
.nodemodule .nav-link:focus {
  outline: none;
}
.nodemodule .navbar {
  min-height: 87px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.nodemodule .navbar .routebox {
  margin-right: 1rem;
}
.nodemodule .navbar .routebox img {
  width: auto;
}
.nodemodule .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .nodemodule .navbar .nav-item .nav-link::before {
    display: none;
  }
  .nodemodule .navbar .routebox img {
    height: 3rem !important;
  }
  .nodemodule .navbar ul.navbar-nav li {
    margin: auto;
  }
  .nodemodule .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .nodemodule .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.nodemodule .navbar-brand {
  min-height: 87px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.nodemodule .navbar-brand .coreunit {
  line-height: inherit !important;
  font-weight: 400;
}
.nodemodule .navbar-brand .coreunit:hover,
.nodemodule .navbar-brand .coreunit:focus {
  color: #ffffff !important;
}
.nodemodule .navbar-brand .routebox a {
  outline: none;
}
.nodemodule .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.nodemodule ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .nodemodule ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.nodemodule button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.nodemodule .header-nav {
  padding: 0 1rem;
}
.nodemodule a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .nodemodule .navbar {
    height: 87px;
  }
  .nodemodule .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.nodemodule .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.nodemodule .nav-item {
  padding: 0;
  margin: 0;
}
.nodemodule .nav-item .nav-link {
  padding: 6px 8px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.nodemodule .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.nodemodule .nav-item .nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background-color: #819e3d;
  transition: all .3s ease;
  opacity: 0;
  z-index: -1;
}
.nodemodule .nav-item .nav-link:hover,
.nodemodule .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.nodemodule .nav-item .nav-link:hover::after,
.nodemodule .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.nodemodule .nav-item .nav-link:hover::before,
.nodemodule .nav-item .nav-link:focus::before {
  transform: scale(1);
  opacity: 1;
}
.nodemodule .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .nodemodule .navbar {
    justify-content: flex-start !important;
  }
  .nodemodule .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .nodemodule .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .nodemodule .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .nodemodule .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .nodemodule .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.nodemodule .shelllayer {
  min-height: 87px;
}
.modsegment {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.modsegment .contentbox {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .modsegment .contentbox {
    margin-bottom: 32px;
  }
}.modsegment .contentbox .block-title,
.modsegment .contentbox .chapter-title,
.modsegment .contentbox .header-text,
.modsegment .contentbox .lead-h2,
.modsegment .contentbox .main-heading,
.modsegment .contentbox .page-h,
.modsegment .contentbox .section-h,
.modsegment .contentbox .section-heading,
.modsegment .contentbox .topic-title {
  margin-bottom: 24px;
}
.modsegment .contentbox .text-wrapper .boxwrap {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .modsegment .contentbox .text-wrapper .boxwrap {
    width: 100%;
  }
}
.modsegment .stub {
  padding: 12px;
  border: 1px solid #e7f4c9;
  background-color: #d0e59f;
  box-shadow: 0 .25rem .375rem #00000014;
}
@media (max-width: 992px) {
  .modsegment .stub {
    padding: 6px;
  }
}.modsegment .block-title,
.modsegment .chapter-title,
.modsegment .header-text,
.modsegment .lead-h2,
.modsegment .main-heading,
.modsegment .page-h,
.modsegment .section-h,
.modsegment .section-heading,
.modsegment .topic-title {
  color: #181824;
  text-align: center;
}
.modsegment .boxwrap,
.modsegment .text-wrapper {
  color: #000000;
  text-align: center;
}
.modsegment label {
  text-transform: uppercase;
  color: #49496d;
}.modsegment .block-title,
.modsegment .chapter-title,
.modsegment .header-text,
.modsegment .lead-h2,
.modsegment .main-heading,
.modsegment .page-h,
.modsegment .section-h,
.modsegment .section-heading,
.modsegment .topic-title,
.modsegment .block-action {
  text-align: center;
  color: #819e3d;
}
.zonefield {
  padding-top: 5rem;
  background-color: #f6f6f6;
}
.zonefield .stub {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
}.zonefield .stub .contentbox .block-title,
.zonefield .stub .contentbox .chapter-title,
.zonefield .stub .contentbox .header-text,
.zonefield .stub .contentbox .lead-h2,
.zonefield .stub .contentbox .main-heading,
.zonefield .stub .contentbox .page-h,
.zonefield .stub .contentbox .section-h,
.zonefield .stub .contentbox .section-heading,
.zonefield .stub .contentbox .topic-title {
  margin-bottom: 16px;
}
.zonefield .stub .contentbox .text-wrapper .boxwrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .zonefield .stub .contentbox .text-wrapper .boxwrap {
    width: 100%;
  }
}.zonefield .stub .contentbox .block-action {
  margin-top: 30px;
}
@media (max-width: 992px) {.zonefield .stub .contentbox .block-action {
    margin-top: 10px;
  }
}.zonefield .block-title,
.zonefield .chapter-title,
.zonefield .header-text,
.zonefield .lead-h2,
.zonefield .main-heading,
.zonefield .page-h,
.zonefield .section-h,
.zonefield .section-heading,
.zonefield .topic-title {
  color: #0f172a;
  text-align: center;
}
.zonefield .boxwrap,
.zonefield .text-wrapper {
  color: #000000;
  text-align: center;
}.zonefield .block-action,
.zonefield .block-title,
.zonefield .chapter-title,
.zonefield .header-text,
.zonefield .lead-h2,
.zonefield .main-heading,
.zonefield .page-h,
.zonefield .section-h,
.zonefield .section-heading,
.zonefield .topic-title {
  text-align: center;
}.zonefield .block-title,
.zonefield .chapter-title,
.zonefield .header-text,
.zonefield .lead-h2,
.zonefield .main-heading,
.zonefield .page-h,
.zonefield .section-h,
.zonefield .section-heading,
.zonefield .topic-title,
.zonefield .block-action {
  color: #819e3d;
}
.containerwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.containerwrap .row {
  justify-content: space-between;
}
.containerwrap .stub {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .stub {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .stub {
    margin-bottom: 35px;
  }
}.containerwrap .stub .block-title,
.containerwrap .stub .chapter-title,
.containerwrap .stub .header-text,
.containerwrap .stub .lead-h2,
.containerwrap .stub .main-heading,
.containerwrap .stub .page-h,
.containerwrap .stub .section-h,
.containerwrap .stub .section-heading,
.containerwrap .stub .topic-title {
  margin-bottom: 10px;
}
.containerwrap .stub .boxwrap {
  margin-bottom: 10px;
}
.containerwrap .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .list-wrapper {
    margin-bottom: 35px;
  }
}
.containerwrap .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.containerwrap .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.containerwrap .list-wrapper .list .item-wrap:hover,
.containerwrap .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.containerwrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.containerwrap .shelllayer {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .shelllayer {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .shelllayer {
    margin-bottom: 35px;
  }
}
.containerwrap .copy-wrapper .noteunit {
  margin-bottom: 0;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title {
  color: #000000;
}
.containerwrap .boxwrap {
  color: #ffbf76;
}
.containerwrap .list {
  color: #000000;
}
.containerwrap .noteunit {
  color: #000000;
}
.containerwrap .noteunit {
  text-align: center;
  color: #ffffff;
}
.containerwrap .list,
.containerwrap .item-wrap {
  color: #d0e59f;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title,
.containerwrap .block-action {
  color: #8fb9cd;
}
.nodemodule .header-nav {
  position: relative !important;
}
.nodemodule .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.nodemodule .nav-link {
  position: relative;
}
.nodemodule .container {
  display: flex;
  margin: 0 auto;
  max-width: 1284px;
  border-bottom: 1px solid #282828;
}
@media (min-width: 992px) {
  .nodemodule .container {
    flex-wrap: nowrap;
  }
}
.nodemodule .nav-item:focus,
.nodemodule .nav-link:focus {
  outline: none;
}
.nodemodule .navbar {
  min-height: 87px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.nodemodule .navbar .routebox {
  margin-right: 1rem;
}
.nodemodule .navbar .routebox img {
  width: auto;
}
.nodemodule .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .nodemodule .navbar .nav-item .nav-link::before {
    display: none;
  }
  .nodemodule .navbar .routebox img {
    height: 3rem !important;
  }
  .nodemodule .navbar ul.navbar-nav li {
    margin: auto;
  }
  .nodemodule .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .nodemodule .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.nodemodule .navbar-brand {
  min-height: 87px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.nodemodule .navbar-brand .coreunit {
  line-height: inherit !important;
  font-weight: 400;
}
.nodemodule .navbar-brand .coreunit:hover,
.nodemodule .navbar-brand .coreunit:focus {
  color: #ffffff !important;
}
.nodemodule .navbar-brand .routebox a {
  outline: none;
}
.nodemodule .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.nodemodule ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .nodemodule ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.nodemodule button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.nodemodule .header-nav {
  padding: 0 1rem;
}
.nodemodule a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .nodemodule .navbar {
    height: 87px;
  }
  .nodemodule .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.nodemodule .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.nodemodule .nav-item {
  padding: 0;
  margin: 0;
}
.nodemodule .nav-item .nav-link {
  padding: 6px 8px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.nodemodule .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.nodemodule .nav-item .nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background-color: #819e3d;
  transition: all .3s ease;
  opacity: 0;
  z-index: -1;
}
.nodemodule .nav-item .nav-link:hover,
.nodemodule .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.nodemodule .nav-item .nav-link:hover::after,
.nodemodule .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.nodemodule .nav-item .nav-link:hover::before,
.nodemodule .nav-item .nav-link:focus::before {
  transform: scale(1);
  opacity: 1;
}
.nodemodule .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .nodemodule .navbar {
    justify-content: flex-start !important;
  }
  .nodemodule .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .nodemodule .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .nodemodule .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .nodemodule .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .nodemodule .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.nodemodule .shelllayer {
  min-height: 87px;
}
.viewwrap {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.viewwrap .stub {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .viewwrap .stub {
    margin-bottom: 32px;
  }
}
.viewwrap .stub .layoutnode {
  margin-bottom: 32px;
}.viewwrap .stub .contentbox .block-title,
.viewwrap .stub .contentbox .chapter-title,
.viewwrap .stub .contentbox .header-text,
.viewwrap .stub .contentbox .lead-h2,
.viewwrap .stub .contentbox .main-heading,
.viewwrap .stub .contentbox .page-h,
.viewwrap .stub .contentbox .section-h,
.viewwrap .stub .contentbox .section-heading,
.viewwrap .stub .contentbox .topic-title {
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #e38a2a, #353535 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.viewwrap .card-wrapper {
  background-color: #ffffff;
  border-top: 3px solid #d0e59f;
  box-shadow: 0 8px 15px -8px #f6a851;
  padding: 60px 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .viewwrap .card-wrapper {
    padding: 24px;
  }
}
.viewwrap .card-wrapper .item-text {
  margin-bottom: 0;
}.viewwrap .card-wrapper .block-action {
  margin-top: 14px;
}.viewwrap .card-wrapper .block-action .btn {
  margin-bottom: 0;
}

.viewwrap .layoutnode {
  color: #000000;
  text-align: center;
}.viewwrap .block-title,
.viewwrap .chapter-title,
.viewwrap .header-text,
.viewwrap .lead-h2,
.viewwrap .main-heading,
.viewwrap .page-h,
.viewwrap .section-h,
.viewwrap .section-heading,
.viewwrap .topic-title,
.viewwrap .contentbox {
  color: #000000;
  text-align: center;
}
.viewwrap .boxwrap,
.viewwrap .text-wrapper {
  color: #515151;
  text-align: center;
}
.viewwrap .item-text {
  color: #000000;
}.viewwrap .item-text,
.viewwrap .block-action {
  text-align: left;
}
.clipwrap {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}.clipwrap .block-title,
.clipwrap .chapter-title,
.clipwrap .header-text,
.clipwrap .lead-h2,
.clipwrap .main-heading,
.clipwrap .page-h,
.clipwrap .section-h,
.clipwrap .section-heading,
.clipwrap .topic-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {.clipwrap .block-title,
.clipwrap .chapter-title,
.clipwrap .header-text,
.clipwrap .lead-h2,
.clipwrap .main-heading,
.clipwrap .page-h,
.clipwrap .section-h,
.clipwrap .section-heading,
.clipwrap .topic-title {
    margin-bottom: 6.66vw;
  }
}.clipwrap .block-subtitle,
.clipwrap .h-secondary,
.clipwrap .lead-sub,
.clipwrap .section-sub,
.clipwrap .section-tag,
.clipwrap .sub-heading,
.clipwrap .subtitle-text,
.clipwrap .tagline-h {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {.clipwrap .block-subtitle,
.clipwrap .h-secondary,
.clipwrap .lead-sub,
.clipwrap .section-sub,
.clipwrap .section-tag,
.clipwrap .sub-heading,
.clipwrap .subtitle-text,
.clipwrap .tagline-h {
    margin-bottom: 6.66vw;
  }
}
.clipwrap .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .clipwrap .item {
    margin-bottom: 3.2vw;
  }
}
.clipwrap .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #8fb9cd;
}
@media (max-width: 991px) {
  .clipwrap .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .clipwrap .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.clipwrap .boxwrap {
  color: #000000;
}
.containerwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.containerwrap .row {
  justify-content: space-between;
}
.containerwrap .stub {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .stub {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .stub {
    margin-bottom: 35px;
  }
}.containerwrap .stub .block-title,
.containerwrap .stub .chapter-title,
.containerwrap .stub .header-text,
.containerwrap .stub .lead-h2,
.containerwrap .stub .main-heading,
.containerwrap .stub .page-h,
.containerwrap .stub .section-h,
.containerwrap .stub .section-heading,
.containerwrap .stub .topic-title {
  margin-bottom: 10px;
}
.containerwrap .stub .boxwrap {
  margin-bottom: 10px;
}
.containerwrap .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .list-wrapper {
    margin-bottom: 35px;
  }
}
.containerwrap .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.containerwrap .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.containerwrap .list-wrapper .list .item-wrap:hover,
.containerwrap .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.containerwrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.containerwrap .shelllayer {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .containerwrap .shelllayer {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .containerwrap .shelllayer {
    margin-bottom: 35px;
  }
}
.containerwrap .copy-wrapper .noteunit {
  margin-bottom: 0;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title {
  color: #000000;
}
.containerwrap .boxwrap {
  color: #ffbf76;
}
.containerwrap .list {
  color: #000000;
}
.containerwrap .noteunit {
  color: #000000;
}
.containerwrap .noteunit {
  text-align: center;
  color: #ffffff;
}
.containerwrap .list,
.containerwrap .item-wrap {
  color: #d0e59f;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title,
.containerwrap .block-action {
  color: #8fb9cd;
}

.containerwrap {
  background-color: #000000 !important;
}.containerwrap .block-title,
.containerwrap .chapter-title,
.containerwrap .header-text,
.containerwrap .lead-h2,
.containerwrap .main-heading,
.containerwrap .page-h,
.containerwrap .section-h,
.containerwrap .section-heading,
.containerwrap .topic-title,
.containerwrap .list,
.containerwrap .noteunit,
.containerwrap .item-wrap,
.containerwrap .item-wrap strong {
  color: #ffffff !important;
}
.containerwrap .boxwrap {
  color: #ffbf76 !important;
}
.containerwrap .list-wrapper .list .item-wrap a,
.containerwrap .list-wrapper .list .item-wrap a strong {
  color: #ffffff !important;
  text-decoration: none !important;
}
.containerwrap .list-wrapper .list .item-wrap a:hover,
.containerwrap .list-wrapper .list .item-wrap a:focus,
.containerwrap .list-wrapper .list .item-wrap a:hover strong,
.containerwrap .list-wrapper .list .item-wrap a:focus strong {
  color: #ffbf76 !important;
}
.containerwrap .list-wrapper .list .item-wrap {
  color: #ffffff !important;
}.article2.orderm5 .block-subtitle,
.article2.orderm5 .h-secondary,
.article2.orderm5 .lead-sub,
.article2.orderm5 .section-sub,
.article2.orderm5 .section-tag,
.article2.orderm5 .sub-heading,
.article2.orderm5 .subtitle-text,
.article2.orderm5 .tagline-h {
  margin-top: 2rem !important;
  margin-bottom: 0.65rem !important;
}.article2.orderm5 .block-subtitle:first-child,
.article2.orderm5 .h-secondary:first-child,
.article2.orderm5 .lead-sub:first-child,
.article2.orderm5 .section-sub:first-child,
.article2.orderm5 .section-tag:first-child,
.article2.orderm5 .sub-heading:first-child,
.article2.orderm5 .subtitle-text:first-child,
.article2.orderm5 .tagline-h:first-child {
  margin-top: 0 !important;
}
.article2.orderm5 .boxwrap {
  margin-bottom: 0 !important;
  line-height: 1.65 !important;
}
.article03.supportm5 .card-wrapper {
  border-radius: 12px;
}

.flowunit {
  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;
}

.flowunit *,
.flowunit *::before,
.flowunit *::after {
  box-sizing: border-box;
}

.holder {
  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;
}

.holder::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%);
}

.holder::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;
}

.domtrack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
}

.partwrapbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-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);
}

.bar-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.formgrid {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.areawrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stack {
  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;
}

.inner {
  display: inline-block;
  color: #3d2c22;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.corewrap {
  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;
}

.gridcore {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.info-links-label {
  display: block;
  color: #7a6b60;
  font-size: 12px;
  line-height: 1.4;
}

.meta-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.meta-links-row 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;
}

.meta-links-row a:hover {
  color: #7c4c2c;
  border-bottom-color: #7c4c2c;
}

.meta-links-row span {
  display: inline-block;
  color: #7a6b60;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.nodeband {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#infoClose {
  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);
}

#infoClose:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .flowunit {
    width: min(680px, calc(100vw - 28px));
    max-width: 680px;
  }

  .domtrack {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .nodeband {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #infoClose {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .flowunit {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
  }

  .holder {
    padding: 16px;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .domtrack {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partwrapbox {
    justify-content: center;
  }

  .formgrid {
    align-items: center;
    text-align: center;
  }

  .areawrap {
    justify-content: center;
  }

  .inner {
    text-align: center;
    font-size: 18px;
  }

  .corewrap {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .gridcore {
    align-items: center;
    text-align: center;
  }

  .meta-links-row {
    justify-content: center;
  }

  .nodeband {
    flex-direction: column;
    width: 100%;
  }

  #infoClose {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .flowunit {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .holder {
    padding: 14px;
    border-radius: 18px;
  }

  .bar-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .bar-icon {
    width: 38px;
    height: 38px;
  }

  .inner {
    font-size: 17px;
  }

  .info-links-label,
  .meta-links-row a,
  .meta-links-row span {
    font-size: 12px;
  }
}

.fieldlayer { padding: 0 !important; background: transparent; }
.layoutunit {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #111111;
}
.side-wrapper {
  padding: 44px 44px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.page-entry {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(167,139,250,0.8);
  color: #a78bfa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.row-chip {
  margin: 0 0 14px;
  color: #111111;
  font-size: 38px;
  line-height: 1.06;
  font-weight: 800;
}
.soft-field {
  margin: 0 0 28px;
  color: rgba(17,17,17,0.78);
  font-size: 15px;
  line-height: 1.8;
}
.line-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.shellwrap {
  padding: 14px 18px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(167,139,250,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-sharp-top {
  display: block;
  color: #a78bfa;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
}
.stack-left-panel {
  display: block;
  color: rgba(17,17,17,0.72);
  font-size: 13px;
  line-height: 1.65;
}
.mainsegment {
  padding: 32px 44px 44px;
}
.mainsegment *,
.mainsegment *::before,
.mainsegment *::after {
  box-sizing: border-box;
}
.mainsegment [hidden] {
  display: none !important;
}
.gridnode {
  margin-bottom: 22px;
  padding: 13px 16px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid;
}
.desk-outer {
  background: rgba(220,50,50,0.12);
  border-color: rgba(220,50,50,0.35);
  color: #7f1d1d;
}
.menu-wrapper {
  background: rgba(167,139,250,0.12);
  border-color: rgba(167,139,250,0.4);
  color: #5b21b6;
}
.containbox {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 22px;
}
.dark-flag {
  grid-column: 1 / -1;
}
.packunit {
  display: block;
  margin-bottom: 8px;
  color: #111111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.region {
  color: rgba(17,17,17,0.52);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.neutralwrap {
  width: 100%;
  padding: 13px 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.14);
  color: #111111;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.neutralwrap::placeholder {
  color: rgba(17,17,17,0.38);
}
.neutralwrap:focus {
  border-color: rgba(167,139,250,0.7);
  background: #ffffff;
}
.nodecol {
  cursor: pointer;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a78bfa'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.nodecol option {
  background: #ffffff;
  color: #111111;
}
textarea.neutralwrap {
  min-height: 160px;
  resize: vertical;
}
.unit-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.box-panel {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #a78bfa;
  cursor: pointer;
}
.area-bold-slot {
  color: rgba(17,17,17,0.78);
  font-size: 13px;
  line-height: 1.75;
}
.area-bold-slot a {
  color: #a78bfa;
  text-decoration: underline;
}
.line-badge {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #c3512c, #ff6b3e);
  border: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
.line-badge:hover {
  opacity: 0.86;
}
.bar {
  margin: 0;
  color: rgba(17,17,17,0.62);
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 860px) {
  .fieldlayer { padding: 0 12px !important; }
  .side-wrapper,
  .mainsegment {
    padding-left: 20px;
    padding-right: 20px;
  }
  .containbox,
  .line-item {
    grid-template-columns: 1fr;
  }
  .row-chip {
    font-size: 28px;
  }
}

.quiz-section {
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/quiet2.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 440px;
  padding: 36px 30px;
  border-radius: 18px;
  background: rgba(20, 22, 38, 0.74);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  color: #eef1f8;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.quiz-title {
  margin: 0 0 6px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.quiz-subtitle {
  margin: 0 0 26px;
  text-align: center;
  font-size: 14px;
  color: #aab2c8;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #cdd4e6;
}

.quiz-field {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f6fc;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz-field:focus {
  outline: none;
  border-color: #7c5cff;
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25);
}

.quiz-field option {
  color: #16182a;
}

.quiz-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(to right, #ff681c, #ff651d);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.35);
}

.quiz-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.45);
}

.flowunit {
  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;
}

.flowunit *,
.flowunit *::before,
.flowunit *::after {
  box-sizing: border-box;
}

.flowunit.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.flowunit.out {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.985);
}

.holder {
  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;
}

.holder::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%);
}

.holder::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;
}

.domtrack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
}

.partwrapbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-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);
}

.bar-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.formgrid {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.areawrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stack {
  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;
}

.inner {
  display: inline-block;
  color: #3d2c22;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.corewrap {
  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;
}

.gridcore {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.info-links-label {
  display: block;
  color: #7a6b60;
  font-size: 12px;
  line-height: 1.4;
}

.meta-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.meta-links-row 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;
}

.meta-links-row a:hover {
  color: #7c4c2c;
  border-bottom-color: #7c4c2c;
}

.meta-links-row span {
  display: inline-block;
  color: #7a6b60;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.nodeband {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#infoClose {
  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);
}

#infoClose:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .flowunit {
    width: min(680px, calc(100vw - 28px));
    max-width: 680px;
  }

  .domtrack {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .nodeband {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #infoClose {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .flowunit {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
  }

  .holder {
    padding: 16px;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .domtrack {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partwrapbox {
    justify-content: center;
  }

  .formgrid {
    align-items: center;
    text-align: center;
  }

  .areawrap {
    justify-content: center;
  }

  .inner {
    text-align: center;
    font-size: 18px;
  }

  .corewrap {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .gridcore {
    align-items: center;
    text-align: center;
  }

  .meta-links-row {
    justify-content: center;
  }

  .nodeband {
    flex-direction: column;
    width: 100%;
  }

  #infoClose {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .flowunit {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .holder {
    padding: 14px;
    border-radius: 18px;
  }

  .bar-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .bar-icon {
    width: 38px;
    height: 38px;
  }

  .inner {
    font-size: 17px;
  }

  .info-links-label,
  .meta-links-row a,
  .meta-links-row 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='%23738b39' 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%;
}
