:root {

  --site-primary-rgb: 13, 110, 253;
  --site-secondary-rgb: 108, 117, 125;
  --site-white-rgb: 255, 255, 255;
  --site-body-font-family: var(--site-font-sans-serif);
  --site-body-font-size: 1rem;
  --site-body-font-weight: 400;
  --site-body-line-height: 1.5;
  --site-body-color: #212529;
  --site-body-color-rgb: 33, 37, 41;
  --site-body-bg: #fff;
  --site-emphasis-color-rgb: 0, 0, 0;
  --site-secondary-color: rgba(33, 37, 41, 0.75);
  --site-heading-color: inherit;
  --site-link-color: #0d6efd;
  --site-link-color-rgb: 13, 110, 253;
  --site-link-hover-color: #0a58ca;
  --site-link-hover-color-rgb: 10, 88, 202;
  --site-border-width: 1px;
  --site-border-color-translucent: rgba(0, 0, 0, 0.175);
  --site-border-radius: 0.375rem;
  --site-border-radius-sm: 0.25rem;
  --site-border-radius-lg: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--site-body-font-family);
  font-size: var(--site-body-font-size);
  font-weight: var(--site-body-font-weight);
  line-height: var(--site-body-line-height);
  color: var(--site-body-color);
  text-align: var(--site-body-text-align);
  background-color: var(--site-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

 h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--site-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

a {
  color: rgba(var(--site-link-color-rgb), var(--site-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --site-link-color-rgb: var(--site-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.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%;
  }
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.m-auto {
  margin: auto !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-primary {
  --site-text-opacity: 1;
  color: rgba(var(--site-primary-rgb), var(--site-text-opacity)) !important;
}

.text-secondary {
  --site-text-opacity: 1;
  color: rgba(var(--site-secondary-rgb), var(--site-text-opacity)) !important;
}

.text-white {
  --site-text-opacity: 1;
  color: rgba(var(--site-white-rgb), var(--site-text-opacity)) !important;
}

.site-nav {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .site-nav .spanbox {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .site-nav .spanbox img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
  .site-nav .trunk {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .site-nav .trunk, .site-nav .trunk:hover {
      color: inherit;
      text-decoration: none; }
  .site-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; }

@font-face {
  font-family: 'Socicon';
  src: url('fonts/extricons.woff2') format('woff2'), url('fonts/extricons.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

section {
  background-color: #ffffff;
}

body {
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  color: #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;
}.lead-sub,
.section-sub,
.sub-heading {
  line-height: 1.3;
}

.partbox {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-4,
.display-5,
.bound,
span,
p,
a {
  line-height: 1;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}

b,
strong {
  font-weight: bold;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  transition-delay: 9999s;
  transition-property: background-color, color;
}

textarea[type=hidden] {
  display: none;
}

section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hidden {
  visibility: hidden;
}

.packunit {
  color: #ffffff;
}

.framebox {
  color: #111111;
}

.area {
  text-align: left;
}

.boxsegment {
  text-align: center;
}

.gridcell {
  font-weight: 400;
}

.layoutrow {
  font-weight: 500;
}

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-box {
  width: 100%;
}.block-action,
.cta-link,
.lead-btn,
.main-btn,
.page-btn,
.primary-cta,
.section-action,
.section-cta {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  font-size: 0;
}

.btn {
  font-weight: 600;
  border-width: 1px;
  font-style: normal;
  margin: 0.6rem 0.6rem;
  white-space: normal;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}

.btn-sm {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-md {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-lg {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-form {
  margin: 0;
}
.btn-form:hover {
  cursor: pointer;
}nav .block-action,
nav .cta-link,
nav .lead-btn,
nav .main-btn,
nav .page-btn,
nav .primary-cta,
nav .section-action,
nav .section-cta {
  margin-left: 0rem;
  margin-right: 0rem;
}

.gridcell {
  font-weight: 400;
}

.layoutrow {
  font-weight: 500;
}

@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 .spanbox img {
  display: flex;
  width: auto;
}
@media (max-width: 991px) {
  .menu .navbar-collapse {
    max-height: 93.5vh;
  }
  .menu .navbar-collapse.show {
    overflow: auto;
  }
}
@media (min-width: 992px) {
  .menu .navbar-nav.nav-dropdown {
    display: flex;
  }
}
@media (max-width: 767px) {
  .menu .navbar-collapse {
    max-height: 80vh;
  }
}

.navbar {
  display: flex;
  }

.navbar-collapse {
  }

.nav-dropdown .link {
  padding: 0.667em 1.667em !important;
  margin: 0 !important;
}

.nav {
  display: flex;
  }

.row {
  display: flex;
  }

.justify-content-center {
  }

.card-wrapper {
  }

.navbar-toggler {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
  box-shadow: none;
}

html,
body {
  height: auto;
  min-height: 100vh;
}

.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
  text-align: center;
}

.row > * {
  padding-right: 1rem;
  padding-left: 1rem;
}

form .row {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
form .row [class*=col] {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}form .block-action,
form .cta-link,
form .lead-btn,
form .main-btn,
form .page-btn,
form .primary-cta,
form .section-action,
form .section-cta {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .btn {
  min-height: 48px;
}

ul,
ol {
  margin-bottom: 2.3125rem;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.container,
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > [class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.item {
  position: relative;
}
@font-face {
  font-family: 'distribution2';
  font-display: swap;
  src: url('fonts/grid2.woff2') format('woff2'), url('fonts/grid2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.btn {
  border-width: 2px;
}
body {
  font-family: Reddit Sans;
}
.display-1 {
  font-family: 'Reddit Sans', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
}
.display-2 {
  font-family: 'Reddit Sans', sans-serif;
  font-size: 3.6rem;
  line-height: 1;
}
.display-4 {
  font-family: 'Reddit Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
}
.display-5 {
  font-family: 'Reddit Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.bound {
  font-family: 'Reddit Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.15;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .bound {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((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: #404349 !important;
  border-color: #404349 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus {
  color: inherit;
  background-color: #585c64 !important;
  border-color: #585c64 !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #585c64 !important;
  border-color: #585c64 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info,
.btn-info:active {
  background-color: #9d8565 !important;
  border-color: #9d8565 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus {
  color: inherit;
  background-color: #b19e84 !important;
  border-color: #b19e84 !important;
  box-shadow: none;
}

.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b19e84 !important;
  border-color: #b19e84 !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff1e2 !important;
  border-color: #fff1e2 !important;
  color: #e27500 !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #e27500 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #534636 !important;
  border-color: #534636 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus {
  color: inherit;
  background-color: #72604a !important;
  border-color: #72604a !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #72604a !important;
  border-color: #72604a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #dbc5ad !important;
  border-color: #dbc5ad !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus {
  color: inherit;
  background-color: #ebded0 !important;
  border-color: #ebded0 !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ebded0 !important;
  border-color: #ebded0 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f7f7f7 !important;
  border-color: #f7f7f7 !important;
  color: #787878 !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: #787878 !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: #404349;
  color: #404349;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  color: #17191b !important;
  background-color: transparent !important;
  border-color: #17191b !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #404349 !important;
  border-color: #404349 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #9d8565;
  color: #9d8565;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  color: #695843 !important;
  background-color: transparent !important;
  border-color: #695843 !important;
  box-shadow: none !important;
}

.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #9d8565 !important;
  border-color: #9d8565 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #fff1e2;
  color: #fff1e2;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  color: #ffc78b !important;
  background-color: transparent !important;
  border-color: #ffc78b !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #e27500 !important;
  background-color: #fff1e2 !important;
  border-color: #fff1e2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #534636;
  color: #534636;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  color: #1e1a14 !important;
  background-color: transparent !important;
  border-color: #1e1a14 !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #534636 !important;
  border-color: #534636 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #dbc5ad;
  color: #dbc5ad;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  color: #c19a71 !important;
  background-color: transparent !important;
  border-color: #c19a71 !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #dbc5ad !important;
  border-color: #dbc5ad !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-primary {
  color: #404349 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #101113 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #c7c7c7 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
a,
a:hover {
  color: #404349;
}

html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}.block-action .btn,
.cta-link .btn,
.lead-btn .btn,
.main-btn .btn,
.page-btn .btn,
.primary-cta .btn,
.section-action .btn,
.section-cta .btn {
  justify-content: space-between;
  padding: 10px 10px 10px 30px;
  border-radius: 12px !important;
  font-weight: 400 !important;
  border-radius: 0 !important;
  padding: 10px 15px;
}
.zoneunitbox,
.nav-item {
  border-radius: 100px;
  border-radius: 0 !important;
}
img,
.card-wrap,
.card-wrapper,
.card,
.item-wrapper,
.tile,
.desc-wrap,
.item-content,
.gridrowunit {
  border-radius: 1rem !important;
}.banner .block-action .btn,
.banner .cta-link .btn,
.banner .lead-btn .btn,
.banner .main-btn .btn,
.banner .page-btn .btn,
.banner .primary-cta .btn,
.banner .section-action .btn,
.banner .section-cta .btn {
  width: auto !important;
  padding: 10px 15px;
  justify-content: center;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.contentunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .contentunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.contentunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.contentunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.contentunit .navbar-brand .trunk {
  line-height: inherit !important;
}
.contentunit .navbar-brand .spanbox a {
  outline: none;
}
.contentunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.contentunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.contentunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.contentunit .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
@media (min-width: 992px) {
  .contentunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.contentunit .nav-link {
  width: fit-content;
  position: relative;
}
.contentunit .nav-link:hover {
  color: #fff1e2 !important;
}
.contentunit .spanbox {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .contentunit .spanbox {
    padding-left: 1rem;
  }
}
.contentunit .trunk {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.contentunit .trunk:hover,
.contentunit .trunk:focus {
  color: #fff1e2 !important;
}
@media (max-width: 767px) {
  .contentunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.contentunit .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #9d8565;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.contentunit .nav-item:focus,
.contentunit .nav-link:focus {
  outline: none;
}
.contentunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.contentunit .navbar .spanbox img {
  width: auto;
}
.contentunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .contentunit .navbar .navbar-collapse {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .contentunit .navbar {
    min-height: 72px;
  }
  .contentunit .navbar .spanbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .contentunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .contentunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .contentunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.contentunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.contentunit ul.navbar-nav {
  flex-wrap: wrap;
}
.contentunit .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .contentunit .navbar-buttons {
    text-align: left;
  }
}
.contentunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.contentunit .site-nav {
  padding: 0 1rem;
}
.contentunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contentunit .navbar {
    height: 70px;
  }
  .contentunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
    padding-left: 0;
  }
}.contentunit .block-action .btn,
.contentunit .cta-link .btn,
.contentunit .lead-btn .btn,
.contentunit .main-btn .btn,
.contentunit .page-btn .btn,
.contentunit .primary-cta .btn,
.contentunit .section-action .btn,
.contentunit .section-cta .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.contentunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .contentunit .navbar-brand {
    margin-right: auto;
  }
  .contentunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #9d8565;
    border-radius: 4px !important;
  }
  .contentunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .contentunit .navbar-collapse {
    padding: 1rem;
  }
}
.contentunit .navbar-brand,
.contentunit .navbar-toggler,
.contentunit .navbar-collapse {
  position: relative;
  z-index: 1;
}
.mainbox {
  background-color: #f8e7d2;
}
.mainbox .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.mainbox .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mainbox .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mainbox .corepad {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .mainbox .corepad {
    flex-wrap: wrap;
  }
}
.mainbox .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 65%;
}
@media (max-width: 991px) {
  .mainbox .img-container {
    width: 100%;
    order: 3;
  }
}
.mainbox .linedock {
  width: 100%;
  height: 100%;
}
.mainbox .linedock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainbox .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 35%;
  padding: 0 5.6% 0  5.6%;
  min-height: 640px;
  padding-top: 9rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .mainbox .text-container {
    width: 100%;
    padding: 0 16% 0  16%;
    min-height: 0;
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
}.mainbox .block-title,
.mainbox .chapter-title,
.mainbox .header-text,
.mainbox .lead-h2,
.mainbox .main-heading,
.mainbox .page-h,
.mainbox .section-h,
.mainbox .section-heading,
.mainbox .topic-title {
  color: #534636;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {.mainbox .block-title,
.mainbox .chapter-title,
.mainbox .header-text,
.mainbox .lead-h2,
.mainbox .main-heading,
.mainbox .page-h,
.mainbox .section-h,
.mainbox .section-heading,
.mainbox .topic-title {
    text-align: center !important;
  }
}
.mainbox .partbox {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .mainbox .partbox {
    text-align: center !important;
  }
}.mainbox .block-action,
.mainbox .cta-link,
.mainbox .lead-btn,
.mainbox .main-btn,
.mainbox .page-btn,
.mainbox .primary-cta,
.mainbox .section-action,
.mainbox .section-cta {
  margin-top: 10px;
}
@media (max-width: 767px) {.mainbox .block-action,
.mainbox .cta-link,
.mainbox .lead-btn,
.mainbox .main-btn,
.mainbox .page-btn,
.mainbox .primary-cta,
.mainbox .section-action,
.mainbox .section-cta {
    text-align: center !important;
  }
}.mainbox .partbox,
.mainbox .block-action,
.mainbox .cta-link,
.mainbox .lead-btn,
.mainbox .main-btn,
.mainbox .page-btn,
.mainbox .primary-cta,
.mainbox .section-action,
.mainbox .section-cta {
  color: #252525;
  text-align: center;
}
.topbox {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #534636;
}
.topbox .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .topbox .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.topbox .col-title,
.topbox .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}.topbox .block-title,
.topbox .chapter-title,
.topbox .header-text,
.topbox .lead-h2,
.topbox .main-heading,
.topbox .page-h,
.topbox .section-h,
.topbox .section-heading,
.topbox .topic-title {
  color: #f7f7f7;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {.topbox .block-title,
.topbox .chapter-title,
.topbox .header-text,
.topbox .lead-h2,
.topbox .main-heading,
.topbox .page-h,
.topbox .section-h,
.topbox .section-heading,
.topbox .topic-title {
    text-align: center !important;
  }
}.topbox .lead-sub,
.topbox .section-sub,
.topbox .sub-heading {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {.topbox .lead-sub,
.topbox .section-sub,
.topbox .sub-heading {
    text-align: center !important;
  }
}
.topbox .partbox {
  color: #f7f7f7;
  margin-bottom: 0.9rem !important;
  text-align: center;
}
@media (max-width: 767px) {
  .topbox .partbox {
    text-align: center !important;
  }
}
.boxwrap {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f8e7d2;
}
.boxwrap .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .boxwrap .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .boxwrap .container {
    padding: 0 20px;
  }
}
.boxwrap .row {
  margin: 0;
}
@media (max-width: 992px) {
  .boxwrap .row .modlayer {
    margin-bottom: 50px;
    height: auto;
  }
}.boxwrap .row .modlayer .block-title,
.boxwrap .row .modlayer .chapter-title,
.boxwrap .row .modlayer .header-text,
.boxwrap .row .modlayer .lead-h2,
.boxwrap .row .modlayer .main-heading,
.boxwrap .row .modlayer .page-h,
.boxwrap .row .modlayer .section-h,
.boxwrap .row .modlayer .section-heading,
.boxwrap .row .modlayer .topic-title {
  margin-bottom: 32px;
}.boxwrap .row .modlayer .lead-sub,
.boxwrap .row .modlayer .section-sub,
.boxwrap .row .modlayer .sub-heading {
  margin-bottom: 32px;
}
.boxwrap .row .modlayer .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-position: inside;
}
.boxwrap .row .modlayer .list .item-wrap {
  margin-bottom: 0;
}
.boxwrap .row .linedock {
  position: relative;
}
.boxwrap .row .linedock img {
  height: 320px;
  object-fit: cover;
  border-radius: 50px;
}.boxwrap .block-title,
.boxwrap .chapter-title,
.boxwrap .header-text,
.boxwrap .lead-h2,
.boxwrap .main-heading,
.boxwrap .page-h,
.boxwrap .section-h,
.boxwrap .section-heading,
.boxwrap .topic-title {
  color: #534636;
  text-align: center;
}.boxwrap .lead-sub,
.boxwrap .section-sub,
.boxwrap .sub-heading {
  color: #f5fd7b;
}
.boxwrap .list {
  color: #252525;
  text-align: center;
}
.frame {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #dbc5ad;
}
.frame .col-title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .frame .col-title {
    padding: 0 30px !important;
  }
}.frame .block-title,
.frame .chapter-title,
.frame .header-text,
.frame .lead-h2,
.frame .main-heading,
.frame .page-h,
.frame .section-h,
.frame .section-heading,
.frame .topic-title {
  color: #534636;
  width: 100%;
}.frame .lead-sub,
.frame .section-sub,
.frame .sub-heading {
  color: #534636;
  margin-top: 20px;
  width: 100%;
}
.frame .panebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 !important;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .frame .panebox {
    padding: 0 20px !important;
  }
}
.frame .card-box {
  display: flex;
  max-width: 540px;
  padding: 10px 10px 40px 10px;
  margin: 0 auto;
}
.frame .card-text {
  color: #252525;
  margin-bottom: 0.9rem !important;
  width: 100%;
}
.partunit {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #f8e7d2;
}
.partunit .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .partunit .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .partunit .container {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .partunit .nodeband {
    margin-bottom: 66px;
  }
}
.partunit .nodeband .tile {
  margin-bottom: 66px;
}
.partunit .nodeband .tile .desc-wrap .zoneunitbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  margin-bottom: 16px;
  background-color: #dddada;
}.partunit .nodeband .tile .block-title,
.partunit .nodeband .tile .chapter-title,
.partunit .nodeband .tile .header-text,
.partunit .nodeband .tile .lead-h2,
.partunit .nodeband .tile .main-heading,
.partunit .nodeband .tile .page-h,
.partunit .nodeband .tile .section-h,
.partunit .nodeband .tile .section-heading,
.partunit .nodeband .tile .topic-title {
  margin-bottom: 16px;
}
.partunit .nodeband .tile .text-wrap .partbox {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .partunit .nodeband .tile .text-wrap .partbox {
    width: 100%;
  }
}
.partunit .nodeband .card-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .partunit .nodeband .card-wrapper {
    display: block;
  }
}
.partunit .nodeband .card-wrapper .scaffold {
  position: relative;
  width: 72px;
  display: inline-flex;
  justify-content: center;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .partunit .nodeband .card-wrapper .scaffold {
    margin: 0;
    display: block;
    width: 100%;
    margin-bottom: 28px;
  }
}
.partunit .nodeband .card-wrapper .scaffold .group {
  position: relative;
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #534636;
  border-radius: 100%;
  z-index: 1;
  margin-bottom: 0;
}
.partunit .nodeband .card-wrapper .scaffold::before {
  content: '';
  position: absolute;
  top: 1px;
  width: 1px;
  height: 200vh;
  background-color: #534636;
  opacity: .33;
}
@media (max-width: 992px) {
  .partunit .nodeband .card-wrapper .scaffold::before {
    display: none;
  }
}
.partunit .nodeband .card-wrapper .card-wrap .card-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .partunit .nodeband .card-wrapper .card-wrap .card-title {
    margin-bottom: 28px;
  }
}
.partunit .nodeband .card-wrapper .card-wrap .card-text {
  margin-bottom: 0;
}
.partunit .linedock {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .partunit .linedock {
    justify-content: center;
  }
}
.partunit .linedock .inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border: 1px solid #534636;
  border-radius: 3rem !important;
}
@media (max-width: 992px) {
  .partunit .linedock .inner {
    border-radius: 2rem !important;
  }
}
.partunit .linedock .inner img {
  width: 300px;
  height: 600px;
  border-radius: 3rem !important;
  border: 10px solid #534636;
  object-fit: cover;
}
@media (max-width: 992px) {
  .partunit .linedock .inner img {
    width: 200px;
    height: 400px;
    border-radius: 2rem !important;
    border: 6px solid #534636;
  }
}
.partunit .zoneunitbox {
  color: #202020;
}.partunit .block-title,
.partunit .chapter-title,
.partunit .header-text,
.partunit .lead-h2,
.partunit .main-heading,
.partunit .page-h,
.partunit .section-h,
.partunit .section-heading,
.partunit .topic-title {
  color: #534636;
  text-align: center;
}
.partunit .partbox {
  color: #ffffff;
}
.partunit .card-title {
  color: #534636;
  text-align: center;
}
.partunit .card-text {
  color: #000000;
  text-align: center;
}
.partunit .partbox,
.partunit .text-wrap {
  color: #252525;
  text-align: center;
}
.partunit .zoneunitbox,
.partunit .desc-wrap {
  color: #000000;
}
.partunit .group,
.partunit .scaffold {
  color: #534636;
}
.alignwrap {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #dbc5ad;
  overflow: hidden;
}
.alignwrap .nodeband {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .alignwrap .nodeband {
    padding: 0 16px;
  }
}
.alignwrap .nodeband::before,
.alignwrap .nodeband::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 1000vh;
  background-color: #534636;
}
.alignwrap .nodeband::before {
  left: 0;
}
.alignwrap .nodeband::after {
  right: 0;
}
.alignwrap .tile {
  width: -webkit-fill-available;
  min-width: -moz-available;
}
.alignwrap .modlayer {
  margin-bottom: 40px;
}
.alignwrap .formcore {
  margin-bottom: 24px;
  color: #534636;
  text-align: center;
}.alignwrap .block-title,
.alignwrap .chapter-title,
.alignwrap .header-text,
.alignwrap .lead-h2,
.alignwrap .main-heading,
.alignwrap .page-h,
.alignwrap .section-h,
.alignwrap .section-heading,
.alignwrap .topic-title {
  margin-bottom: 24px;
  color: #534636;
  text-align: center;
}
.alignwrap .text-wrapper .partbox {
  display: inline-block;
  width: 35%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .alignwrap .text-wrapper .partbox {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .alignwrap .text-wrapper .partbox {
    width: 100%;
  }
}
.alignwrap .item {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .alignwrap .item:last-child {
    margin-bottom: 0;
  }
}
.alignwrap .item .item-wrapper {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #fff1e2;
}
@media (max-width: 992px) {
  .alignwrap .item .item-wrapper {
    display: block;
    padding: 24px 16px;
  }
}
.alignwrap .item .item-wrapper .item-content {
  width: 50%;
}
@media (max-width: 992px) {
  .alignwrap .item .item-wrapper .item-content {
    width: 100%;
  }
}
.alignwrap .item .item-wrapper .item-content .item-title {
  margin-bottom: 8px;
}
.alignwrap .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {.alignwrap .item .item-wrapper .block-action,
.alignwrap .item .item-wrapper .cta-link,
.alignwrap .item .item-wrapper .lead-btn,
.alignwrap .item .item-wrapper .main-btn,
.alignwrap .item .item-wrapper .page-btn,
.alignwrap .item .item-wrapper .primary-cta,
.alignwrap .item .item-wrapper .section-action,
.alignwrap .item .item-wrapper .section-cta {
    margin-top: 16px;
  }
}.alignwrap .card-wrap .block-action,
.alignwrap .card-wrap .cta-link,
.alignwrap .card-wrap .lead-btn,
.alignwrap .card-wrap .main-btn,
.alignwrap .card-wrap .page-btn,
.alignwrap .card-wrap .primary-cta,
.alignwrap .card-wrap .section-action,
.alignwrap .card-wrap .section-cta {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {.alignwrap .card-wrap .block-action,
.alignwrap .card-wrap .cta-link,
.alignwrap .card-wrap .lead-btn,
.alignwrap .card-wrap .main-btn,
.alignwrap .card-wrap .page-btn,
.alignwrap .card-wrap .primary-cta,
.alignwrap .card-wrap .section-action,
.alignwrap .card-wrap .section-cta {
    margin-bottom: 24px;
  }
}.alignwrap .card-wrap .block-action .btn,
.alignwrap .card-wrap .cta-link .btn,
.alignwrap .card-wrap .lead-btn .btn,
.alignwrap .card-wrap .main-btn .btn,
.alignwrap .card-wrap .page-btn .btn,
.alignwrap .card-wrap .primary-cta .btn,
.alignwrap .card-wrap .section-action .btn,
.alignwrap .card-wrap .section-cta .btn {
  width: 100%;
  margin-top: 0;
  padding: 22px 45px;
}
@media (max-width: 992px) {.alignwrap .card-wrap .block-action .btn,
.alignwrap .card-wrap .cta-link .btn,
.alignwrap .card-wrap .lead-btn .btn,
.alignwrap .card-wrap .main-btn .btn,
.alignwrap .card-wrap .page-btn .btn,
.alignwrap .card-wrap .primary-cta .btn,
.alignwrap .card-wrap .section-action .btn,
.alignwrap .card-wrap .section-cta .btn {
    padding: 15px 25px;
  }
}
.alignwrap .btn-wrapper {
  margin-top: -2%;
}
.alignwrap .partbox,
.alignwrap .text-wrapper {
  color: #252525;
  text-align: center;
}
.alignwrap .item-title {
  color: #534636;
}
.alignwrap .item-text {
  color: #252525;
}
.zoneunit {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #534636;
}
.zoneunit .card {
  justify-content: center;
}
.zoneunit .nodeband {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nodeband {
    margin-bottom: 40px;
  }
}.zoneunit .nodeband .block-title,
.zoneunit .nodeband .chapter-title,
.zoneunit .nodeband .header-text,
.zoneunit .nodeband .lead-h2,
.zoneunit .nodeband .main-heading,
.zoneunit .nodeband .page-h,
.zoneunit .nodeband .section-h,
.zoneunit .nodeband .section-heading,
.zoneunit .nodeband .topic-title {
  margin-bottom: 16px;
}
.zoneunit .nodeband .partbox {
  margin-bottom: 0;
}.zoneunit .nodeband .block-action,
.zoneunit .nodeband .cta-link,
.zoneunit .nodeband .lead-btn,
.zoneunit .nodeband .main-btn,
.zoneunit .nodeband .page-btn,
.zoneunit .nodeband .primary-cta,
.zoneunit .nodeband .section-action,
.zoneunit .nodeband .section-cta {
  margin-top: 24px;
}.zoneunit .nodeband .block-action .btn,
.zoneunit .nodeband .cta-link .btn,
.zoneunit .nodeband .lead-btn .btn,
.zoneunit .nodeband .main-btn .btn,
.zoneunit .nodeband .page-btn .btn,
.zoneunit .nodeband .primary-cta .btn,
.zoneunit .nodeband .section-action .btn,
.zoneunit .nodeband .section-cta .btn {
  margin-bottom: 0;
}
.zoneunit .nav-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nav-wrapper {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.zoneunit .nav-wrapper .nav-wrap {
  width: 40%;
}
.zoneunit .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:hover,
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #fff1e2;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.zoneunit .domcore {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}
.zoneunit .partbox,
.zoneunit .text-wrapper {
  color: #ffffff;
}
.zoneunit .list {
  color: #808080;
}
.zoneunit .list,
.zoneunit .item-wrap {
  color: #ffffff;
  text-align: center;
}
.contentunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .contentunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.contentunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.contentunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.contentunit .navbar-brand .trunk {
  line-height: inherit !important;
}
.contentunit .navbar-brand .spanbox a {
  outline: none;
}
.contentunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.contentunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.contentunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.contentunit .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
@media (min-width: 992px) {
  .contentunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.contentunit .nav-link {
  width: fit-content;
  position: relative;
}
.contentunit .nav-link:hover {
  color: #fff1e2 !important;
}
.contentunit .spanbox {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .contentunit .spanbox {
    padding-left: 1rem;
  }
}
.contentunit .trunk {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.contentunit .trunk:hover,
.contentunit .trunk:focus {
  color: #fff1e2 !important;
}
@media (max-width: 767px) {
  .contentunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.contentunit .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #9d8565;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.contentunit .nav-item:focus,
.contentunit .nav-link:focus {
  outline: none;
}
.contentunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.contentunit .navbar .spanbox img {
  width: auto;
}
.contentunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .contentunit .navbar .navbar-collapse {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .contentunit .navbar {
    min-height: 72px;
  }
  .contentunit .navbar .spanbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .contentunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .contentunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .contentunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.contentunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.contentunit ul.navbar-nav {
  flex-wrap: wrap;
}
.contentunit .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .contentunit .navbar-buttons {
    text-align: left;
  }
}
.contentunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.contentunit .site-nav {
  padding: 0 1rem;
}
.contentunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contentunit .navbar {
    height: 70px;
  }
  .contentunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
    padding-left: 0;
  }
}.contentunit .block-action .btn,
.contentunit .cta-link .btn,
.contentunit .lead-btn .btn,
.contentunit .main-btn .btn,
.contentunit .page-btn .btn,
.contentunit .primary-cta .btn,
.contentunit .section-action .btn,
.contentunit .section-cta .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.contentunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .contentunit .navbar-brand {
    margin-right: auto;
  }
  .contentunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #9d8565;
    border-radius: 4px !important;
  }
  .contentunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .contentunit .navbar-collapse {
    padding: 1rem;
  }
}
.contentunit .navbar-brand,
.contentunit .navbar-toggler,
.contentunit .navbar-collapse {
  position: relative;
  z-index: 1;
}
.frameunit {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #534636;
}
.frameunit .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #f8e7d2;
}
.frameunit img {
  width: 100%;
}
.frameunit p {
  margin-top: 6rem;
}
.frameunit .nodeband {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.frameunit .nodeband {
  padding-top: 6rem;
}
.frameunit h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .frameunit .nodeband {
    padding-top: 0rem;
  }
  .frameunit p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .frameunit .back {
    width: 100%;
    height: 75%;
  }
  .frameunit .nodeband {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .frameunit p {
    margin-top: 4rem;
  }
}
.frameunit .nodeband {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .frameunit .nodeband {
    padding: 0rem;
    padding-top: 4rem;
  }
  .frameunit .nodeband {
    padding-right: 3rem;
  }
  .frameunit h4 {
    right: 2rem;
  }
}.frameunit .partbox,
.frameunit .block-action,
.frameunit .cta-link,
.frameunit .lead-btn,
.frameunit .main-btn,
.frameunit .page-btn,
.frameunit .primary-cta,
.frameunit .section-action,
.frameunit .section-cta {
  text-align: center;
  color: #252525;
}
.piece {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #dbc5ad;
}
.piece .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .piece .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .piece .container {
    padding: 0 24px;
  }
}
.piece .row {
  justify-content: center;
}
.piece .nodeband .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .piece .nodeband .desc-wrapper {
    margin-bottom: 24px;
  }
}
.piece .nodeband .desc-wrapper .zoneunitbox {
  display: inline-flex;
  padding: 16px;
  background-color: #534636;
  border-radius: .75rem;
}
.piece .nodeband .partbox {
  margin-bottom: 0;
}.piece .block-title,
.piece .chapter-title,
.piece .header-text,
.piece .lead-h2,
.piece .main-heading,
.piece .page-h,
.piece .section-h,
.piece .section-heading,
.piece .topic-title {
  color: #141414;
}
.piece .partbox {
  color: #000000;
}
.piece .zoneunitbox,
.piece .desc-wrapper {
  text-align: center;
  color: #ffffff;
}
.fieldnode {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8e7d2;
}.fieldnode .nodeband .modlayer .block-title,
.fieldnode .nodeband .modlayer .chapter-title,
.fieldnode .nodeband .modlayer .header-text,
.fieldnode .nodeband .modlayer .lead-h2,
.fieldnode .nodeband .modlayer .main-heading,
.fieldnode .nodeband .modlayer .page-h,
.fieldnode .nodeband .modlayer .section-h,
.fieldnode .nodeband .modlayer .section-heading,
.fieldnode .nodeband .modlayer .topic-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {.fieldnode .nodeband .modlayer .block-title,
.fieldnode .nodeband .modlayer .chapter-title,
.fieldnode .nodeband .modlayer .header-text,
.fieldnode .nodeband .modlayer .lead-h2,
.fieldnode .nodeband .modlayer .main-heading,
.fieldnode .nodeband .modlayer .page-h,
.fieldnode .nodeband .modlayer .section-h,
.fieldnode .nodeband .modlayer .section-heading,
.fieldnode .nodeband .modlayer .topic-title {
    margin-bottom: 20px;
  }
}
.fieldnode .nodeband .partbox {
  margin-bottom: 0;
}.fieldnode .nodeband .block-action,
.fieldnode .nodeband .cta-link,
.fieldnode .nodeband .lead-btn,
.fieldnode .nodeband .main-btn,
.fieldnode .nodeband .page-btn,
.fieldnode .nodeband .primary-cta,
.fieldnode .nodeband .section-action,
.fieldnode .nodeband .section-cta {
  margin-top: 20px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {.fieldnode .nodeband .block-action,
.fieldnode .nodeband .cta-link,
.fieldnode .nodeband .lead-btn,
.fieldnode .nodeband .main-btn,
.fieldnode .nodeband .page-btn,
.fieldnode .nodeband .primary-cta,
.fieldnode .nodeband .section-action,
.fieldnode .nodeband .section-cta {
    margin-top: 10px;
  }
}
.fieldnode .linedock {
  text-align: center;
}
@media (max-width: 992px) {
  .fieldnode .linedock {
    margin-top: 30px;
  }
}
.fieldnode .linedock img {
  display: inline-flex;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 8px solid #534636;
}.fieldnode .block-title,
.fieldnode .chapter-title,
.fieldnode .header-text,
.fieldnode .lead-h2,
.fieldnode .main-heading,
.fieldnode .page-h,
.fieldnode .section-h,
.fieldnode .section-heading,
.fieldnode .topic-title {
  color: #3a353e;
}
.fieldnode .partbox {
  color: #3a353e;
}.fieldnode .block-title,
.fieldnode .chapter-title,
.fieldnode .header-text,
.fieldnode .lead-h2,
.fieldnode .main-heading,
.fieldnode .page-h,
.fieldnode .section-h,
.fieldnode .section-heading,
.fieldnode .topic-title,
.fieldnode .block-action,
.fieldnode .cta-link,
.fieldnode .lead-btn,
.fieldnode .main-btn,
.fieldnode .page-btn,
.fieldnode .primary-cta,
.fieldnode .section-action,
.fieldnode .section-cta {
  text-align: center;
  color: #534636;
}
.fieldnode .partbox,
.fieldnode .text-wrap {
  text-align: center;
  color: #252525;
}
.modsegment {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #dbc5ad;
}
@media (max-width: 1400px) {
  .modsegment .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.modsegment P {
  max-width: 1200px;
}.modsegment .block-action,
.modsegment .cta-link,
.modsegment .lead-btn,
.modsegment .main-btn,
.modsegment .page-btn,
.modsegment .primary-cta,
.modsegment .section-action,
.modsegment .section-cta,
.modsegment .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .modsegment .linedock {
    margin-bottom: 1rem;
  }
}
.modsegment .row {
  align-items: center;
}
@media (max-width: 991px) {
  .modsegment .linedock {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .modsegment .text-wrapper {
    padding: 0 2rem;
  }
}.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: #534636;
  text-align: center;
}.modsegment .partbox,
.modsegment .block-action,
.modsegment .cta-link,
.modsegment .lead-btn,
.modsegment .main-btn,
.modsegment .page-btn,
.modsegment .primary-cta,
.modsegment .section-action,
.modsegment .section-cta {
  color: #252525;
  text-align: center;
}.modsegment .lead-sub,
.modsegment .section-sub,
.modsegment .sub-heading {
  color: #534636;
}
.zoneunit {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #534636;
}
.zoneunit .card {
  justify-content: center;
}
.zoneunit .nodeband {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nodeband {
    margin-bottom: 40px;
  }
}.zoneunit .nodeband .block-title,
.zoneunit .nodeband .chapter-title,
.zoneunit .nodeband .header-text,
.zoneunit .nodeband .lead-h2,
.zoneunit .nodeband .main-heading,
.zoneunit .nodeband .page-h,
.zoneunit .nodeband .section-h,
.zoneunit .nodeband .section-heading,
.zoneunit .nodeband .topic-title {
  margin-bottom: 16px;
}
.zoneunit .nodeband .partbox {
  margin-bottom: 0;
}.zoneunit .nodeband .block-action,
.zoneunit .nodeband .cta-link,
.zoneunit .nodeband .lead-btn,
.zoneunit .nodeband .main-btn,
.zoneunit .nodeband .page-btn,
.zoneunit .nodeband .primary-cta,
.zoneunit .nodeband .section-action,
.zoneunit .nodeband .section-cta {
  margin-top: 24px;
}.zoneunit .nodeband .block-action .btn,
.zoneunit .nodeband .cta-link .btn,
.zoneunit .nodeband .lead-btn .btn,
.zoneunit .nodeband .main-btn .btn,
.zoneunit .nodeband .page-btn .btn,
.zoneunit .nodeband .primary-cta .btn,
.zoneunit .nodeband .section-action .btn,
.zoneunit .nodeband .section-cta .btn {
  margin-bottom: 0;
}
.zoneunit .nav-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nav-wrapper {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.zoneunit .nav-wrapper .nav-wrap {
  width: 40%;
}
.zoneunit .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:hover,
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #fff1e2;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.zoneunit .domcore {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}
.zoneunit .partbox,
.zoneunit .text-wrapper {
  color: #ffffff;
}
.zoneunit .list {
  color: #808080;
}
.zoneunit .list,
.zoneunit .item-wrap {
  color: #ffffff;
  text-align: center;
}
.contentunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .contentunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.contentunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.contentunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.contentunit .navbar-brand .trunk {
  line-height: inherit !important;
}
.contentunit .navbar-brand .spanbox a {
  outline: none;
}
.contentunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.contentunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.contentunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.contentunit .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
@media (min-width: 992px) {
  .contentunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.contentunit .nav-link {
  width: fit-content;
  position: relative;
}
.contentunit .nav-link:hover {
  color: #fff1e2 !important;
}
.contentunit .spanbox {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .contentunit .spanbox {
    padding-left: 1rem;
  }
}
.contentunit .trunk {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.contentunit .trunk:hover,
.contentunit .trunk:focus {
  color: #fff1e2 !important;
}
@media (max-width: 767px) {
  .contentunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.contentunit .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #9d8565;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.contentunit .nav-item:focus,
.contentunit .nav-link:focus {
  outline: none;
}
.contentunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.contentunit .navbar .spanbox img {
  width: auto;
}
.contentunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .contentunit .navbar .navbar-collapse {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .contentunit .navbar {
    min-height: 72px;
  }
  .contentunit .navbar .spanbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .contentunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .contentunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .contentunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.contentunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.contentunit ul.navbar-nav {
  flex-wrap: wrap;
}
.contentunit .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .contentunit .navbar-buttons {
    text-align: left;
  }
}
.contentunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.contentunit .site-nav {
  padding: 0 1rem;
}
.contentunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contentunit .navbar {
    height: 70px;
  }
  .contentunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
    padding-left: 0;
  }
}.contentunit .block-action .btn,
.contentunit .cta-link .btn,
.contentunit .lead-btn .btn,
.contentunit .main-btn .btn,
.contentunit .page-btn .btn,
.contentunit .primary-cta .btn,
.contentunit .section-action .btn,
.contentunit .section-cta .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.contentunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .contentunit .navbar-brand {
    margin-right: auto;
  }
  .contentunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #9d8565;
    border-radius: 4px !important;
  }
  .contentunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .contentunit .navbar-collapse {
    padding: 1rem;
  }
}
.contentunit .navbar-brand,
.contentunit .navbar-toggler,
.contentunit .navbar-collapse {
  position: relative;
  z-index: 1;
}
.layoutunit {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #f8e7d2;
}
.layoutunit .tile {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .layoutunit .nodeband {
    margin-bottom: 40px;
  }
}
.layoutunit .nodeband .modlayer {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .layoutunit .nodeband .modlayer {
    margin-bottom: 40px;
  }
}
.layoutunit .nodeband .modlayer .desc-wrapper .zoneunitbox {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 16px;
  margin-bottom: 16px;
}.layoutunit .nodeband .modlayer .block-title,
.layoutunit .nodeband .modlayer .chapter-title,
.layoutunit .nodeband .modlayer .header-text,
.layoutunit .nodeband .modlayer .lead-h2,
.layoutunit .nodeband .modlayer .main-heading,
.layoutunit .nodeband .modlayer .page-h,
.layoutunit .nodeband .modlayer .section-h,
.layoutunit .nodeband .modlayer .section-heading,
.layoutunit .nodeband .modlayer .topic-title {
  margin-bottom: 0;
}.layoutunit .nodeband .modlayer .block-title span,
.layoutunit .nodeband .modlayer .chapter-title span,
.layoutunit .nodeband .modlayer .header-text span,
.layoutunit .nodeband .modlayer .lead-h2 span,
.layoutunit .nodeband .modlayer .main-heading span,
.layoutunit .nodeband .modlayer .page-h span,
.layoutunit .nodeband .modlayer .section-h span,
.layoutunit .nodeband .modlayer .section-heading span,
.layoutunit .nodeband .modlayer .topic-title span {
  color: #534636;
}
.layoutunit .nodeband .partbox {
  margin-bottom: 0;
}
.layoutunit .linedock img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .layoutunit .linedock img {
    height: 350px;
  }
}.layoutunit .block-title,
.layoutunit .chapter-title,
.layoutunit .header-text,
.layoutunit .lead-h2,
.layoutunit .main-heading,
.layoutunit .page-h,
.layoutunit .section-h,
.layoutunit .section-heading,
.layoutunit .topic-title {
  color: #534636;
  text-align: center;
}
.layoutunit .zoneunitbox {
  color: #b19a7c;
}
.layoutunit .partbox {
  color: #252525;
  text-align: center;
}
.layoutunit .zoneunitbox,
.layoutunit .desc-wrapper {
  text-align: center;
  color: #534636;
}
.domwrap {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #534636;
}
.domwrap .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .domwrap .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.domwrap .col-title,
.domwrap .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}.domwrap .block-title,
.domwrap .chapter-title,
.domwrap .header-text,
.domwrap .lead-h2,
.domwrap .main-heading,
.domwrap .page-h,
.domwrap .section-h,
.domwrap .section-heading,
.domwrap .topic-title {
  color: #ffffff;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {.domwrap .block-title,
.domwrap .chapter-title,
.domwrap .header-text,
.domwrap .lead-h2,
.domwrap .main-heading,
.domwrap .page-h,
.domwrap .section-h,
.domwrap .section-heading,
.domwrap .topic-title {
    text-align: center !important;
  }
}.domwrap .lead-sub,
.domwrap .section-sub,
.domwrap .sub-heading {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {.domwrap .lead-sub,
.domwrap .section-sub,
.domwrap .sub-heading {
    text-align: center !important;
  }
}
.domwrap .partbox {
  color: #ffffff;
  margin-bottom: 0.9rem !important;
  text-align: center;
}
@media (max-width: 767px) {
  .domwrap .partbox {
    text-align: center !important;
  }
}
.abstractbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #dbc5ad;
}
.abstractbox .card-wrapper {
  display: flex;
  background-color: #f8e7d2;
  overflow: hidden;
}
@media (max-width: 992px) {
  .abstractbox .card-wrapper {
    display: block;
  }
}
.abstractbox .card-wrapper .linedock {
  position: relative;
  width: 55%;
  overflow: hidden;
}
@media (max-width: 992px) {
  .abstractbox .card-wrapper .linedock {
    width: 100%;
    height: 300px;
  }
}
.abstractbox .card-wrapper .linedock img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
.abstractbox .card-wrapper .nodeband {
  width: 45%;
  padding: 64px;
}
@media (max-width: 1440px) {
  .abstractbox .card-wrapper .nodeband {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .abstractbox .card-wrapper .nodeband {
    padding: 24px 16px 16px 16px;
    width: 100%;
  }
}
.abstractbox .card-wrapper .nodeband .shell {
  margin-bottom: 24px;
}
.abstractbox .card-wrapper .nodeband .shell .rootbox {
  display: inline-flex;
  align-items: center;
}
.abstractbox .card-wrapper .nodeband .shell .rootbox .inner {
  margin-right: 12px;
}
.abstractbox .card-wrapper .nodeband .shell .rootbox .inner img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  object-fit: cover;
  border-radius: 100% !important;
}
.abstractbox .card-wrapper .nodeband .shell .rootbox .shellbox {
  margin-bottom: 0;
}.abstractbox .card-wrapper .nodeband .block-title,
.abstractbox .card-wrapper .nodeband .chapter-title,
.abstractbox .card-wrapper .nodeband .header-text,
.abstractbox .card-wrapper .nodeband .lead-h2,
.abstractbox .card-wrapper .nodeband .main-heading,
.abstractbox .card-wrapper .nodeband .page-h,
.abstractbox .card-wrapper .nodeband .section-h,
.abstractbox .card-wrapper .nodeband .section-heading,
.abstractbox .card-wrapper .nodeband .topic-title {
  margin-bottom: 16px;
}
.abstractbox .card-wrapper .nodeband .partbox {
  margin-bottom: 0;
}.abstractbox .card-wrapper .nodeband .block-action,
.abstractbox .card-wrapper .nodeband .cta-link,
.abstractbox .card-wrapper .nodeband .lead-btn,
.abstractbox .card-wrapper .nodeband .main-btn,
.abstractbox .card-wrapper .nodeband .page-btn,
.abstractbox .card-wrapper .nodeband .primary-cta,
.abstractbox .card-wrapper .nodeband .section-action,
.abstractbox .card-wrapper .nodeband .section-cta {
  margin-top: 24px;
}.abstractbox .card-wrapper .nodeband .block-action .btn,
.abstractbox .card-wrapper .nodeband .cta-link .btn,
.abstractbox .card-wrapper .nodeband .lead-btn .btn,
.abstractbox .card-wrapper .nodeband .main-btn .btn,
.abstractbox .card-wrapper .nodeband .page-btn .btn,
.abstractbox .card-wrapper .nodeband .primary-cta .btn,
.abstractbox .card-wrapper .nodeband .section-action .btn,
.abstractbox .card-wrapper .nodeband .section-cta .btn {
  margin-bottom: 0;
}
.abstractbox .shellbox {
  color: #808080;
}.abstractbox .block-title,
.abstractbox .chapter-title,
.abstractbox .header-text,
.abstractbox .lead-h2,
.abstractbox .main-heading,
.abstractbox .page-h,
.abstractbox .section-h,
.abstractbox .section-heading,
.abstractbox .topic-title {
  color: #ffffff;
}
.abstractbox .partbox,
.abstractbox .text-wrapper {
  color: #252525;
  text-align: center;
}.abstractbox .block-title,
.abstractbox .chapter-title,
.abstractbox .header-text,
.abstractbox .lead-h2,
.abstractbox .main-heading,
.abstractbox .page-h,
.abstractbox .section-h,
.abstractbox .section-heading,
.abstractbox .topic-title,
.abstractbox .block-action,
.abstractbox .cta-link,
.abstractbox .lead-btn,
.abstractbox .main-btn,
.abstractbox .page-btn,
.abstractbox .primary-cta,
.abstractbox .section-action,
.abstractbox .section-cta {
  text-align: center;
  color: #534636;
}
.abstractbox .shellbox,
.abstractbox .shell {
  text-align: center;
  color: #534636;
}
.bodylayer {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #f8e7d2;
}.bodylayer .nodeband .modlayer .block-title,
.bodylayer .nodeband .modlayer .chapter-title,
.bodylayer .nodeband .modlayer .header-text,
.bodylayer .nodeband .modlayer .lead-h2,
.bodylayer .nodeband .modlayer .main-heading,
.bodylayer .nodeband .modlayer .page-h,
.bodylayer .nodeband .modlayer .section-h,
.bodylayer .nodeband .modlayer .section-heading,
.bodylayer .nodeband .modlayer .topic-title {
  display: inline-block;
  width: 55%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {.bodylayer .nodeband .modlayer .block-title,
.bodylayer .nodeband .modlayer .chapter-title,
.bodylayer .nodeband .modlayer .header-text,
.bodylayer .nodeband .modlayer .lead-h2,
.bodylayer .nodeband .modlayer .main-heading,
.bodylayer .nodeband .modlayer .page-h,
.bodylayer .nodeband .modlayer .section-h,
.bodylayer .nodeband .modlayer .section-heading,
.bodylayer .nodeband .modlayer .topic-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.bodylayer .nodeband .text-wrapper .partbox {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .bodylayer .nodeband .text-wrapper .partbox {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .bodylayer .nodeband .text-wrapper .partbox {
    width: 100%;
    margin-bottom: 20px;
  }
}
.bodylayer .formcore {
  color: #19171c;
  text-align: center;
}.bodylayer .block-title,
.bodylayer .chapter-title,
.bodylayer .header-text,
.bodylayer .lead-h2,
.bodylayer .main-heading,
.bodylayer .page-h,
.bodylayer .section-h,
.bodylayer .section-heading,
.bodylayer .topic-title {
  color: #19171c;
}
.bodylayer .partbox,
.bodylayer .text-wrapper {
  color: #252525;
  text-align: center;
}.bodylayer .block-title,
.bodylayer .chapter-title,
.bodylayer .header-text,
.bodylayer .lead-h2,
.bodylayer .main-heading,
.bodylayer .page-h,
.bodylayer .section-h,
.bodylayer .section-heading,
.bodylayer .topic-title,
.bodylayer .modlayer,
.bodylayer .block-action,
.bodylayer .cta-link,
.bodylayer .lead-btn,
.bodylayer .main-btn,
.bodylayer .page-btn,
.bodylayer .primary-cta,
.bodylayer .section-action,
.bodylayer .section-cta {
  text-align: center;
}.bodylayer .block-title,
.bodylayer .chapter-title,
.bodylayer .header-text,
.bodylayer .lead-h2,
.bodylayer .main-heading,
.bodylayer .page-h,
.bodylayer .section-h,
.bodylayer .section-heading,
.bodylayer .topic-title,
.bodylayer .block-action,
.bodylayer .cta-link,
.bodylayer .lead-btn,
.bodylayer .main-btn,
.bodylayer .page-btn,
.bodylayer .primary-cta,
.bodylayer .section-action,
.bodylayer .section-cta,
.bodylayer .modlayer {
  color: #534636;
}
.zoneunit {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #534636;
}
.zoneunit .card {
  justify-content: center;
}
.zoneunit .nodeband {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nodeband {
    margin-bottom: 40px;
  }
}.zoneunit .nodeband .block-title,
.zoneunit .nodeband .chapter-title,
.zoneunit .nodeband .header-text,
.zoneunit .nodeband .lead-h2,
.zoneunit .nodeband .main-heading,
.zoneunit .nodeband .page-h,
.zoneunit .nodeband .section-h,
.zoneunit .nodeband .section-heading,
.zoneunit .nodeband .topic-title {
  margin-bottom: 16px;
}
.zoneunit .nodeband .partbox {
  margin-bottom: 0;
}.zoneunit .nodeband .block-action,
.zoneunit .nodeband .cta-link,
.zoneunit .nodeband .lead-btn,
.zoneunit .nodeband .main-btn,
.zoneunit .nodeband .page-btn,
.zoneunit .nodeband .primary-cta,
.zoneunit .nodeband .section-action,
.zoneunit .nodeband .section-cta {
  margin-top: 24px;
}.zoneunit .nodeband .block-action .btn,
.zoneunit .nodeband .cta-link .btn,
.zoneunit .nodeband .lead-btn .btn,
.zoneunit .nodeband .main-btn .btn,
.zoneunit .nodeband .page-btn .btn,
.zoneunit .nodeband .primary-cta .btn,
.zoneunit .nodeband .section-action .btn,
.zoneunit .nodeband .section-cta .btn {
  margin-bottom: 0;
}
.zoneunit .nav-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nav-wrapper {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.zoneunit .nav-wrapper .nav-wrap {
  width: 40%;
}
.zoneunit .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:hover,
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #fff1e2;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.zoneunit .domcore {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}
.zoneunit .partbox,
.zoneunit .text-wrapper {
  color: #ffffff;
}
.zoneunit .list {
  color: #808080;
}
.zoneunit .list,
.zoneunit .item-wrap {
  color: #ffffff;
  text-align: center;
}
.contentunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .contentunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.contentunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.contentunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.contentunit .navbar-brand .trunk {
  line-height: inherit !important;
}
.contentunit .navbar-brand .spanbox a {
  outline: none;
}
.contentunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.contentunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.contentunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.contentunit .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
@media (min-width: 992px) {
  .contentunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.contentunit .nav-link {
  width: fit-content;
  position: relative;
}
.contentunit .nav-link:hover {
  color: #fff1e2 !important;
}
.contentunit .spanbox {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .contentunit .spanbox {
    padding-left: 1rem;
  }
}
.contentunit .trunk {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.contentunit .trunk:hover,
.contentunit .trunk:focus {
  color: #fff1e2 !important;
}
@media (max-width: 767px) {
  .contentunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.contentunit .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #9d8565;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.contentunit .nav-item:focus,
.contentunit .nav-link:focus {
  outline: none;
}
.contentunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.contentunit .navbar .spanbox img {
  width: auto;
}
.contentunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .contentunit .navbar .navbar-collapse {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .contentunit .navbar {
    min-height: 72px;
  }
  .contentunit .navbar .spanbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .contentunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .contentunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .contentunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.contentunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.contentunit ul.navbar-nav {
  flex-wrap: wrap;
}
.contentunit .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .contentunit .navbar-buttons {
    text-align: left;
  }
}
.contentunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.contentunit .site-nav {
  padding: 0 1rem;
}
.contentunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contentunit .navbar {
    height: 70px;
  }
  .contentunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
    padding-left: 0;
  }
}.contentunit .block-action .btn,
.contentunit .cta-link .btn,
.contentunit .lead-btn .btn,
.contentunit .main-btn .btn,
.contentunit .page-btn .btn,
.contentunit .primary-cta .btn,
.contentunit .section-action .btn,
.contentunit .section-cta .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.contentunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .contentunit .navbar-brand {
    margin-right: auto;
  }
  .contentunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #9d8565;
    border-radius: 4px !important;
  }
  .contentunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .contentunit .navbar-collapse {
    padding: 1rem;
  }
}
.contentunit .navbar-brand,
.contentunit .navbar-toggler,
.contentunit .navbar-collapse {
  position: relative;
  z-index: 1;
}
.unitgrid {
  padding-top: 10rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #f8e7d2;
}
.unitgrid .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .unitgrid .container-fluid {
    padding: 0 28px;
  }
}
@media (max-width: 992px) {
  .unitgrid .container {
    padding: 0 28px;
  }
}.unitgrid .block-title,
.unitgrid .chapter-title,
.unitgrid .header-text,
.unitgrid .lead-h2,
.unitgrid .main-heading,
.unitgrid .page-h,
.unitgrid .section-h,
.unitgrid .section-heading,
.unitgrid .topic-title {
  margin-bottom: 32px;
  color: #000000;
}
.unitgrid .partbox {
  margin-bottom: 0;
  color: #000000;
}.unitgrid .lead-sub,
.unitgrid .section-sub,
.unitgrid .sub-heading {
  color: #534636;
  text-align: center;
}
.unitgrid .list {
  color: #000000;
}
.unitgrid label {
  color: #000000;
}.unitgrid .block-title,
.unitgrid .chapter-title,
.unitgrid .header-text,
.unitgrid .lead-h2,
.unitgrid .main-heading,
.unitgrid .page-h,
.unitgrid .section-h,
.unitgrid .section-heading,
.unitgrid .topic-title,
.unitgrid .block-action,
.unitgrid .cta-link,
.unitgrid .lead-btn,
.unitgrid .main-btn,
.unitgrid .page-btn,
.unitgrid .primary-cta,
.unitgrid .section-action,
.unitgrid .section-cta {
  text-align: center;
  color: #534636;
}
.wrap {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #dbc5ad;
  overflow: hidden;
}
.wrap .nodeband {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .wrap .nodeband {
    padding: 0 16px;
  }
}
.wrap .nodeband::before,
.wrap .nodeband::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 1000vh;
  background-color: #534636;
}
.wrap .nodeband::before {
  left: 0;
}
.wrap .nodeband::after {
  right: 0;
}
.wrap .tile {
  width: -webkit-fill-available;
  min-width: -moz-available;
}
.wrap .modlayer {
  margin-bottom: 40px;
}
.wrap .formcore {
  margin-bottom: 24px;
  color: #534636;
  text-align: center;
}.wrap .block-title,
.wrap .chapter-title,
.wrap .header-text,
.wrap .lead-h2,
.wrap .main-heading,
.wrap .page-h,
.wrap .section-h,
.wrap .section-heading,
.wrap .topic-title {
  margin-bottom: 24px;
  color: #534636;
  text-align: center;
}
.wrap .text-wrapper .partbox {
  display: inline-block;
  width: 35%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .wrap .text-wrapper .partbox {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .wrap .text-wrapper .partbox {
    width: 100%;
  }
}
.wrap .item {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .wrap .item:last-child {
    margin-bottom: 0;
  }
}
.wrap .item .item-wrapper {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #fff1e2;
}
@media (max-width: 992px) {
  .wrap .item .item-wrapper {
    display: block;
    padding: 24px 16px;
  }
}
.wrap .item .item-wrapper .item-content {
  width: 50%;
}
@media (max-width: 992px) {
  .wrap .item .item-wrapper .item-content {
    width: 100%;
  }
}
.wrap .item .item-wrapper .item-content .item-title {
  margin-bottom: 8px;
}
.wrap .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {.wrap .item .item-wrapper .block-action,
.wrap .item .item-wrapper .cta-link,
.wrap .item .item-wrapper .lead-btn,
.wrap .item .item-wrapper .main-btn,
.wrap .item .item-wrapper .page-btn,
.wrap .item .item-wrapper .primary-cta,
.wrap .item .item-wrapper .section-action,
.wrap .item .item-wrapper .section-cta {
    margin-top: 16px;
  }
}.wrap .card-wrap .block-action,
.wrap .card-wrap .cta-link,
.wrap .card-wrap .lead-btn,
.wrap .card-wrap .main-btn,
.wrap .card-wrap .page-btn,
.wrap .card-wrap .primary-cta,
.wrap .card-wrap .section-action,
.wrap .card-wrap .section-cta {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {.wrap .card-wrap .block-action,
.wrap .card-wrap .cta-link,
.wrap .card-wrap .lead-btn,
.wrap .card-wrap .main-btn,
.wrap .card-wrap .page-btn,
.wrap .card-wrap .primary-cta,
.wrap .card-wrap .section-action,
.wrap .card-wrap .section-cta {
    margin-bottom: 24px;
  }
}.wrap .card-wrap .block-action .btn,
.wrap .card-wrap .cta-link .btn,
.wrap .card-wrap .lead-btn .btn,
.wrap .card-wrap .main-btn .btn,
.wrap .card-wrap .page-btn .btn,
.wrap .card-wrap .primary-cta .btn,
.wrap .card-wrap .section-action .btn,
.wrap .card-wrap .section-cta .btn {
  width: 100%;
  margin-top: 0;
  padding: 22px 45px;
}
@media (max-width: 992px) {.wrap .card-wrap .block-action .btn,
.wrap .card-wrap .cta-link .btn,
.wrap .card-wrap .lead-btn .btn,
.wrap .card-wrap .main-btn .btn,
.wrap .card-wrap .page-btn .btn,
.wrap .card-wrap .primary-cta .btn,
.wrap .card-wrap .section-action .btn,
.wrap .card-wrap .section-cta .btn {
    padding: 15px 25px;
  }
}
.wrap .btn-wrapper {
  margin-top: -2%;
}
.wrap .partbox,
.wrap .text-wrapper {
  color: #252525;
  text-align: center;
}
.wrap .item-title {
  color: #534636;
}
.wrap .item-text {
  color: #252525;
}
.zoneunit {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #534636;
}
.zoneunit .card {
  justify-content: center;
}
.zoneunit .nodeband {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nodeband {
    margin-bottom: 40px;
  }
}.zoneunit .nodeband .block-title,
.zoneunit .nodeband .chapter-title,
.zoneunit .nodeband .header-text,
.zoneunit .nodeband .lead-h2,
.zoneunit .nodeband .main-heading,
.zoneunit .nodeband .page-h,
.zoneunit .nodeband .section-h,
.zoneunit .nodeband .section-heading,
.zoneunit .nodeband .topic-title {
  margin-bottom: 16px;
}
.zoneunit .nodeband .partbox {
  margin-bottom: 0;
}.zoneunit .nodeband .block-action,
.zoneunit .nodeband .cta-link,
.zoneunit .nodeband .lead-btn,
.zoneunit .nodeband .main-btn,
.zoneunit .nodeband .page-btn,
.zoneunit .nodeband .primary-cta,
.zoneunit .nodeband .section-action,
.zoneunit .nodeband .section-cta {
  margin-top: 24px;
}.zoneunit .nodeband .block-action .btn,
.zoneunit .nodeband .cta-link .btn,
.zoneunit .nodeband .lead-btn .btn,
.zoneunit .nodeband .main-btn .btn,
.zoneunit .nodeband .page-btn .btn,
.zoneunit .nodeband .primary-cta .btn,
.zoneunit .nodeband .section-action .btn,
.zoneunit .nodeband .section-cta .btn {
  margin-bottom: 0;
}
.zoneunit .nav-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nav-wrapper {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.zoneunit .nav-wrapper .nav-wrap {
  width: 40%;
}
.zoneunit .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:hover,
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #fff1e2;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.zoneunit .domcore {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}
.zoneunit .partbox,
.zoneunit .text-wrapper {
  color: #ffffff;
}
.zoneunit .list {
  color: #808080;
}
.zoneunit .list,
.zoneunit .item-wrap {
  color: #ffffff;
  text-align: center;
}
.contentunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .contentunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.contentunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.contentunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.contentunit .navbar-brand .trunk {
  line-height: inherit !important;
}
.contentunit .navbar-brand .spanbox a {
  outline: none;
}
.contentunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.contentunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.contentunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.contentunit .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
@media (min-width: 992px) {
  .contentunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.contentunit .nav-link {
  width: fit-content;
  position: relative;
}
.contentunit .nav-link:hover {
  color: #fff1e2 !important;
}
.contentunit .spanbox {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .contentunit .spanbox {
    padding-left: 1rem;
  }
}
.contentunit .trunk {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.contentunit .trunk:hover,
.contentunit .trunk:focus {
  color: #fff1e2 !important;
}
@media (max-width: 767px) {
  .contentunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.contentunit .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #9d8565;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.contentunit .nav-item:focus,
.contentunit .nav-link:focus {
  outline: none;
}
.contentunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.contentunit .navbar .spanbox img {
  width: auto;
}
.contentunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .contentunit .navbar .navbar-collapse {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .contentunit .navbar {
    min-height: 72px;
  }
  .contentunit .navbar .spanbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .contentunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .contentunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .contentunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.contentunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.contentunit ul.navbar-nav {
  flex-wrap: wrap;
}
.contentunit .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .contentunit .navbar-buttons {
    text-align: left;
  }
}
.contentunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.contentunit .site-nav {
  padding: 0 1rem;
}
.contentunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contentunit .navbar {
    height: 70px;
  }
  .contentunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
    padding-left: 0;
  }
}.contentunit .block-action .btn,
.contentunit .cta-link .btn,
.contentunit .lead-btn .btn,
.contentunit .main-btn .btn,
.contentunit .page-btn .btn,
.contentunit .primary-cta .btn,
.contentunit .section-action .btn,
.contentunit .section-cta .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.contentunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .contentunit .navbar-brand {
    margin-right: auto;
  }
  .contentunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #9d8565;
    border-radius: 4px !important;
  }
  .contentunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .contentunit .navbar-collapse {
    padding: 1rem;
  }
}
.contentunit .navbar-brand,
.contentunit .navbar-toggler,
.contentunit .navbar-collapse {
  position: relative;
  z-index: 1;
}
.stage {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f8e7d2;
}
.stage .partbox {
  margin-bottom: 32px;
  color: #000c3f;
}
.stage .desc-wrapper .zoneunitbox {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .stage .desc-wrapper .zoneunitbox {
    width: 100%;
  }
}
.stage .zoneunitbox,
.stage .desc-wrapper {
  color: #252525;
  text-align: justify;
}
.stage .partbox {
  text-align: center;
  color: #534636;
}
.zoneunit {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #534636;
}
.zoneunit .card {
  justify-content: center;
}
.zoneunit .nodeband {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nodeband {
    margin-bottom: 40px;
  }
}.zoneunit .nodeband .block-title,
.zoneunit .nodeband .chapter-title,
.zoneunit .nodeband .header-text,
.zoneunit .nodeband .lead-h2,
.zoneunit .nodeband .main-heading,
.zoneunit .nodeband .page-h,
.zoneunit .nodeband .section-h,
.zoneunit .nodeband .section-heading,
.zoneunit .nodeband .topic-title {
  margin-bottom: 16px;
}
.zoneunit .nodeband .partbox {
  margin-bottom: 0;
}.zoneunit .nodeband .block-action,
.zoneunit .nodeband .cta-link,
.zoneunit .nodeband .lead-btn,
.zoneunit .nodeband .main-btn,
.zoneunit .nodeband .page-btn,
.zoneunit .nodeband .primary-cta,
.zoneunit .nodeband .section-action,
.zoneunit .nodeband .section-cta {
  margin-top: 24px;
}.zoneunit .nodeband .block-action .btn,
.zoneunit .nodeband .cta-link .btn,
.zoneunit .nodeband .lead-btn .btn,
.zoneunit .nodeband .main-btn .btn,
.zoneunit .nodeband .page-btn .btn,
.zoneunit .nodeband .primary-cta .btn,
.zoneunit .nodeband .section-action .btn,
.zoneunit .nodeband .section-cta .btn {
  margin-bottom: 0;
}
.zoneunit .nav-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nav-wrapper {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.zoneunit .nav-wrapper .nav-wrap {
  width: 40%;
}
.zoneunit .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:hover,
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #fff1e2;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.zoneunit .domcore {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}
.zoneunit .partbox,
.zoneunit .text-wrapper {
  color: #ffffff;
}
.zoneunit .list {
  color: #808080;
}
.zoneunit .list,
.zoneunit .item-wrap {
  color: #ffffff;
  text-align: center;
}
.contentunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .contentunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.contentunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.contentunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.contentunit .navbar-brand .trunk {
  line-height: inherit !important;
}
.contentunit .navbar-brand .spanbox a {
  outline: none;
}
.contentunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.contentunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.contentunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.contentunit .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
@media (min-width: 992px) {
  .contentunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.contentunit .nav-link {
  width: fit-content;
  position: relative;
}
.contentunit .nav-link:hover {
  color: #fff1e2 !important;
}
.contentunit .spanbox {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .contentunit .spanbox {
    padding-left: 1rem;
  }
}
.contentunit .trunk {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.contentunit .trunk:hover,
.contentunit .trunk:focus {
  color: #fff1e2 !important;
}
@media (max-width: 767px) {
  .contentunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.contentunit .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #9d8565;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.contentunit .nav-item:focus,
.contentunit .nav-link:focus {
  outline: none;
}
.contentunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.contentunit .navbar .spanbox img {
  width: auto;
}
.contentunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .contentunit .navbar .navbar-collapse {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .contentunit .navbar {
    min-height: 72px;
  }
  .contentunit .navbar .spanbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .contentunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .contentunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .contentunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.contentunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.contentunit ul.navbar-nav {
  flex-wrap: wrap;
}
.contentunit .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .contentunit .navbar-buttons {
    text-align: left;
  }
}
.contentunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.contentunit .site-nav {
  padding: 0 1rem;
}
.contentunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contentunit .navbar {
    height: 70px;
  }
  .contentunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
    padding-left: 0;
  }
}.contentunit .block-action .btn,
.contentunit .cta-link .btn,
.contentunit .lead-btn .btn,
.contentunit .main-btn .btn,
.contentunit .page-btn .btn,
.contentunit .primary-cta .btn,
.contentunit .section-action .btn,
.contentunit .section-cta .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.contentunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .contentunit .navbar-brand {
    margin-right: auto;
  }
  .contentunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #9d8565;
    border-radius: 4px !important;
  }
  .contentunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .contentunit .navbar-collapse {
    padding: 1rem;
  }
}
.contentunit .navbar-brand,
.contentunit .navbar-toggler,
.contentunit .navbar-collapse {
  position: relative;
  z-index: 1;
}
.holdwrap {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f8e7d2;
}
.holdwrap .partbox {
  margin-bottom: 32px;
  color: #000c3f;
}
.holdwrap .desc-wrapper .zoneunitbox {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .holdwrap .desc-wrapper .zoneunitbox {
    width: 100%;
  }
}
.holdwrap .zoneunitbox,
.holdwrap .desc-wrapper {
  color: #252525;
  text-align: justify;
}
.holdwrap .partbox {
  text-align: center;
  color: #534636;
}
.zoneunit {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #534636;
}
.zoneunit .card {
  justify-content: center;
}
.zoneunit .nodeband {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nodeband {
    margin-bottom: 40px;
  }
}.zoneunit .nodeband .block-title,
.zoneunit .nodeband .chapter-title,
.zoneunit .nodeband .header-text,
.zoneunit .nodeband .lead-h2,
.zoneunit .nodeband .main-heading,
.zoneunit .nodeband .page-h,
.zoneunit .nodeband .section-h,
.zoneunit .nodeband .section-heading,
.zoneunit .nodeband .topic-title {
  margin-bottom: 16px;
}
.zoneunit .nodeband .partbox {
  margin-bottom: 0;
}.zoneunit .nodeband .block-action,
.zoneunit .nodeband .cta-link,
.zoneunit .nodeband .lead-btn,
.zoneunit .nodeband .main-btn,
.zoneunit .nodeband .page-btn,
.zoneunit .nodeband .primary-cta,
.zoneunit .nodeband .section-action,
.zoneunit .nodeband .section-cta {
  margin-top: 24px;
}.zoneunit .nodeband .block-action .btn,
.zoneunit .nodeband .cta-link .btn,
.zoneunit .nodeband .lead-btn .btn,
.zoneunit .nodeband .main-btn .btn,
.zoneunit .nodeband .page-btn .btn,
.zoneunit .nodeband .primary-cta .btn,
.zoneunit .nodeband .section-action .btn,
.zoneunit .nodeband .section-cta .btn {
  margin-bottom: 0;
}
.zoneunit .nav-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nav-wrapper {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.zoneunit .nav-wrapper .nav-wrap {
  width: 40%;
}
.zoneunit .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:hover,
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #fff1e2;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.zoneunit .domcore {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}
.zoneunit .partbox,
.zoneunit .text-wrapper {
  color: #ffffff;
}
.zoneunit .list {
  color: #808080;
}
.zoneunit .list,
.zoneunit .item-wrap {
  color: #ffffff;
  text-align: center;
}
.contentunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .contentunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.contentunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.contentunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.contentunit .navbar-brand .trunk {
  line-height: inherit !important;
}
.contentunit .navbar-brand .spanbox a {
  outline: none;
}
.contentunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.contentunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.contentunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.contentunit .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
@media (min-width: 992px) {
  .contentunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.contentunit .nav-link {
  width: fit-content;
  position: relative;
}
.contentunit .nav-link:hover {
  color: #fff1e2 !important;
}
.contentunit .spanbox {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .contentunit .spanbox {
    padding-left: 1rem;
  }
}
.contentunit .trunk {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.contentunit .trunk:hover,
.contentunit .trunk:focus {
  color: #fff1e2 !important;
}
@media (max-width: 767px) {
  .contentunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.contentunit .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #9d8565;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.contentunit .nav-item:focus,
.contentunit .nav-link:focus {
  outline: none;
}
.contentunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.contentunit .navbar .spanbox img {
  width: auto;
}
.contentunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .contentunit .navbar .navbar-collapse {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .contentunit .navbar {
    min-height: 72px;
  }
  .contentunit .navbar .spanbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .contentunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .contentunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .contentunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.contentunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.contentunit ul.navbar-nav {
  flex-wrap: wrap;
}
.contentunit .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .contentunit .navbar-buttons {
    text-align: left;
  }
}
.contentunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.contentunit .site-nav {
  padding: 0 1rem;
}
.contentunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contentunit .navbar {
    height: 70px;
  }
  .contentunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
    padding-left: 0;
  }
}.contentunit .block-action .btn,
.contentunit .cta-link .btn,
.contentunit .lead-btn .btn,
.contentunit .main-btn .btn,
.contentunit .page-btn .btn,
.contentunit .primary-cta .btn,
.contentunit .section-action .btn,
.contentunit .section-cta .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.contentunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .contentunit .navbar-brand {
    margin-right: auto;
  }
  .contentunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #9d8565;
    border-radius: 4px !important;
  }
  .contentunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .contentunit .navbar-collapse {
    padding: 1rem;
  }
}
.contentunit .navbar-brand,
.contentunit .navbar-toggler,
.contentunit .navbar-collapse {
  position: relative;
  z-index: 1;
}
.gridunit {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f8e7d2;
}
.gridunit .partbox {
  margin-bottom: 32px;
  color: #000c3f;
}
.gridunit .desc-wrapper .zoneunitbox {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .gridunit .desc-wrapper .zoneunitbox {
    width: 100%;
  }
}
.gridunit .zoneunitbox,
.gridunit .desc-wrapper {
  color: #252525;
  text-align: justify;
}
.gridunit .partbox {
  text-align: center;
  color: #534636;
}
.zoneunit {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #534636;
}
.zoneunit .card {
  justify-content: center;
}
.zoneunit .nodeband {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nodeband {
    margin-bottom: 40px;
  }
}.zoneunit .nodeband .block-title,
.zoneunit .nodeband .chapter-title,
.zoneunit .nodeband .header-text,
.zoneunit .nodeband .lead-h2,
.zoneunit .nodeband .main-heading,
.zoneunit .nodeband .page-h,
.zoneunit .nodeband .section-h,
.zoneunit .nodeband .section-heading,
.zoneunit .nodeband .topic-title {
  margin-bottom: 16px;
}
.zoneunit .nodeband .partbox {
  margin-bottom: 0;
}.zoneunit .nodeband .block-action,
.zoneunit .nodeband .cta-link,
.zoneunit .nodeband .lead-btn,
.zoneunit .nodeband .main-btn,
.zoneunit .nodeband .page-btn,
.zoneunit .nodeband .primary-cta,
.zoneunit .nodeband .section-action,
.zoneunit .nodeband .section-cta {
  margin-top: 24px;
}.zoneunit .nodeband .block-action .btn,
.zoneunit .nodeband .cta-link .btn,
.zoneunit .nodeband .lead-btn .btn,
.zoneunit .nodeband .main-btn .btn,
.zoneunit .nodeband .page-btn .btn,
.zoneunit .nodeband .primary-cta .btn,
.zoneunit .nodeband .section-action .btn,
.zoneunit .nodeband .section-cta .btn {
  margin-bottom: 0;
}
.zoneunit .nav-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nav-wrapper {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.zoneunit .nav-wrapper .nav-wrap {
  width: 40%;
}
.zoneunit .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:hover,
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #fff1e2;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.zoneunit .domcore {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}
.zoneunit .partbox,
.zoneunit .text-wrapper {
  color: #ffffff;
}
.zoneunit .list {
  color: #808080;
}
.zoneunit .list,
.zoneunit .item-wrap {
  color: #ffffff;
  text-align: center;
}
.contentunit {
  z-index: 1000;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .contentunit .navbar-toggler {
    transform: scale(0.8);
  }
}
.contentunit .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.contentunit .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.contentunit .navbar-brand .trunk {
  line-height: inherit !important;
}
.contentunit .navbar-brand .spanbox a {
  outline: none;
}
.contentunit .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.contentunit .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.contentunit .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.contentunit .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
@media (min-width: 992px) {
  .contentunit .navbar-nav {
    padding-left: 1.5rem;
  }
}
.contentunit .nav-link {
  width: fit-content;
  position: relative;
}
.contentunit .nav-link:hover {
  color: #fff1e2 !important;
}
.contentunit .spanbox {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .contentunit .spanbox {
    padding-left: 1rem;
  }
}
.contentunit .trunk {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.contentunit .trunk:hover,
.contentunit .trunk:focus {
  color: #fff1e2 !important;
}
@media (max-width: 767px) {
  .contentunit .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.contentunit .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #9d8565;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.contentunit .nav-item:focus,
.contentunit .nav-link:focus {
  outline: none;
}
.contentunit .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.contentunit .navbar .spanbox img {
  width: auto;
}
.contentunit .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .contentunit .navbar .navbar-collapse {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .contentunit .navbar {
    min-height: 72px;
  }
  .contentunit .navbar .spanbox img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .contentunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .contentunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .contentunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.contentunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.contentunit ul.navbar-nav {
  flex-wrap: wrap;
}
.contentunit .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .contentunit .navbar-buttons {
    text-align: left;
  }
}
.contentunit button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.contentunit .site-nav {
  padding: 0 1rem;
}
.contentunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contentunit .navbar {
    height: 70px;
  }
  .contentunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {.contentunit .block-action,
.contentunit .cta-link,
.contentunit .lead-btn,
.contentunit .main-btn,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
    padding-left: 0;
  }
}.contentunit .block-action .btn,
.contentunit .cta-link .btn,
.contentunit .lead-btn .btn,
.contentunit .main-btn .btn,
.contentunit .page-btn .btn,
.contentunit .primary-cta .btn,
.contentunit .section-action .btn,
.contentunit .section-cta .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.contentunit .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .contentunit .navbar-brand {
    margin-right: auto;
  }
  .contentunit .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #9d8565;
    border-radius: 4px !important;
  }
  .contentunit .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .contentunit .navbar-collapse {
    padding: 1rem;
  }
}
.contentunit .navbar-brand,
.contentunit .navbar-toggler,
.contentunit .navbar-collapse {
  position: relative;
  z-index: 1;
}
.coreunit {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f8e7d2;
}
.coreunit .partbox {
  margin-bottom: 32px;
  color: #000c3f;
}
.coreunit .desc-wrapper .zoneunitbox {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .coreunit .desc-wrapper .zoneunitbox {
    width: 100%;
  }
}
.coreunit .zoneunitbox,
.coreunit .desc-wrapper {
  color: #252525;
  text-align: justify;
}
.coreunit .partbox {
  text-align: center;
  color: #534636;
}
.zoneunit {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #534636;
}
.zoneunit .card {
  justify-content: center;
}
.zoneunit .nodeband {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nodeband {
    margin-bottom: 40px;
  }
}.zoneunit .nodeband .block-title,
.zoneunit .nodeband .chapter-title,
.zoneunit .nodeband .header-text,
.zoneunit .nodeband .lead-h2,
.zoneunit .nodeband .main-heading,
.zoneunit .nodeband .page-h,
.zoneunit .nodeband .section-h,
.zoneunit .nodeband .section-heading,
.zoneunit .nodeband .topic-title {
  margin-bottom: 16px;
}
.zoneunit .nodeband .partbox {
  margin-bottom: 0;
}.zoneunit .nodeband .block-action,
.zoneunit .nodeband .cta-link,
.zoneunit .nodeband .lead-btn,
.zoneunit .nodeband .main-btn,
.zoneunit .nodeband .page-btn,
.zoneunit .nodeband .primary-cta,
.zoneunit .nodeband .section-action,
.zoneunit .nodeband .section-cta {
  margin-top: 24px;
}.zoneunit .nodeband .block-action .btn,
.zoneunit .nodeband .cta-link .btn,
.zoneunit .nodeband .lead-btn .btn,
.zoneunit .nodeband .main-btn .btn,
.zoneunit .nodeband .page-btn .btn,
.zoneunit .nodeband .primary-cta .btn,
.zoneunit .nodeband .section-action .btn,
.zoneunit .nodeband .section-cta .btn {
  margin-bottom: 0;
}
.zoneunit .nav-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .zoneunit .nav-wrapper {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.zoneunit .nav-wrapper .nav-wrap {
  width: 40%;
}
.zoneunit .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:hover,
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #fff1e2;
}
.zoneunit .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.zoneunit .domcore {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}
.zoneunit .partbox,
.zoneunit .text-wrapper {
  color: #ffffff;
}
.zoneunit .list {
  color: #808080;
}
.zoneunit .list,
.zoneunit .item-wrap {
  color: #ffffff;
  text-align: center;
}

.splitlayer {
  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;
}

.splitlayer *,
.splitlayer *::before,
.splitlayer *::after {
  box-sizing: border-box;
}

.boxarea {
  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;
}

.boxarea::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%);
}

.boxarea::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;
}

.footbox {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
}

.areabox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-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);
}

.traceunit {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.rowholder {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rootwrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blockrow {
  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;
}

.wrapperunit {
  display: inline-block;
  color: #3d2c22;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.dockwrap {
  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;
}

.bandwrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.aux-links-text {
  display: block;
  color: #7a6b60;
  font-size: 12px;
  line-height: 1.4;
}

.consent-links-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.consent-links-list 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;
}

.consent-links-list a:hover {
  color: #7c4c2c;
  border-bottom-color: #7c4c2c;
}

.consent-links-list span {
  display: inline-block;
  color: #7a6b60;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.sectional {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#noticeCloseBtn {
  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);
}

#noticeCloseBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .splitlayer {
    width: min(680px, calc(100vw - 28px));
    max-width: 680px;
  }

  .footbox {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .sectional {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #noticeCloseBtn {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .splitlayer {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
  }

  .boxarea {
    padding: 16px;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footbox {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .areabox {
    justify-content: center;
  }

  .rowholder {
    align-items: center;
    text-align: center;
  }

  .rootwrap {
    justify-content: center;
  }

  .wrapperunit {
    text-align: center;
    font-size: 18px;
  }

  .dockwrap {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .bandwrap {
    align-items: center;
    text-align: center;
  }

  .consent-links-list {
    justify-content: center;
  }

  .sectional {
    flex-direction: column;
    width: 100%;
  }

  #noticeCloseBtn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .splitlayer {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .boxarea {
    padding: 14px;
    border-radius: 18px;
  }

  .panel-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .traceunit {
    width: 38px;
    height: 38px;
  }

  .wrapperunit {
    font-size: 17px;
  }

  .aux-links-text,
  .consent-links-list a,
  .consent-links-list span {
    font-size: 12px;
  }
}

.sub-flat-holder {
  padding: 0 !important;
  background: transparent;
}
.sub-flat-holder .list-grid {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fffefb 0%, #f8f6f1 100%);
  border: 1px solid #e8e2d6;
  border-radius: 32px;
  box-shadow: 0 26px 60px rgba(24, 24, 27, 0.08);
  overflow: hidden;
}
.sub-flat-holder .list-grid::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #ca8a04, #a16207, #d97706);
}
.sub-flat-holder .dark-input {
  padding: 36px;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #ece7dc;
  text-align: center;
}
.sub-flat-holder .head-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f4efe3;
  color: #a16207;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sub-flat-holder .framegrid {
  margin: 16px 0 8px;
  color: #27272a;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}
.sub-flat-holder .side-wrap {
  margin: 0;
  color: #52525b;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.sub-flat-holder .ui-shell {
  padding: 30px 36px 36px;
  color: #27272a;
}
.sub-flat-holder .ui-shell *,
.sub-flat-holder .ui-shell *::before,
.sub-flat-holder .ui-shell *::after {
  box-sizing: border-box;
}
.sub-flat-holder .ui-shell [hidden] {
  display: none !important;
}
.sub-flat-holder .sub-holder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.sub-flat-holder .text-live-foot {
  grid-column: 1 / -1;
}
.sub-flat-holder .view-col {
  display: block;
  margin-bottom: 8px;
  color: #3f3f46;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.sub-flat-holder .post-container {
  font-weight: 400;
  color: #71717a;
  text-transform: none;
  letter-spacing: 0;
}
.sub-flat-holder .area-chip {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd6c8 !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #27272a !important;
  font-size: 15px;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-align: center;
}
.sub-flat-holder .area-chip::placeholder {
  color: #a1a1aa;
  opacity: 1;
}
.sub-flat-holder .area-chip:focus {
  outline: none;
  border-color: #a16207 !important;
  box-shadow: 0 0 0 4px rgba(161, 98, 7, 0.12) !important;
  transform: translateY(-1px);
}
.sub-flat-holder textarea.area-chip {
  min-height: 190px;
  resize: vertical;
  text-align: left;
}
.sub-flat-holder select.area-chip {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a16207' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 12px 8px !important;
  padding-right: 42px;
  cursor: pointer;
}
.sub-flat-holder .content-big-row {
  padding: 18px;
  border: 1px solid #e7e0d3;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
}
.sub-flat-holder .content-core-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sub-flat-holder .plain-closed-tag {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #a16207;
}
.sub-flat-holder .input-active-area {
  color: #52525b;
  font-size: 14px;
  line-height: 1.75;
  cursor: pointer;
}
.sub-flat-holder .input-active-area a {
  color: #a16207;
  text-decoration: none;
  font-weight: 600;
}
.sub-flat-holder .input-active-area a:hover,
.sub-flat-holder .input-active-area a:focus {
  text-decoration: underline;
}
.sub-flat-holder .tag-slot {
  display: flex;
  justify-content: center;
}
.sub-flat-holder .col-text {
  min-width: 240px;
  padding: 16px 32px;
  border: 1px solid #a16207;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #ca8a04 0%, #a16207 100%);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(161, 98, 7, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.sub-flat-holder .col-text:hover,
.sub-flat-holder .col-text:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(161, 98, 7, 0.26);
  outline: none;
}
.sub-flat-holder .col-text:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(161, 98, 7, 0.16);
}
.sub-flat-holder .modulewrap {
  margin: 0;
  color: #71717a;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}
.sub-flat-holder .stackunit {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
}
.sub-flat-holder .text-tall-flag {
  background: #f7fee7;
  border: 1px solid #d9f99d;
  color: #3f6212;
}
.sub-flat-holder .card-plain-area {
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
}
@media (max-width: 767px) {
  .sub-flat-holder {
    padding: 0 16px !important;
  }
  .sub-flat-holder .dark-input,
  .sub-flat-holder .ui-shell {
    padding-left: 18px;
    padding-right: 18px;
  }
  .sub-flat-holder .framegrid {
    font-size: 26px;
  }
  .sub-flat-holder .col-text {
    width: 100%;
    min-width: 0;
  }
}

.splitlayer {
  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;
}

.splitlayer *,
.splitlayer *::before,
.splitlayer *::after {
  box-sizing: border-box;
}

.splitlayer.entered {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.splitlayer.exited {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.985);
}

.boxarea {
  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;
}

.boxarea::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%);
}

.boxarea::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;
}

.footbox {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
}

.areabox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-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);
}

.traceunit {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.rowholder {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rootwrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blockrow {
  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;
}

.wrapperunit {
  display: inline-block;
  color: #3d2c22;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
}

.dockwrap {
  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;
}

.bandwrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.aux-links-text {
  display: block;
  color: #7a6b60;
  font-size: 12px;
  line-height: 1.4;
}

.consent-links-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.consent-links-list 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;
}

.consent-links-list a:hover {
  color: #7c4c2c;
  border-bottom-color: #7c4c2c;
}

.consent-links-list span {
  display: inline-block;
  color: #7a6b60;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.sectional {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

#noticeCloseBtn {
  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);
}

#noticeCloseBtn:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .splitlayer {
    width: min(680px, calc(100vw - 28px));
    max-width: 680px;
  }

  .footbox {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .sectional {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  #noticeCloseBtn {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .splitlayer {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
  }

  .boxarea {
    padding: 16px;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footbox {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .areabox {
    justify-content: center;
  }

  .rowholder {
    align-items: center;
    text-align: center;
  }

  .rootwrap {
    justify-content: center;
  }

  .wrapperunit {
    text-align: center;
    font-size: 18px;
  }

  .dockwrap {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .bandwrap {
    align-items: center;
    text-align: center;
  }

  .consent-links-list {
    justify-content: center;
  }

  .sectional {
    flex-direction: column;
    width: 100%;
  }

  #noticeCloseBtn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .splitlayer {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .boxarea {
    padding: 14px;
    border-radius: 18px;
  }

  .panel-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .traceunit {
    width: 38px;
    height: 38px;
  }

  .wrapperunit {
    font-size: 17px;
  }

  .aux-links-text,
  .consent-links-list a,
  .consent-links-list span {
    font-size: 12px;
  }
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
