:root {

  --site-primary-rgb: 13, 110, 253;
  --site-warning-rgb: 255, 193, 7;
  --site-danger-rgb: 220, 53, 69;
  --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);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--site-border-width) solid;
  opacity: 0.25;
}

 h4, .h4, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--site-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

strong {
  font-weight: bolder;
}

a {
  color: rgba(var(--site-link-color-rgb), var(--site-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --site-link-color-rgb: var(--site-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

[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 > hr {
  margin-right: 0;
  margin-left: 0;
}

.alert {
  --site-alert-bg: transparent;
  --site-alert-padding-x: 1rem;
  --site-alert-padding-y: 1rem;
  --site-alert-margin-bottom: 1rem;
  --site-alert-color: inherit;
  --site-alert-border-color: transparent;
  --site-alert-border: var(--site-border-width) solid var(--site-alert-border-color);
  --site-alert-border-radius: var(--site-border-radius);
  --site-alert-link-color: inherit;
  position: relative;
  padding: var(--site-alert-padding-y) var(--site-alert-padding-x);
  margin-bottom: var(--site-alert-margin-bottom);
  color: var(--site-alert-color);
  background-color: var(--site-alert-bg);
  border: var(--site-alert-border);
  border-radius: var(--site-alert-border-radius);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--site-progress-height);
  }
}

.btn-close {
  --site-btn-close-color: #000;
  --site-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --site-btn-close-opacity: 0.5;
  --site-btn-close-hover-opacity: 0.75;
  --site-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --site-btn-close-focus-opacity: 1;
  --site-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--site-btn-close-color);
  background: transparent var(--site-btn-close-bg) center/1em auto no-repeat;
  filter: var(--site-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--site-btn-close-opacity);
}
.btn-close:hover {
  color: var(--site-btn-close-color);
  text-decoration: none;
  opacity: var(--site-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--site-btn-close-focus-shadow);
  opacity: var(--site-btn-close-focus-opacity);
}
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--site-btn-close-disabled-opacity);
}

.btn-close-white {
  --site-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root {
  --site-btn-close-filter: ;
}

:root {
  --site-carousel-indicator-active-bg: #fff;
  --site-carousel-caption-color: #fff;
  --site-carousel-control-icon-filter: ;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) ;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.text-primary {
  --site-text-opacity: 1;
  color: rgba(var(--site-primary-rgb), var(--site-text-opacity)) !important;
}

.text-warning {
  --site-text-opacity: 1;
  color: rgba(var(--site-warning-rgb), var(--site-text-opacity)) !important;
}

.text-danger {
  --site-text-opacity: 1;
  color: rgba(var(--site-danger-rgb), var(--site-text-opacity)) !important;
}
@media (min-width: 768px) {
  .justify-content-md-center {
    justify-content: center !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 .bodywrap {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .site-nav .bodywrap img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
  .site-nav .plane {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .site-nav .plane, .site-nav .plane: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/glyphs2.woff2') format('woff2'), url('fonts/glyphs2.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,
.lead-h2,
.main-heading,
.page-h,
.section-h,
.section-heading,
.topic-title {
  font-style: normal;
  line-height: 1.3;
}

.contentwrap {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h4,
.display-1,
.display-2,
.display-4,
.display-5,
.drawunit,
span,
p,
a {
  line-height: 1;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}

strong {
  font-weight: bold;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  transition-delay: 9999s;
  transition-property: background-color, color;
}

textarea[type=hidden] {
  display: none;
}

section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hidden {
  visibility: hidden;
}

.basebox {
  color: #ffffff;
}

.partwrapbox {
  text-align: left;
}

.innerwrap {
  text-align: center;
}

.contentbox {
  font-weight: 300;
}

.gridrowunit {
  font-weight: 400;
}

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-box {
  width: 100%;
}.block-action,
.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 .page-btn,
nav .primary-cta,
nav .section-action,
nav .section-cta {
  margin-left: 0rem;
  margin-right: 0rem;
}

.gridrowunit {
  font-weight: 400;
}

@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 .bodywrap 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 .page-btn,
form .primary-cta,
form .section-action,
form .section-cta {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .btn {
  min-height: 48px;
}

.spanlayer {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

ul {
  margin-bottom: 2.3125rem;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.container,
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > [class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.item {
  position: relative;
}
@font-face {
  font-family: 'menu2';
  font-display: swap;
  src: url('fonts/balance2.woff2') format('woff2'), url('fonts/balance2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.btn {
  border-width: 1px;
}
body {
  font-family: Akt;
}
.display-1 {
  font-family: 'Akt', sans-serif;
  font-size: 3.4rem;
  line-height: 1.1;
  font-weight: 300;
}
.display-2 {
  font-family: 'Akt', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 300;
}
.display-4 {
  font-family: 'Akt', sans-serif;
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 300;
}
.display-5 {
  font-family: 'Akt', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 300;
}
.drawunit {
  font-family: 'Akt', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 300;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 2.72rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.38rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .drawunit {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 2.38rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.25 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.2 * (1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62))));
  }
  .drawunit {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.25 * (1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62))));
  }
}

.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #666666 !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #666666 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #dfdede !important;
  border-color: #dfdede !important;
  color: #474444 !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus {
  color: inherit;
  background-color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #474444 !important;
  background-color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #666666 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-info:disabled {
  color: #666666 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #e0dfdb !important;
  border-color: #e0dfdb !important;
  color: #4a483f !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus {
  color: inherit;
  background-color: #f8f7f6 !important;
  border-color: #f8f7f6 !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #4a483f !important;
  background-color: #f8f7f6 !important;
  border-color: #f8f7f6 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus {
  color: inherit;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #5a5f4b !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: #5a5f4b !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: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #dfdede;
  color: #dfdede;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  color: #b4b2b2 !important;
  background-color: transparent !important;
  border-color: #b4b2b2 !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #605e5e !important;
  background-color: #dfdede !important;
  border-color: #dfdede !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}

.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #e0dfdb;
  color: #e0dfdb;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  color: #b8b6ac !important;
  background-color: transparent !important;
  border-color: #b8b6ac !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #656257 !important;
  background-color: #e0dfdb !important;
  border-color: #e0dfdb !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !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: #ffffff !important;
}
.text-warning {
  color: #000000 !important;
}
.text-danger {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}.block-action .btn:not(.btn-form),
.page-btn .btn:not(.btn-form),
.primary-cta .btn:not(.btn-form),
.section-action .btn:not(.btn-form),
.section-cta .btn:not(.btn-form) {
  border-radius: 100px;
}
a,
a:hover {
  color: #ffffff;
}

body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}.block-action .btn,
.page-btn .btn,
.primary-cta .btn,
.section-action .btn,
.section-cta .btn {
  position: relative;
  z-index: 1;
  font-weight: 300;
  padding: 17px 44px;
}.block-action .btn-black,
.page-btn .btn-black,
.primary-cta .btn-black,
.section-action .btn-black,
.section-cta .btn-black {
  overflow: hidden;
  border: none !important;
  background-color: transparent !important;
  color: #ffffff !important;
  backdrop-filter: blur(3px);
  box-shadow: 2px 0 1px -1px #ffffff, -2px 0 1px -1px #ffffff;
}.block-action .btn-black::before,
.page-btn .btn-black::before,
.primary-cta .btn-black::before,
.section-action .btn-black::before,
.section-cta .btn-black::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .2;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}.block-action .btn-black::after,
.page-btn .btn-black::after,
.primary-cta .btn-black::after,
.section-action .btn-black::after,
.section-cta .btn-black::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
}.block-action .btn-black:hover,
.page-btn .btn-black:hover,
.primary-cta .btn-black:hover,
.section-action .btn-black:hover,
.section-cta .btn-black:hover,
.block-action .btn-black:focus,
.page-btn .btn-black:focus,
.primary-cta .btn-black:focus,
.section-action .btn-black:focus,
.section-cta .btn-black:focus {
  background-color: transparent !important;
  color: #ffffff !important;
}.block-action .btn-black:hover::before,
.page-btn .btn-black:hover::before,
.primary-cta .btn-black:hover::before,
.section-action .btn-black:hover::before,
.section-cta .btn-black:hover::before,
.block-action .btn-black:focus::before,
.page-btn .btn-black:focus::before,
.primary-cta .btn-black:focus::before,
.section-action .btn-black:focus::before,
.section-cta .btn-black:focus::before {
  opacity: .3;
}.block-action .btn-white,
.page-btn .btn-white,
.primary-cta .btn-white,
.section-action .btn-white,
.section-cta .btn-white {
  overflow: hidden;
  border: none !important;
  background-color: transparent !important;
  color: #ffffff !important;
  backdrop-filter: blur(3px);
  box-shadow: 2px 0 1px -1px #000000, -2px 0 1px -1px #000000, 0 6px 12px 0 #e6e6e6;
}.block-action .btn-white::before,
.page-btn .btn-white::before,
.primary-cta .btn-white::before,
.section-action .btn-white::before,
.section-cta .btn-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .04;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}.block-action .btn-white::after,
.page-btn .btn-white::after,
.primary-cta .btn-white::after,
.section-action .btn-white::after,
.section-cta .btn-white::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  z-index: -1;
  pointer-events: none;
  opacity: .01;
}.block-action .btn-white:hover,
.page-btn .btn-white:hover,
.primary-cta .btn-white:hover,
.section-action .btn-white:hover,
.section-cta .btn-white:hover,
.block-action .btn-white:focus,
.page-btn .btn-white:focus,
.primary-cta .btn-white:focus,
.section-action .btn-white:focus,
.section-cta .btn-white:focus {
  background-color: transparent !important;
  color: #ffffff !important;
}.block-action .btn-white:hover::before,
.page-btn .btn-white:hover::before,
.primary-cta .btn-white:hover::before,
.section-action .btn-white:hover::before,
.section-cta .btn-white:hover::before,
.block-action .btn-white:focus::before,
.page-btn .btn-white:focus::before,
.primary-cta .btn-white:focus::before,
.section-action .btn-white:focus::before,
.section-cta .btn-white:focus::before {
  opacity: 0;
}
img,
.card-wrap,
.card-wrapper,
.card,
.item-wrapper {
  border-radius: 40px !important;
}
@media (max-width: 992px) {
  img,
  .card-wrap,
  .card-wrapper,
  .card,
  .item-wrapper {
    border-radius: 24px !important;
  }
}
.nodemapunit {
  border-radius: 8px !important;
}
.partunit {
  border-radius: 88px !important;
}
@media (max-width: 992px) {
  .partunit {
    border-radius: 56px !important;
  }
}
ul.navbar-nav {
  border-radius: 100px !important;
}
@media (max-width: 992px) {
  ul.navbar-nav {
    border-radius: 16px !important;
  }
}
ul.navbar-nav::before,
ul.navbar-nav::after {
  border-radius: 100px !important;
}
@media (max-width: 992px) {
  ul.navbar-nav::before,
  ul.navbar-nav::after {
    border-radius: 16px !important;
  }
}
ul.navbar-nav .nav-item .nav-link {
  border-radius: 100px !important;
}
ul.navbar-nav .nav-item .nav-link::before {
  border-radius: 100px !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.fieldsetwrap .site-nav {
  position: relative !important;
}
.fieldsetwrap .site-nav {
  position: absolute !important;
}
.fieldsetwrap .container-fluid {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .fieldsetwrap .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.fieldsetwrap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.fieldsetwrap .nav-link {
  position: relative;
}
.fieldsetwrap .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .fieldsetwrap .container {
    flex-wrap: nowrap;
  }
}
.fieldsetwrap .nav-item:focus,
.fieldsetwrap .nav-link:focus {
  outline: none;
}
.fieldsetwrap .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.fieldsetwrap .navbar .bodywrap {
  margin-right: 1rem;
}
.fieldsetwrap .navbar .bodywrap img {
  width: auto;
}
.fieldsetwrap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .fieldsetwrap .navbar .bodywrap img {
    height: 3rem !important;
  }
  .fieldsetwrap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .fieldsetwrap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .fieldsetwrap .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.fieldsetwrap .navbar-brand {
  min-height: 120px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.fieldsetwrap .navbar-brand .plane {
  line-height: inherit !important;
  font-weight: 400;
}
.fieldsetwrap .navbar-brand .plane:hover,
.fieldsetwrap .navbar-brand .plane:focus {
  color: #000000 !important;
}
.fieldsetwrap .navbar-brand .bodywrap a {
  outline: none;
}
.fieldsetwrap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.fieldsetwrap ul.navbar-nav {
  position: relative;
  flex-wrap: wrap;
  padding: 8px;
  border: none !important;
  background-color: transparent !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180 !important;
  backdrop-filter: blur(5px);
  gap: 0 6px;
}
.fieldsetwrap ul.navbar-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3e9e3;
  opacity: .3;
  pointer-events: none;
}
.fieldsetwrap ul.navbar-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #f3e9e3;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
}
@media (min-width: 991px) {
  .fieldsetwrap ul.navbar-nav {
    background-color: transparent;
    border: 2px solid transparent;
  }
}
@media (max-width: 992px) {
  .fieldsetwrap ul.navbar-nav {
    box-shadow: none !important;
  }
}
.fieldsetwrap .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .fieldsetwrap .navbar-buttons {
    text-align: left;
  }
}
.fieldsetwrap .navbar-buttons .btn {
  white-space: nowrap;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .fieldsetwrap .navbar-buttons .btn {
    width: auto !important;
  }
}
.fieldsetwrap button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f5f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}

.fieldsetwrap .site-nav {
  padding: 0 1rem;
}
.fieldsetwrap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .fieldsetwrap .navbar {
    height: 120px;
  }
  .fieldsetwrap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.fieldsetwrap .navbar-nav {
  margin: 0 auto;
}
.fieldsetwrap .nav-item {
  padding: 0;
  margin: 0;
}
.fieldsetwrap .nav-item .nav-link {
  position: relative;
  z-index: 1;
  padding: 9px 38px !important;
  border: 1px solid transparent;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  background-color: transparent;
}
.fieldsetwrap .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}
.fieldsetwrap .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.fieldsetwrap .nav-item .nav-link:hover,
.fieldsetwrap .nav-item .nav-link:focus {
  color: #000000 !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180;
}
.fieldsetwrap .nav-item .nav-link:hover::after,
.fieldsetwrap .nav-item .nav-link:focus::after {
  color: #000000 !important;
}
.fieldsetwrap .nav-item .nav-link:hover::before,
.fieldsetwrap .nav-item .nav-link:focus::before {
  opacity: .2;
}
.fieldsetwrap .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar {
    justify-content: flex-start !important;
  }
  .fieldsetwrap .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .fieldsetwrap .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .fieldsetwrap .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .fieldsetwrap .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .fieldsetwrap .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.fieldsetwrap .layerbox {
  min-height: 120px;
}
.zonebox {
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  background-image: url("images/quiet1.jpg");
}
.zonebox .grid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #ffffff -30%, transparent 100%);
}
.zonebox .holdunit {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .zonebox .holdunit {
    padding: 50px 0;
  }
}.zonebox .holdunit .block-title,
.zonebox .holdunit .chapter-title,
.zonebox .holdunit .lead-h2,
.zonebox .holdunit .main-heading,
.zonebox .holdunit .page-h,
.zonebox .holdunit .section-h,
.zonebox .holdunit .section-heading,
.zonebox .holdunit .topic-title {
  margin-bottom: 20px;
}
.zonebox .holdunit .text-wrapper .contentwrap {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .zonebox .holdunit .text-wrapper .contentwrap {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .zonebox .holdunit .text-wrapper .contentwrap {
    width: 100%;
  }
}.zonebox .holdunit .block-action,
.zonebox .holdunit .page-btn,
.zonebox .holdunit .primary-cta,
.zonebox .holdunit .section-action,
.zonebox .holdunit .section-cta {
  margin-top: 20px;
  margin-bottom: -9.6px;
}.zonebox .block-title,
.zonebox .chapter-title,
.zonebox .lead-h2,
.zonebox .main-heading,
.zonebox .page-h,
.zonebox .section-h,
.zonebox .section-heading,
.zonebox .topic-title {
  color: #ffffff;
}
.zonebox .contentwrap,
.zonebox .text-wrapper {
  color: #000000;
  text-align: center;
}.zonebox .block-title,
.zonebox .chapter-title,
.zonebox .lead-h2,
.zonebox .main-heading,
.zonebox .page-h,
.zonebox .section-h,
.zonebox .section-heading,
.zonebox .topic-title,
.zonebox .block-action,
.zonebox .page-btn,
.zonebox .primary-cta,
.zonebox .section-action,
.zonebox .section-cta {
  text-align: center;
  color: #928180;
}
.splitbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}.splitbox .holdunit .block-title,
.splitbox .holdunit .chapter-title,
.splitbox .holdunit .lead-h2,
.splitbox .holdunit .main-heading,
.splitbox .holdunit .page-h,
.splitbox .holdunit .section-h,
.splitbox .holdunit .section-heading,
.splitbox .holdunit .topic-title {
  margin-bottom: 16px;
}
.splitbox .holdunit .text-wrapper .contentwrap {
  display: inline-block;
  width: 32%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .splitbox .holdunit .text-wrapper .contentwrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .splitbox .holdunit .text-wrapper .contentwrap {
    width: 100%;
  }
}.splitbox .holdunit .block-action,
.splitbox .holdunit .page-btn,
.splitbox .holdunit .primary-cta,
.splitbox .holdunit .section-action,
.splitbox .holdunit .section-cta {
  margin-top: 34px;
}
@media (max-width: 992px) {.splitbox .holdunit .block-action,
.splitbox .holdunit .page-btn,
.splitbox .holdunit .primary-cta,
.splitbox .holdunit .section-action,
.splitbox .holdunit .section-cta {
    margin-top: 16px;
  }
}.splitbox .block-title,
.splitbox .chapter-title,
.splitbox .lead-h2,
.splitbox .main-heading,
.splitbox .page-h,
.splitbox .section-h,
.splitbox .section-heading,
.splitbox .topic-title {
  color: #47201c;
}
.splitbox .contentwrap,
.splitbox .text-wrapper {
  color: #000000;
  text-align: center;
}.splitbox .block-title,
.splitbox .chapter-title,
.splitbox .lead-h2,
.splitbox .main-heading,
.splitbox .page-h,
.splitbox .section-h,
.splitbox .section-heading,
.splitbox .topic-title,
.splitbox .block-action,
.splitbox .page-btn,
.splitbox .primary-cta,
.splitbox .section-action,
.splitbox .section-cta {
  text-align: center;
  color: #928180;
}
.tilemap {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f5f4f4;
}
.tilemap .spanbox {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .tilemap .spanbox {
    margin-bottom: 40px;
  }
}.tilemap .spanbox .block-title,
.tilemap .spanbox .chapter-title,
.tilemap .spanbox .lead-h2,
.tilemap .spanbox .main-heading,
.tilemap .spanbox .page-h,
.tilemap .spanbox .section-h,
.tilemap .spanbox .section-heading,
.tilemap .spanbox .topic-title {
  margin-bottom: 15px;
}
.tilemap .spanbox .text-wrapper .contentwrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tilemap .spanbox .text-wrapper .contentwrap {
    width: 100%;
  }
}
.tilemap .stackbox {
  margin: 0 -20px;
}
.tilemap .stackbox .item {
  padding: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .tilemap .stackbox .item {
    margin-bottom: 30px;
  }
  .tilemap .stackbox .item:last-child {
    margin-bottom: 0;
  }
}.tilemap .stackbox .item:hover .item-wrapper .ridge .block-action,
.tilemap .stackbox .item:hover .item-wrapper .ridge .page-btn,
.tilemap .stackbox .item:hover .item-wrapper .ridge .primary-cta,
.tilemap .stackbox .item:hover .item-wrapper .ridge .section-action,
.tilemap .stackbox .item:hover .item-wrapper .ridge .section-cta,
.tilemap .stackbox .item:focus .item-wrapper .ridge .block-action,
.tilemap .stackbox .item:focus .item-wrapper .ridge .page-btn,
.tilemap .stackbox .item:focus .item-wrapper .ridge .primary-cta,
.tilemap .stackbox .item:focus .item-wrapper .ridge .section-action,
.tilemap .stackbox .item:focus .item-wrapper .ridge .section-cta {
  opacity: 1;
}
.tilemap .stackbox .item .item-wrapper {
  height: 100%;
  border: 1px solid #b7a9a8;
}
.tilemap .stackbox .item .item-wrapper .ridge {
  position: relative;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .tilemap .stackbox .item .item-wrapper .ridge {
    height: 300px;
  }
}
.tilemap .stackbox .item .item-wrapper .ridge .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
@media (max-width: 768px) {
  .tilemap .stackbox .item .item-wrapper .ridge .item-img img {
    height: 300px;
  }
}.tilemap .stackbox .item .item-wrapper .ridge .block-action,
.tilemap .stackbox .item .item-wrapper .ridge .page-btn,
.tilemap .stackbox .item .item-wrapper .ridge .primary-cta,
.tilemap .stackbox .item .item-wrapper .ridge .section-action,
.tilemap .stackbox .item .item-wrapper .ridge .section-cta {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: all .3s ease;
}
.tilemap .stackbox .item .item-wrapper .card-box {
  padding: 35px;
  border-top: 1px solid #b7a9a8;
}
@media (max-width: 992px) {
  .tilemap .stackbox .item .item-wrapper .card-box {
    padding: 30px;
  }
}
.tilemap .stackbox .item .item-wrapper .card-box .item-title {
  margin-bottom: 15px;
}
.tilemap .stackbox .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tilemap .stackbox .item .item-wrapper .card-box .item-text {
    margin-top: 15px;
  }
}.tilemap .block-title,
.tilemap .chapter-title,
.tilemap .lead-h2,
.tilemap .main-heading,
.tilemap .page-h,
.tilemap .section-h,
.tilemap .section-heading,
.tilemap .topic-title {
  color: #928180;
  text-align: center;
}
.tilemap .contentwrap,
.tilemap .text-wrapper {
  color: #000000;
  text-align: center;
}
.tilemap .item-title {
  color: #1d1d1d;
}
.tilemap .item-text {
  color: #000000;
}.tilemap .item-title,
.tilemap .block-action,
.tilemap .page-btn,
.tilemap .primary-cta,
.tilemap .section-action,
.tilemap .section-cta {
  color: #000000;
}
.patch {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}.patch .holdunit .block-title,
.patch .holdunit .chapter-title,
.patch .holdunit .lead-h2,
.patch .holdunit .main-heading,
.patch .holdunit .page-h,
.patch .holdunit .section-h,
.patch .holdunit .section-heading,
.patch .holdunit .topic-title {
  margin-bottom: 16px;
}
.patch .holdunit .text-wrapper .contentwrap {
  display: inline-block;
  width: 32%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .patch .holdunit .text-wrapper .contentwrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .patch .holdunit .text-wrapper .contentwrap {
    width: 100%;
  }
}.patch .holdunit .block-action,
.patch .holdunit .page-btn,
.patch .holdunit .primary-cta,
.patch .holdunit .section-action,
.patch .holdunit .section-cta {
  margin-top: 34px;
}
@media (max-width: 992px) {.patch .holdunit .block-action,
.patch .holdunit .page-btn,
.patch .holdunit .primary-cta,
.patch .holdunit .section-action,
.patch .holdunit .section-cta {
    margin-top: 16px;
  }
}.patch .block-title,
.patch .chapter-title,
.patch .lead-h2,
.patch .main-heading,
.patch .page-h,
.patch .section-h,
.patch .section-heading,
.patch .topic-title {
  color: #47201c;
}
.patch .contentwrap,
.patch .text-wrapper {
  color: #000000;
  text-align: center;
}.patch .block-title,
.patch .chapter-title,
.patch .lead-h2,
.patch .main-heading,
.patch .page-h,
.patch .section-h,
.patch .section-heading,
.patch .topic-title,
.patch .block-action,
.patch .page-btn,
.patch .primary-cta,
.patch .section-action,
.patch .section-cta {
  text-align: center;
  color: #928180;
}
.modtrack {
  padding-top: 5rem;
  padding-bottom: 5rem;
  align-items: flex-end;
  background-color: #f5f4f4;
}.modtrack .holdunit .block-title,
.modtrack .holdunit .chapter-title,
.modtrack .holdunit .lead-h2,
.modtrack .holdunit .main-heading,
.modtrack .holdunit .page-h,
.modtrack .holdunit .section-h,
.modtrack .holdunit .section-heading,
.modtrack .holdunit .topic-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {.modtrack .holdunit .block-title,
.modtrack .holdunit .chapter-title,
.modtrack .holdunit .lead-h2,
.modtrack .holdunit .main-heading,
.modtrack .holdunit .page-h,
.modtrack .holdunit .section-h,
.modtrack .holdunit .section-heading,
.modtrack .holdunit .topic-title {
    margin-bottom: 22px;
  }
}
.modtrack .holdunit .text-wrapper .contentwrap {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .modtrack .holdunit .text-wrapper .contentwrap {
    width: 100%;
  }
}.modtrack .holdunit .block-action,
.modtrack .holdunit .page-btn,
.modtrack .holdunit .primary-cta,
.modtrack .holdunit .section-action,
.modtrack .holdunit .section-cta {
  margin-top: 22px;
}
@media (max-width: 992px) {.modtrack .holdunit .block-action,
.modtrack .holdunit .page-btn,
.modtrack .holdunit .primary-cta,
.modtrack .holdunit .section-action,
.modtrack .holdunit .section-cta {
    margin-top: 12px;
  }
}
.modtrack .holdunit .ridge {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .modtrack .holdunit .ridge {
    margin-top: 22px;
  }
}
.modtrack .holdunit .ridge img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}.modtrack .block-title,
.modtrack .chapter-title,
.modtrack .lead-h2,
.modtrack .main-heading,
.modtrack .page-h,
.modtrack .section-h,
.modtrack .section-heading,
.modtrack .topic-title,
.modtrack .block-action,
.modtrack .page-btn,
.modtrack .primary-cta,
.modtrack .section-action,
.modtrack .section-cta {
  color: #928180;
  text-align: center;
}
.modtrack .contentwrap,
.modtrack .text-wrapper {
  color: #000000;
  text-align: center;
}
.shell {
  position: relative;
  background-color: #ffffff;
  align-items: flex-end;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.shell .cont-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
.shell .cont-wrapper .stacklayer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.shell .cont-wrapper .stacklayer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f5f4f4;
  opacity: 0.8;
  pointer-events: none;
}
.shell .cont-wrapper .stacklayer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shell .cont-wrapper {
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
}
.shell .holdunit {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  pointer-events: none;
}
@media (max-width: 992px) {
  .shell .group {
    margin-bottom: 24px;
  }
}
.shell .group .gripbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.shell .group .gripbox .pathwrap {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  background-color: #b7a9a8;
  display: flex;
}
.shell .group .gripbox .strip {
  pointer-events: visible;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}.shell .spanbox .block-title,
.shell .spanbox .chapter-title,
.shell .spanbox .lead-h2,
.shell .spanbox .main-heading,
.shell .spanbox .page-h,
.shell .spanbox .section-h,
.shell .spanbox .section-heading,
.shell .spanbox .topic-title {
  pointer-events: visible;
  margin-bottom: 24px;
}
.shell .spanbox .text-wrapper .contentwrap {
  pointer-events: visible;
  margin-bottom: 0;
}.shell .spanbox .block-action,
.shell .spanbox .page-btn,
.shell .spanbox .primary-cta,
.shell .spanbox .section-action,
.shell .spanbox .section-cta {
  pointer-events: visible;
  margin-top: 24px;
}
.shell .strip {
  color: #222f30;
}.shell .block-title,
.shell .chapter-title,
.shell .lead-h2,
.shell .main-heading,
.shell .page-h,
.shell .section-h,
.shell .section-heading,
.shell .topic-title {
  color: #ffffff;
}
.shell .contentwrap {
  color: #ffffff;
}.shell .block-title,
.shell .chapter-title,
.shell .lead-h2,
.shell .main-heading,
.shell .page-h,
.shell .section-h,
.shell .section-heading,
.shell .topic-title,
.shell .block-action,
.shell .page-btn,
.shell .primary-cta,
.shell .section-action,
.shell .section-cta {
  color: #928180;
}
.shell .contentwrap,
.shell .text-wrapper {
  color: #000000;
}
.shell .strip,
.shell .group {
  color: #000000;
}
.edgebox {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.edgebox .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .edgebox .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .edgebox .container {
    padding: 0 6px;
  }
}
.edgebox .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #f5f4f4;
}
@media (max-width: 1440px) {
  .edgebox .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .edgebox .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .edgebox .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .edgebox .row {
    padding: 50px 30px;
  }
}
.edgebox .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.edgebox .spanbox {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .edgebox .spanbox {
    padding: 0;
  }
}.edgebox .spanbox .block-title,
.edgebox .spanbox .chapter-title,
.edgebox .spanbox .lead-h2,
.edgebox .spanbox .main-heading,
.edgebox .spanbox .page-h,
.edgebox .spanbox .section-h,
.edgebox .spanbox .section-heading,
.edgebox .spanbox .topic-title {
  margin-bottom: 50px;
}.edgebox .spanbox .block-title span,
.edgebox .spanbox .chapter-title span,
.edgebox .spanbox .lead-h2 span,
.edgebox .spanbox .main-heading span,
.edgebox .spanbox .page-h span,
.edgebox .spanbox .section-h span,
.edgebox .spanbox .section-heading span,
.edgebox .spanbox .topic-title span {
  color: #928180;
}.edgebox .spanbox .block-action .btn,
.edgebox .spanbox .page-btn .btn,
.edgebox .spanbox .primary-cta .btn,
.edgebox .spanbox .section-action .btn,
.edgebox .spanbox .section-cta .btn {
  margin-bottom: 0;
}
.edgebox .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .edgebox .list-wrapper {
    padding: 0;
  }
}
.edgebox .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.edgebox .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.edgebox .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.edgebox .list-wrapper .list .item-wrap:hover,
.edgebox .list-wrapper .list .item-wrap:focus {
  color: #b7a9a8;
}
.edgebox .layersegment {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.edgebox .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title {
  color: #ffffff;
}
.edgebox .list {
  color: #ffffff;
}
.edgebox .list,
.edgebox .item-wrap {
  color: #000000;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title,
.edgebox .block-action,
.edgebox .page-btn,
.edgebox .primary-cta,
.edgebox .section-action,
.edgebox .section-cta {
  color: #000000;
}
.fieldsetwrap .site-nav {
  position: relative !important;
}
.fieldsetwrap .site-nav {
  position: absolute !important;
}
.fieldsetwrap .container-fluid {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .fieldsetwrap .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.fieldsetwrap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.fieldsetwrap .nav-link {
  position: relative;
}
.fieldsetwrap .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .fieldsetwrap .container {
    flex-wrap: nowrap;
  }
}
.fieldsetwrap .nav-item:focus,
.fieldsetwrap .nav-link:focus {
  outline: none;
}
.fieldsetwrap .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.fieldsetwrap .navbar .bodywrap {
  margin-right: 1rem;
}
.fieldsetwrap .navbar .bodywrap img {
  width: auto;
}
.fieldsetwrap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .fieldsetwrap .navbar .bodywrap img {
    height: 3rem !important;
  }
  .fieldsetwrap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .fieldsetwrap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .fieldsetwrap .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.fieldsetwrap .navbar-brand {
  min-height: 120px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.fieldsetwrap .navbar-brand .plane {
  line-height: inherit !important;
  font-weight: 400;
}
.fieldsetwrap .navbar-brand .plane:hover,
.fieldsetwrap .navbar-brand .plane:focus {
  color: #000000 !important;
}
.fieldsetwrap .navbar-brand .bodywrap a {
  outline: none;
}
.fieldsetwrap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.fieldsetwrap ul.navbar-nav {
  position: relative;
  flex-wrap: wrap;
  padding: 8px;
  border: none !important;
  background-color: transparent !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180 !important;
  backdrop-filter: blur(5px);
  gap: 0 6px;
}
.fieldsetwrap ul.navbar-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3e9e3;
  opacity: .3;
  pointer-events: none;
}
.fieldsetwrap ul.navbar-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #f3e9e3;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
}
@media (min-width: 991px) {
  .fieldsetwrap ul.navbar-nav {
    background-color: transparent;
    border: 2px solid transparent;
  }
}
@media (max-width: 992px) {
  .fieldsetwrap ul.navbar-nav {
    box-shadow: none !important;
  }
}
.fieldsetwrap .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .fieldsetwrap .navbar-buttons {
    text-align: left;
  }
}
.fieldsetwrap .navbar-buttons .btn {
  white-space: nowrap;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .fieldsetwrap .navbar-buttons .btn {
    width: auto !important;
  }
}
.fieldsetwrap button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f5f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}

.fieldsetwrap .site-nav {
  padding: 0 1rem;
}
.fieldsetwrap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .fieldsetwrap .navbar {
    height: 120px;
  }
  .fieldsetwrap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.fieldsetwrap .navbar-nav {
  margin: 0 auto;
}
.fieldsetwrap .nav-item {
  padding: 0;
  margin: 0;
}
.fieldsetwrap .nav-item .nav-link {
  position: relative;
  z-index: 1;
  padding: 9px 38px !important;
  border: 1px solid transparent;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  background-color: transparent;
}
.fieldsetwrap .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}
.fieldsetwrap .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.fieldsetwrap .nav-item .nav-link:hover,
.fieldsetwrap .nav-item .nav-link:focus {
  color: #000000 !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180;
}
.fieldsetwrap .nav-item .nav-link:hover::after,
.fieldsetwrap .nav-item .nav-link:focus::after {
  color: #000000 !important;
}
.fieldsetwrap .nav-item .nav-link:hover::before,
.fieldsetwrap .nav-item .nav-link:focus::before {
  opacity: .2;
}
.fieldsetwrap .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar {
    justify-content: flex-start !important;
  }
  .fieldsetwrap .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .fieldsetwrap .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .fieldsetwrap .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .fieldsetwrap .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .fieldsetwrap .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.fieldsetwrap .layerbox {
  min-height: 120px;
}
.holdwrap {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("images/dry1.jpg");
}
.holdwrap .stackbox {
  margin: 0 -20px;
}
.holdwrap .stackbox .card {
  padding: 0 20px;
  justify-content: center;
}
.holdwrap .holdunit {
  position: relative;
  padding: 100px 40px;
  min-height: 500px;
}
@media (max-width: 992px) {
  .holdwrap .holdunit {
    padding: 40px 24px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .holdwrap .holdunit {
    padding: 40px 12px;
  }
}
.holdwrap .holdunit .ridge img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.holdwrap .holdunit .gridnode {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.9;
  pointer-events: none;
}
.holdwrap .holdunit .layerbox {
  position: relative;
  z-index: 1;
}.holdwrap .holdunit .layerbox .block-title,
.holdwrap .holdunit .layerbox .chapter-title,
.holdwrap .holdunit .layerbox .lead-h2,
.holdwrap .holdunit .layerbox .main-heading,
.holdwrap .holdunit .layerbox .page-h,
.holdwrap .holdunit .layerbox .section-h,
.holdwrap .holdunit .layerbox .section-heading,
.holdwrap .holdunit .layerbox .topic-title {
  margin-bottom: 24px;
}
.holdwrap .holdunit .layerbox .text-wrapper .contentwrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .holdwrap .holdunit .layerbox .text-wrapper .contentwrap {
    width: 100%;
  }
}.holdwrap .holdunit .layerbox .block-action,
.holdwrap .holdunit .layerbox .page-btn,
.holdwrap .holdunit .layerbox .primary-cta,
.holdwrap .holdunit .layerbox .section-action,
.holdwrap .holdunit .layerbox .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.holdwrap .stacklayer img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .holdwrap .stacklayer img {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .holdwrap .stacklayer img {
    height: 300px;
  }
}.holdwrap .block-title,
.holdwrap .chapter-title,
.holdwrap .lead-h2,
.holdwrap .main-heading,
.holdwrap .page-h,
.holdwrap .section-h,
.holdwrap .section-heading,
.holdwrap .topic-title {
  color: #ffffff;
}
.holdwrap .contentwrap,
.holdwrap .text-wrapper {
  color: #000000;
  text-align: center;
}.holdwrap .block-title,
.holdwrap .chapter-title,
.holdwrap .lead-h2,
.holdwrap .main-heading,
.holdwrap .page-h,
.holdwrap .section-h,
.holdwrap .section-heading,
.holdwrap .topic-title,
.holdwrap .block-action,
.holdwrap .page-btn,
.holdwrap .primary-cta,
.holdwrap .section-action,
.holdwrap .section-cta {
  text-align: center;
  color: #928180;
}
.maparea {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.maparea .group {
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f3e9e3;
}
@media (max-width: 992px) {
  .maparea .group {
    margin-bottom: 40px;
  }
}
.maparea .group .rowsegment {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 992px) {
  .maparea .group .rowsegment {
    display: block;
  }
}
.maparea .group .rowsegment .gripbox {
  display: inline-flex;
  gap: 4px;
  padding-right: 24px;
  border-right: 1px solid #f3e9e3;
}
@media (max-width: 992px) {
  .maparea .group .rowsegment .gripbox {
    border-right: none;
    padding-right: 0;
  }
}
.maparea .group .rowsegment .gripbox .unitcol {
  display: inline-flex;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 4px solid #928180;
  border-radius: 100%;
  margin-top: 6px;
}
.maparea .group .rowsegment .gripbox .strip {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .maparea .group .rowsegment .gripbox .strip {
    margin-bottom: 12px;
  }
}.maparea .holdunit .spanbox .block-title,
.maparea .holdunit .spanbox .chapter-title,
.maparea .holdunit .spanbox .lead-h2,
.maparea .holdunit .spanbox .main-heading,
.maparea .holdunit .spanbox .page-h,
.maparea .holdunit .spanbox .section-h,
.maparea .holdunit .spanbox .section-heading,
.maparea .holdunit .spanbox .topic-title {
  margin-bottom: 24px;
}
.maparea .holdunit .text-wrapper .contentwrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .maparea .holdunit .text-wrapper .contentwrap {
    width: 100%;
  }
}.maparea .holdunit .block-action,
.maparea .holdunit .page-btn,
.maparea .holdunit .primary-cta,
.maparea .holdunit .section-action,
.maparea .holdunit .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.maparea .strip {
  color: #c0c0c0;
}.maparea .block-title,
.maparea .chapter-title,
.maparea .lead-h2,
.maparea .main-heading,
.maparea .page-h,
.maparea .section-h,
.maparea .section-heading,
.maparea .topic-title {
  color: #f6f6f6;
}
.maparea .contentwrap {
  color: #c0c0c0;
}.maparea .block-title,
.maparea .chapter-title,
.maparea .lead-h2,
.maparea .main-heading,
.maparea .page-h,
.maparea .section-h,
.maparea .section-heading,
.maparea .topic-title,
.maparea .spanbox,
.maparea .block-action,
.maparea .page-btn,
.maparea .primary-cta,
.maparea .section-action,
.maparea .section-cta {
  text-align: center;
  color: #928180;
}
.maparea .contentwrap,
.maparea .text-wrapper {
  text-align: center;
  color: #000000;
}

.maparea .group {
  text-align: center;
}
.maparea .strip,
.maparea .group {
  color: #000000;
}
.slotunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.slotunit .holdunit {
  margin: 0 -30px;
}
.slotunit .holdunit .card {
  padding: 0 30px;
}
.slotunit .strip {
  margin-bottom: 16px;
  color: #877e72;
}
.slotunit .blockwrap {
  margin-bottom: 16px;
}.slotunit .blockwrap .block-title,
.slotunit .blockwrap .chapter-title,
.slotunit .blockwrap .lead-h2,
.slotunit .blockwrap .main-heading,
.slotunit .blockwrap .page-h,
.slotunit .blockwrap .section-h,
.slotunit .blockwrap .section-heading,
.slotunit .blockwrap .topic-title {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(170deg, #928180 20%, #454545);
  margin-bottom: 0;
}
.slotunit .text-wrapper .contentwrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .slotunit .text-wrapper .contentwrap {
    width: 100%;
  }
}.slotunit .block-action,
.slotunit .page-btn,
.slotunit .primary-cta,
.slotunit .section-action,
.slotunit .section-cta {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .slotunit .ridge {
    margin-top: 40px;
  }
}
.slotunit .ridge img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .slotunit .ridge img {
    height: 300px;
  }
}.slotunit .block-title,
.slotunit .chapter-title,
.slotunit .lead-h2,
.slotunit .main-heading,
.slotunit .page-h,
.slotunit .section-h,
.slotunit .section-heading,
.slotunit .topic-title {
  color: #ffedd6;
}
.slotunit .contentwrap {
  color: #ffedd6;
}.slotunit .contentwrap,
.slotunit .text-wrapper,
.slotunit .block-action,
.slotunit .page-btn,
.slotunit .primary-cta,
.slotunit .section-action,
.slotunit .section-cta {
  color: #000000;
}
.rootsegment {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .rootsegment .layerbox {
    margin-bottom: 32px;
  }
}.rootsegment .layerbox .block-title,
.rootsegment .layerbox .chapter-title,
.rootsegment .layerbox .lead-h2,
.rootsegment .layerbox .main-heading,
.rootsegment .layerbox .page-h,
.rootsegment .layerbox .section-h,
.rootsegment .layerbox .section-heading,
.rootsegment .layerbox .topic-title {
  margin-bottom: 0;
}.rootsegment .layerbox .block-action,
.rootsegment .layerbox .page-btn,
.rootsegment .layerbox .primary-cta,
.rootsegment .layerbox .section-action,
.rootsegment .layerbox .section-cta {
  margin-top: 14px;
}.rootsegment .layerbox .block-action .btn,
.rootsegment .layerbox .page-btn .btn,
.rootsegment .layerbox .primary-cta .btn,
.rootsegment .layerbox .section-action .btn,
.rootsegment .layerbox .section-cta .btn {
  margin-bottom: 0;
}
.rootsegment .text-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rootsegment .text-wrapper .contentwrap {
  display: inline-block;
  margin-bottom: 0;
}
.rootsegment .text-wrapper .list-wrapper {
  margin-top: 24px;
}
.rootsegment .text-wrapper .list-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rootsegment .text-wrapper .list-wrapper .list .item-wrap {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}.rootsegment .block-title,
.rootsegment .chapter-title,
.rootsegment .lead-h2,
.rootsegment .main-heading,
.rootsegment .page-h,
.rootsegment .section-h,
.rootsegment .section-heading,
.rootsegment .topic-title {
  color: #000000;
}
.rootsegment .contentwrap,
.rootsegment .text-wrapper {
  color: #4f4f4f;
}
.rootsegment .list {
  color: #000000;
}
.rootsegment .contentwrap {
  color: #000000;
}.rootsegment .block-title,
.rootsegment .chapter-title,
.rootsegment .lead-h2,
.rootsegment .main-heading,
.rootsegment .page-h,
.rootsegment .section-h,
.rootsegment .section-heading,
.rootsegment .topic-title,
.rootsegment .block-action,
.rootsegment .page-btn,
.rootsegment .primary-cta,
.rootsegment .section-action,
.rootsegment .section-cta {
  color: #928180;
}
.plate {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.plate .notch {
  height: 12px;
  border: 1px solid #e0d7d6;
  border-bottom: none;
  margin-bottom: 32px;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
@media (max-width: 992px) {
  .plate .notch {
    margin-bottom: 24px;
  }
}
.plate .group {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .plate .group {
    margin-bottom: 48px;
  }
}
.plate .group .gripbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.plate .group .gripbox .pathwrap {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  background-color: #e0d7d6;
  display: flex;
}
.plate .group .gripbox .strip {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.plate .layerbox {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .plate .ridge {
    margin-bottom: 48px;
  }
}
.plate .ridge img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .plate .ridge img {
    height: 300px;
  }
}.plate .spanbox .block-title,
.plate .spanbox .chapter-title,
.plate .spanbox .lead-h2,
.plate .spanbox .main-heading,
.plate .spanbox .page-h,
.plate .spanbox .section-h,
.plate .spanbox .section-heading,
.plate .spanbox .topic-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {.plate .spanbox .block-title,
.plate .spanbox .chapter-title,
.plate .spanbox .lead-h2,
.plate .spanbox .main-heading,
.plate .spanbox .page-h,
.plate .spanbox .section-h,
.plate .spanbox .section-heading,
.plate .spanbox .topic-title {
    margin-bottom: 24px;
  }
}
.plate .spanbox .text-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 992px) {
  .plate .spanbox .text-wrapper {
    grid-template-columns: 1fr;
  }
}
.plate .spanbox .text-wrapper .contentwrap {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .plate .spanbox .text-wrapper .contentwrap {
    width: 100%;
  }
}.plate .spanbox .block-action,
.plate .spanbox .page-btn,
.plate .spanbox .primary-cta,
.plate .spanbox .section-action,
.plate .spanbox .section-cta {
  margin-top: 60px;
}
@media (max-width: 992px) {.plate .spanbox .block-action,
.plate .spanbox .page-btn,
.plate .spanbox .primary-cta,
.plate .spanbox .section-action,
.plate .spanbox .section-cta {
    margin-top: 24px;
  }
}
.plate .strip {
  color: #222f30;
}.plate .block-title,
.plate .chapter-title,
.plate .lead-h2,
.plate .main-heading,
.plate .page-h,
.plate .section-h,
.plate .section-heading,
.plate .topic-title {
  color: #222f30;
}
.plate .contentwrap {
  color: #4f595a;
}.plate .block-title,
.plate .chapter-title,
.plate .lead-h2,
.plate .main-heading,
.plate .page-h,
.plate .section-h,
.plate .section-heading,
.plate .topic-title,
.plate .block-action,
.plate .page-btn,
.plate .primary-cta,
.plate .section-action,
.plate .section-cta {
  color: #928180;
}
.plate .contentwrap,
.plate .text-wrapper {
  color: #000000;
}
.plate .strip,
.plate .group {
  color: #000000;
}
.edgebox {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.edgebox .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .edgebox .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .edgebox .container {
    padding: 0 6px;
  }
}
.edgebox .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #f5f4f4;
}
@media (max-width: 1440px) {
  .edgebox .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .edgebox .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .edgebox .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .edgebox .row {
    padding: 50px 30px;
  }
}
.edgebox .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.edgebox .spanbox {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .edgebox .spanbox {
    padding: 0;
  }
}.edgebox .spanbox .block-title,
.edgebox .spanbox .chapter-title,
.edgebox .spanbox .lead-h2,
.edgebox .spanbox .main-heading,
.edgebox .spanbox .page-h,
.edgebox .spanbox .section-h,
.edgebox .spanbox .section-heading,
.edgebox .spanbox .topic-title {
  margin-bottom: 50px;
}.edgebox .spanbox .block-title span,
.edgebox .spanbox .chapter-title span,
.edgebox .spanbox .lead-h2 span,
.edgebox .spanbox .main-heading span,
.edgebox .spanbox .page-h span,
.edgebox .spanbox .section-h span,
.edgebox .spanbox .section-heading span,
.edgebox .spanbox .topic-title span {
  color: #928180;
}.edgebox .spanbox .block-action .btn,
.edgebox .spanbox .page-btn .btn,
.edgebox .spanbox .primary-cta .btn,
.edgebox .spanbox .section-action .btn,
.edgebox .spanbox .section-cta .btn {
  margin-bottom: 0;
}
.edgebox .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .edgebox .list-wrapper {
    padding: 0;
  }
}
.edgebox .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.edgebox .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.edgebox .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.edgebox .list-wrapper .list .item-wrap:hover,
.edgebox .list-wrapper .list .item-wrap:focus {
  color: #b7a9a8;
}
.edgebox .layersegment {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.edgebox .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title {
  color: #ffffff;
}
.edgebox .list {
  color: #ffffff;
}
.edgebox .list,
.edgebox .item-wrap {
  color: #000000;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title,
.edgebox .block-action,
.edgebox .page-btn,
.edgebox .primary-cta,
.edgebox .section-action,
.edgebox .section-cta {
  color: #000000;
}
.fieldsetwrap .site-nav {
  position: relative !important;
}
.fieldsetwrap .site-nav {
  position: absolute !important;
}
.fieldsetwrap .container-fluid {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .fieldsetwrap .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.fieldsetwrap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.fieldsetwrap .nav-link {
  position: relative;
}
.fieldsetwrap .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .fieldsetwrap .container {
    flex-wrap: nowrap;
  }
}
.fieldsetwrap .nav-item:focus,
.fieldsetwrap .nav-link:focus {
  outline: none;
}
.fieldsetwrap .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.fieldsetwrap .navbar .bodywrap {
  margin-right: 1rem;
}
.fieldsetwrap .navbar .bodywrap img {
  width: auto;
}
.fieldsetwrap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .fieldsetwrap .navbar .bodywrap img {
    height: 3rem !important;
  }
  .fieldsetwrap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .fieldsetwrap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .fieldsetwrap .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.fieldsetwrap .navbar-brand {
  min-height: 120px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.fieldsetwrap .navbar-brand .plane {
  line-height: inherit !important;
  font-weight: 400;
}
.fieldsetwrap .navbar-brand .plane:hover,
.fieldsetwrap .navbar-brand .plane:focus {
  color: #000000 !important;
}
.fieldsetwrap .navbar-brand .bodywrap a {
  outline: none;
}
.fieldsetwrap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.fieldsetwrap ul.navbar-nav {
  position: relative;
  flex-wrap: wrap;
  padding: 8px;
  border: none !important;
  background-color: transparent !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180 !important;
  backdrop-filter: blur(5px);
  gap: 0 6px;
}
.fieldsetwrap ul.navbar-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3e9e3;
  opacity: .3;
  pointer-events: none;
}
.fieldsetwrap ul.navbar-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #f3e9e3;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
}
@media (min-width: 991px) {
  .fieldsetwrap ul.navbar-nav {
    background-color: transparent;
    border: 2px solid transparent;
  }
}
@media (max-width: 992px) {
  .fieldsetwrap ul.navbar-nav {
    box-shadow: none !important;
  }
}
.fieldsetwrap .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .fieldsetwrap .navbar-buttons {
    text-align: left;
  }
}
.fieldsetwrap .navbar-buttons .btn {
  white-space: nowrap;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .fieldsetwrap .navbar-buttons .btn {
    width: auto !important;
  }
}
.fieldsetwrap button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f5f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}

.fieldsetwrap .site-nav {
  padding: 0 1rem;
}
.fieldsetwrap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .fieldsetwrap .navbar {
    height: 120px;
  }
  .fieldsetwrap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.fieldsetwrap .navbar-nav {
  margin: 0 auto;
}
.fieldsetwrap .nav-item {
  padding: 0;
  margin: 0;
}
.fieldsetwrap .nav-item .nav-link {
  position: relative;
  z-index: 1;
  padding: 9px 38px !important;
  border: 1px solid transparent;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  background-color: transparent;
}
.fieldsetwrap .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}
.fieldsetwrap .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.fieldsetwrap .nav-item .nav-link:hover,
.fieldsetwrap .nav-item .nav-link:focus {
  color: #000000 !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180;
}
.fieldsetwrap .nav-item .nav-link:hover::after,
.fieldsetwrap .nav-item .nav-link:focus::after {
  color: #000000 !important;
}
.fieldsetwrap .nav-item .nav-link:hover::before,
.fieldsetwrap .nav-item .nav-link:focus::before {
  opacity: .2;
}
.fieldsetwrap .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar {
    justify-content: flex-start !important;
  }
  .fieldsetwrap .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .fieldsetwrap .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .fieldsetwrap .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .fieldsetwrap .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .fieldsetwrap .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.fieldsetwrap .layerbox {
  min-height: 120px;
}
.colbox {
  padding-top: 9rem;
  padding-bottom: 8rem;
  background-image: url("images/thick1.jpg");
}
.colbox .holdunit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.colbox .holdunit .group {
  margin-bottom: 20px;
}
.colbox .holdunit .group .gripbox {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  background-image: linear-gradient(135deg, #cccccc 38%, #ff6900 75%);
  box-shadow: 0 10px 10px -5px #cccccc;
  padding: 0 1px 1px 0;
}
.colbox .holdunit .group .gripbox::before {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -17px;
  width: 164px;
  height: 50px;
  pointer-events: none;
  filter: blur(10px);
  background-image: radial-gradient(50% 50%, #ff6900 0%, transparent 100%);
  z-index: -1;
}.colbox .holdunit .spanbox .block-title,
.colbox .holdunit .spanbox .chapter-title,
.colbox .holdunit .spanbox .lead-h2,
.colbox .holdunit .spanbox .main-heading,
.colbox .holdunit .spanbox .page-h,
.colbox .holdunit .spanbox .section-h,
.colbox .holdunit .spanbox .section-heading,
.colbox .holdunit .spanbox .topic-title {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #928180 40%, #454545 90%);
  margin-bottom: 20px;
}
.colbox .holdunit .text-wrapper .contentwrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .colbox .holdunit .text-wrapper .contentwrap {
    width: 100%;
  }
}.colbox .holdunit .block-action,
.colbox .holdunit .page-btn,
.colbox .holdunit .primary-cta,
.colbox .holdunit .section-action,
.colbox .holdunit .section-cta {
  margin-top: 40px;
}
@media (max-width: 992px) {.colbox .holdunit .block-action,
.colbox .holdunit .page-btn,
.colbox .holdunit .primary-cta,
.colbox .holdunit .section-action,
.colbox .holdunit .section-cta {
    margin-top: 20px;
  }
}
.colbox .strip,
.colbox .group {
  color: #334155;
}.colbox .block-title,
.colbox .chapter-title,
.colbox .lead-h2,
.colbox .main-heading,
.colbox .page-h,
.colbox .section-h,
.colbox .section-heading,
.colbox .topic-title {
  color: #0f172a;
}
.colbox .contentwrap,
.colbox .text-wrapper {
  color: #000000;
}
.viewlayer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .viewlayer .holdunit {
    margin-bottom: 40px;
  }
}
.viewlayer .holdunit .group .strip {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}.viewlayer .holdunit .spanbox .block-title,
.viewlayer .holdunit .spanbox .chapter-title,
.viewlayer .holdunit .spanbox .lead-h2,
.viewlayer .holdunit .spanbox .main-heading,
.viewlayer .holdunit .spanbox .page-h,
.viewlayer .holdunit .spanbox .section-h,
.viewlayer .holdunit .spanbox .section-heading,
.viewlayer .holdunit .spanbox .topic-title {
  margin-bottom: 20px;
}
.viewlayer .holdunit .text-wrapper .contentwrap {
  margin-bottom: 0;
}.viewlayer .holdunit .block-action,
.viewlayer .holdunit .page-btn,
.viewlayer .holdunit .primary-cta,
.viewlayer .holdunit .section-action,
.viewlayer .holdunit .section-cta {
  margin-top: 20px;
}.viewlayer .holdunit .block-action .btn,
.viewlayer .holdunit .page-btn .btn,
.viewlayer .holdunit .primary-cta .btn,
.viewlayer .holdunit .section-action .btn,
.viewlayer .holdunit .section-cta .btn {
  margin-bottom: 0;
}
.viewlayer .ridge img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .viewlayer .ridge img {
    height: 300px;
  }
}
.viewlayer .strip,
.viewlayer .group {
  color: #116e99;
}.viewlayer .block-title,
.viewlayer .chapter-title,
.viewlayer .lead-h2,
.viewlayer .main-heading,
.viewlayer .page-h,
.viewlayer .section-h,
.viewlayer .section-heading,
.viewlayer .topic-title {
  color: #16526e;
}
.viewlayer .contentwrap,
.viewlayer .text-wrapper {
  color: #000000;
}.viewlayer .block-title,
.viewlayer .chapter-title,
.viewlayer .lead-h2,
.viewlayer .main-heading,
.viewlayer .page-h,
.viewlayer .section-h,
.viewlayer .section-heading,
.viewlayer .topic-title,
.viewlayer .block-action,
.viewlayer .page-btn,
.viewlayer .primary-cta,
.viewlayer .section-action,
.viewlayer .section-cta,
.viewlayer .spanbox {
  color: #928180;
}
.bridge {
  display: flex;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f5f4f4;
}.bridge .block-title,
.bridge .chapter-title,
.bridge .lead-h2,
.bridge .main-heading,
.bridge .page-h,
.bridge .section-h,
.bridge .section-heading,
.bridge .topic-title {
  max-width: 800px;
  color: #928180;
}
.bridge .contentwrap {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .bridge {
    align-items: center;
  }
  .bridge .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .bridge .layerbox {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .bridge {
    align-items: center;
  }
  .bridge .layerbox {
    width: 100%;
  }
}.bridge .contentwrap,
.bridge .block-action,
.bridge .page-btn,
.bridge .primary-cta,
.bridge .section-action,
.bridge .section-cta {
  text-align: left;
  color: #000000;
}
.dockunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.dockunit .row {
  margin: 0 -45px;
}
.dockunit .row .card {
  padding: 0 45px;
  justify-content: center;
}
.dockunit .ridge {
  padding-left: 66px;
}
@media (max-width: 1440px) {
  .dockunit .ridge {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .dockunit .ridge {
    margin-bottom: 32px;
  }
}
.dockunit .ridge img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border: 2px solid #b7a9a8;
  box-shadow: 0 16px 0 #b7a9a8;
  background-color: #b7a9a8;
}
@media (max-width: 1440px) {
  .dockunit .ridge img {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .dockunit .ridge img {
    height: 350px;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .dockunit .ridge img {
    height: 300px;
  }
}
.dockunit .holdunit .group .strip {
  display: inline-flex;
  padding: 6px 20px;
  border: 2px solid #3a001d;
  background-color: #fecb66;
  margin-bottom: 22px;
}.dockunit .holdunit .spanbox .block-title,
.dockunit .holdunit .spanbox .chapter-title,
.dockunit .holdunit .spanbox .lead-h2,
.dockunit .holdunit .spanbox .main-heading,
.dockunit .holdunit .spanbox .page-h,
.dockunit .holdunit .spanbox .section-h,
.dockunit .holdunit .spanbox .section-heading,
.dockunit .holdunit .spanbox .topic-title {
  margin-bottom: 22px;
  text-shadow: 0 5px 0 #ffffff;
}
.dockunit .holdunit .text-wrapper .contentwrap {
  margin-bottom: 12px;
}.dockunit .holdunit .block-action .btn,
.dockunit .holdunit .page-btn .btn,
.dockunit .holdunit .primary-cta .btn,
.dockunit .holdunit .section-action .btn,
.dockunit .holdunit .section-cta .btn {
  margin-bottom: 0;
}
.dockunit .strip {
  color: #3a001d;
}.dockunit .block-title,
.dockunit .chapter-title,
.dockunit .lead-h2,
.dockunit .main-heading,
.dockunit .page-h,
.dockunit .section-h,
.dockunit .section-heading,
.dockunit .topic-title {
  color: #fffaf0;
}
.dockunit .contentwrap {
  color: #fffaf0;
}.dockunit .block-title,
.dockunit .chapter-title,
.dockunit .lead-h2,
.dockunit .main-heading,
.dockunit .page-h,
.dockunit .section-h,
.dockunit .section-heading,
.dockunit .topic-title,
.dockunit .block-action,
.dockunit .page-btn,
.dockunit .primary-cta,
.dockunit .section-action,
.dockunit .section-cta {
  color: #928180;
}
.dockunit .contentwrap,
.dockunit .text-wrapper {
  color: #000000;
}
.coreunit {
  display: flex;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f4f4;
}.coreunit .block-title,
.coreunit .chapter-title,
.coreunit .lead-h2,
.coreunit .main-heading,
.coreunit .page-h,
.coreunit .section-h,
.coreunit .section-heading,
.coreunit .topic-title {
  max-width: 800px;
  color: #928180;
}
.coreunit .contentwrap {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .coreunit {
    align-items: center;
  }
  .coreunit .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .coreunit .layerbox {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .coreunit {
    align-items: center;
  }
  .coreunit .layerbox {
    width: 100%;
  }
}.coreunit .contentwrap,
.coreunit .block-action,
.coreunit .page-btn,
.coreunit .primary-cta,
.coreunit .section-action,
.coreunit .section-cta {
  text-align: left;
  color: #000000;
}
.edgebox {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.edgebox .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .edgebox .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .edgebox .container {
    padding: 0 6px;
  }
}
.edgebox .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #f5f4f4;
}
@media (max-width: 1440px) {
  .edgebox .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .edgebox .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .edgebox .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .edgebox .row {
    padding: 50px 30px;
  }
}
.edgebox .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.edgebox .spanbox {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .edgebox .spanbox {
    padding: 0;
  }
}.edgebox .spanbox .block-title,
.edgebox .spanbox .chapter-title,
.edgebox .spanbox .lead-h2,
.edgebox .spanbox .main-heading,
.edgebox .spanbox .page-h,
.edgebox .spanbox .section-h,
.edgebox .spanbox .section-heading,
.edgebox .spanbox .topic-title {
  margin-bottom: 50px;
}.edgebox .spanbox .block-title span,
.edgebox .spanbox .chapter-title span,
.edgebox .spanbox .lead-h2 span,
.edgebox .spanbox .main-heading span,
.edgebox .spanbox .page-h span,
.edgebox .spanbox .section-h span,
.edgebox .spanbox .section-heading span,
.edgebox .spanbox .topic-title span {
  color: #928180;
}.edgebox .spanbox .block-action .btn,
.edgebox .spanbox .page-btn .btn,
.edgebox .spanbox .primary-cta .btn,
.edgebox .spanbox .section-action .btn,
.edgebox .spanbox .section-cta .btn {
  margin-bottom: 0;
}
.edgebox .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .edgebox .list-wrapper {
    padding: 0;
  }
}
.edgebox .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.edgebox .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.edgebox .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.edgebox .list-wrapper .list .item-wrap:hover,
.edgebox .list-wrapper .list .item-wrap:focus {
  color: #b7a9a8;
}
.edgebox .layersegment {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.edgebox .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title {
  color: #ffffff;
}
.edgebox .list {
  color: #ffffff;
}
.edgebox .list,
.edgebox .item-wrap {
  color: #000000;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title,
.edgebox .block-action,
.edgebox .page-btn,
.edgebox .primary-cta,
.edgebox .section-action,
.edgebox .section-cta {
  color: #000000;
}
.fieldsetwrap .site-nav {
  position: relative !important;
}
.fieldsetwrap .site-nav {
  position: absolute !important;
}
.fieldsetwrap .container-fluid {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .fieldsetwrap .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.fieldsetwrap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.fieldsetwrap .nav-link {
  position: relative;
}
.fieldsetwrap .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .fieldsetwrap .container {
    flex-wrap: nowrap;
  }
}
.fieldsetwrap .nav-item:focus,
.fieldsetwrap .nav-link:focus {
  outline: none;
}
.fieldsetwrap .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.fieldsetwrap .navbar .bodywrap {
  margin-right: 1rem;
}
.fieldsetwrap .navbar .bodywrap img {
  width: auto;
}
.fieldsetwrap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .fieldsetwrap .navbar .bodywrap img {
    height: 3rem !important;
  }
  .fieldsetwrap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .fieldsetwrap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .fieldsetwrap .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.fieldsetwrap .navbar-brand {
  min-height: 120px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.fieldsetwrap .navbar-brand .plane {
  line-height: inherit !important;
  font-weight: 400;
}
.fieldsetwrap .navbar-brand .plane:hover,
.fieldsetwrap .navbar-brand .plane:focus {
  color: #000000 !important;
}
.fieldsetwrap .navbar-brand .bodywrap a {
  outline: none;
}
.fieldsetwrap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.fieldsetwrap ul.navbar-nav {
  position: relative;
  flex-wrap: wrap;
  padding: 8px;
  border: none !important;
  background-color: transparent !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180 !important;
  backdrop-filter: blur(5px);
  gap: 0 6px;
}
.fieldsetwrap ul.navbar-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3e9e3;
  opacity: .3;
  pointer-events: none;
}
.fieldsetwrap ul.navbar-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #f3e9e3;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
}
@media (min-width: 991px) {
  .fieldsetwrap ul.navbar-nav {
    background-color: transparent;
    border: 2px solid transparent;
  }
}
@media (max-width: 992px) {
  .fieldsetwrap ul.navbar-nav {
    box-shadow: none !important;
  }
}
.fieldsetwrap .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .fieldsetwrap .navbar-buttons {
    text-align: left;
  }
}
.fieldsetwrap .navbar-buttons .btn {
  white-space: nowrap;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .fieldsetwrap .navbar-buttons .btn {
    width: auto !important;
  }
}
.fieldsetwrap button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f5f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}

.fieldsetwrap .site-nav {
  padding: 0 1rem;
}
.fieldsetwrap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .fieldsetwrap .navbar {
    height: 120px;
  }
  .fieldsetwrap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.fieldsetwrap .navbar-nav {
  margin: 0 auto;
}
.fieldsetwrap .nav-item {
  padding: 0;
  margin: 0;
}
.fieldsetwrap .nav-item .nav-link {
  position: relative;
  z-index: 1;
  padding: 9px 38px !important;
  border: 1px solid transparent;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  background-color: transparent;
}
.fieldsetwrap .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}
.fieldsetwrap .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.fieldsetwrap .nav-item .nav-link:hover,
.fieldsetwrap .nav-item .nav-link:focus {
  color: #000000 !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180;
}
.fieldsetwrap .nav-item .nav-link:hover::after,
.fieldsetwrap .nav-item .nav-link:focus::after {
  color: #000000 !important;
}
.fieldsetwrap .nav-item .nav-link:hover::before,
.fieldsetwrap .nav-item .nav-link:focus::before {
  opacity: .2;
}
.fieldsetwrap .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar {
    justify-content: flex-start !important;
  }
  .fieldsetwrap .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .fieldsetwrap .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .fieldsetwrap .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .fieldsetwrap .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .fieldsetwrap .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.fieldsetwrap .layerbox {
  min-height: 120px;
}
.canvas {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.canvas .layerbox {
  position: relative;
}
.canvas .layerbox .wrapperbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-image: radial-gradient(ellipse farthest-side at 50% 25%, #f3e9e3 10%, #f5f4f4 50%, #ffffff 100%);
  filter: blur(1rem);
}
.canvas .layerbox .wrapperbox::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  filter: blur(1rem);
}
.canvas .holdunit {
  position: relative;
  z-index: 1;
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .canvas .holdunit {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .canvas .holdunit {
    width: 100%;
  }
}
.canvas .holdunit .strip {
  margin-bottom: 24px;
  text-transform: uppercase;
}.canvas .holdunit .block-title,
.canvas .holdunit .chapter-title,
.canvas .holdunit .lead-h2,
.canvas .holdunit .main-heading,
.canvas .holdunit .page-h,
.canvas .holdunit .section-h,
.canvas .holdunit .section-heading,
.canvas .holdunit .topic-title {
  margin-bottom: 24px;
}
.canvas .holdunit .contentwrap {
  margin-bottom: 24px;
}.canvas .holdunit .block-action,
.canvas .holdunit .page-btn,
.canvas .holdunit .primary-cta,
.canvas .holdunit .section-action,
.canvas .holdunit .section-cta {
  margin-top: 32px;
}
@media (max-width: 992px) {.canvas .holdunit .block-action,
.canvas .holdunit .page-btn,
.canvas .holdunit .primary-cta,
.canvas .holdunit .section-action,
.canvas .holdunit .section-cta {
    margin-top: 24px;
  }
}
.canvas .strip {
  color: #49496d;
  text-align: center;
}.canvas .block-title,
.canvas .chapter-title,
.canvas .lead-h2,
.canvas .main-heading,
.canvas .page-h,
.canvas .section-h,
.canvas .section-heading,
.canvas .topic-title {
  color: #181824;
}
.canvas .contentwrap {
  color: #000000;
  text-align: center;
}.canvas .block-title,
.canvas .chapter-title,
.canvas .lead-h2,
.canvas .main-heading,
.canvas .page-h,
.canvas .section-h,
.canvas .section-heading,
.canvas .topic-title,
.canvas .block-action,
.canvas .page-btn,
.canvas .primary-cta,
.canvas .section-action,
.canvas .section-cta {
  text-align: center;
}.canvas .block-title,
.canvas .chapter-title,
.canvas .lead-h2,
.canvas .main-heading,
.canvas .page-h,
.canvas .section-h,
.canvas .section-heading,
.canvas .topic-title,
.canvas .block-action,
.canvas .page-btn,
.canvas .primary-cta,
.canvas .section-action,
.canvas .section-cta {
  color: #928180;
}
.neutralwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f4f4;
}
.neutralwrap .layerbox {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .neutralwrap .layerbox {
    margin-bottom: 32px;
  }
}
.neutralwrap .layerbox .group {
  margin-bottom: 16px;
}
.neutralwrap .layerbox .group .strip {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}.neutralwrap .layerbox .block-title,
.neutralwrap .layerbox .chapter-title,
.neutralwrap .layerbox .lead-h2,
.neutralwrap .layerbox .main-heading,
.neutralwrap .layerbox .page-h,
.neutralwrap .layerbox .section-h,
.neutralwrap .layerbox .section-heading,
.neutralwrap .layerbox .topic-title {
  margin-bottom: 16px;
}
.neutralwrap .layerbox .text-wrapper .contentwrap {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .neutralwrap .layerbox .text-wrapper .contentwrap {
    width: 100%;
  }
}
.neutralwrap .card-wrapper {
  background-color: #f5f4f4;
  padding: 8px;
}
.neutralwrap .strip,
.neutralwrap .group {
  color: #000000;
  text-align: center;
}.neutralwrap .block-title,
.neutralwrap .chapter-title,
.neutralwrap .lead-h2,
.neutralwrap .main-heading,
.neutralwrap .page-h,
.neutralwrap .section-h,
.neutralwrap .section-heading,
.neutralwrap .topic-title {
  color: #000000;
  text-align: center;
}
.neutralwrap .contentwrap,
.neutralwrap .text-wrapper {
  color: #000000;
  text-align: center;
}
.neutralwrap label {
  color: #000000;
}.neutralwrap .block-title,
.neutralwrap .chapter-title,
.neutralwrap .lead-h2,
.neutralwrap .main-heading,
.neutralwrap .page-h,
.neutralwrap .section-h,
.neutralwrap .section-heading,
.neutralwrap .topic-title,
.neutralwrap .block-action,
.neutralwrap .page-btn,
.neutralwrap .primary-cta,
.neutralwrap .section-action,
.neutralwrap .section-cta {
  color: #928180;
}
.stepwrap {
  position: relative;
  background-color: #ffffff;
  align-items: flex-end;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.stepwrap .cont-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
.stepwrap .cont-wrapper .stacklayer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.stepwrap .cont-wrapper .stacklayer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f5f4f4;
  opacity: 0.8;
  pointer-events: none;
}
.stepwrap .cont-wrapper .stacklayer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stepwrap .cont-wrapper {
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
}
.stepwrap .holdunit {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  pointer-events: none;
}
@media (max-width: 992px) {
  .stepwrap .group {
    margin-bottom: 24px;
  }
}
.stepwrap .group .gripbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.stepwrap .group .gripbox .pathwrap {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  background-color: #b7a9a8;
  display: flex;
}
.stepwrap .group .gripbox .strip {
  pointer-events: visible;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}.stepwrap .spanbox .block-title,
.stepwrap .spanbox .chapter-title,
.stepwrap .spanbox .lead-h2,
.stepwrap .spanbox .main-heading,
.stepwrap .spanbox .page-h,
.stepwrap .spanbox .section-h,
.stepwrap .spanbox .section-heading,
.stepwrap .spanbox .topic-title {
  pointer-events: visible;
  margin-bottom: 24px;
}
.stepwrap .spanbox .text-wrapper .contentwrap {
  pointer-events: visible;
  margin-bottom: 0;
}.stepwrap .spanbox .block-action,
.stepwrap .spanbox .page-btn,
.stepwrap .spanbox .primary-cta,
.stepwrap .spanbox .section-action,
.stepwrap .spanbox .section-cta {
  pointer-events: visible;
  margin-top: 24px;
}
.stepwrap .strip {
  color: #222f30;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title {
  color: #ffffff;
}
.stepwrap .contentwrap {
  color: #ffffff;
}.stepwrap .block-title,
.stepwrap .chapter-title,
.stepwrap .lead-h2,
.stepwrap .main-heading,
.stepwrap .page-h,
.stepwrap .section-h,
.stepwrap .section-heading,
.stepwrap .topic-title,
.stepwrap .block-action,
.stepwrap .page-btn,
.stepwrap .primary-cta,
.stepwrap .section-action,
.stepwrap .section-cta {
  color: #928180;
}
.stepwrap .contentwrap,
.stepwrap .text-wrapper {
  color: #000000;
}
.stepwrap .strip,
.stepwrap .group {
  color: #000000;
}
.edgebox {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.edgebox .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .edgebox .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .edgebox .container {
    padding: 0 6px;
  }
}
.edgebox .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #f5f4f4;
}
@media (max-width: 1440px) {
  .edgebox .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .edgebox .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .edgebox .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .edgebox .row {
    padding: 50px 30px;
  }
}
.edgebox .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.edgebox .spanbox {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .edgebox .spanbox {
    padding: 0;
  }
}.edgebox .spanbox .block-title,
.edgebox .spanbox .chapter-title,
.edgebox .spanbox .lead-h2,
.edgebox .spanbox .main-heading,
.edgebox .spanbox .page-h,
.edgebox .spanbox .section-h,
.edgebox .spanbox .section-heading,
.edgebox .spanbox .topic-title {
  margin-bottom: 50px;
}.edgebox .spanbox .block-title span,
.edgebox .spanbox .chapter-title span,
.edgebox .spanbox .lead-h2 span,
.edgebox .spanbox .main-heading span,
.edgebox .spanbox .page-h span,
.edgebox .spanbox .section-h span,
.edgebox .spanbox .section-heading span,
.edgebox .spanbox .topic-title span {
  color: #928180;
}.edgebox .spanbox .block-action .btn,
.edgebox .spanbox .page-btn .btn,
.edgebox .spanbox .primary-cta .btn,
.edgebox .spanbox .section-action .btn,
.edgebox .spanbox .section-cta .btn {
  margin-bottom: 0;
}
.edgebox .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .edgebox .list-wrapper {
    padding: 0;
  }
}
.edgebox .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.edgebox .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.edgebox .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.edgebox .list-wrapper .list .item-wrap:hover,
.edgebox .list-wrapper .list .item-wrap:focus {
  color: #b7a9a8;
}
.edgebox .layersegment {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.edgebox .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title {
  color: #ffffff;
}
.edgebox .list {
  color: #ffffff;
}
.edgebox .list,
.edgebox .item-wrap {
  color: #000000;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title,
.edgebox .block-action,
.edgebox .page-btn,
.edgebox .primary-cta,
.edgebox .section-action,
.edgebox .section-cta {
  color: #000000;
}
.fieldsetwrap .site-nav {
  position: relative !important;
}
.fieldsetwrap .site-nav {
  position: absolute !important;
}
.fieldsetwrap .container-fluid {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .fieldsetwrap .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.fieldsetwrap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.fieldsetwrap .nav-link {
  position: relative;
}
.fieldsetwrap .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .fieldsetwrap .container {
    flex-wrap: nowrap;
  }
}
.fieldsetwrap .nav-item:focus,
.fieldsetwrap .nav-link:focus {
  outline: none;
}
.fieldsetwrap .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.fieldsetwrap .navbar .bodywrap {
  margin-right: 1rem;
}
.fieldsetwrap .navbar .bodywrap img {
  width: auto;
}
.fieldsetwrap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .fieldsetwrap .navbar .bodywrap img {
    height: 3rem !important;
  }
  .fieldsetwrap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .fieldsetwrap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .fieldsetwrap .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.fieldsetwrap .navbar-brand {
  min-height: 120px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.fieldsetwrap .navbar-brand .plane {
  line-height: inherit !important;
  font-weight: 400;
}
.fieldsetwrap .navbar-brand .plane:hover,
.fieldsetwrap .navbar-brand .plane:focus {
  color: #000000 !important;
}
.fieldsetwrap .navbar-brand .bodywrap a {
  outline: none;
}
.fieldsetwrap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.fieldsetwrap ul.navbar-nav {
  position: relative;
  flex-wrap: wrap;
  padding: 8px;
  border: none !important;
  background-color: transparent !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180 !important;
  backdrop-filter: blur(5px);
  gap: 0 6px;
}
.fieldsetwrap ul.navbar-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3e9e3;
  opacity: .3;
  pointer-events: none;
}
.fieldsetwrap ul.navbar-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #f3e9e3;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
}
@media (min-width: 991px) {
  .fieldsetwrap ul.navbar-nav {
    background-color: transparent;
    border: 2px solid transparent;
  }
}
@media (max-width: 992px) {
  .fieldsetwrap ul.navbar-nav {
    box-shadow: none !important;
  }
}
.fieldsetwrap .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .fieldsetwrap .navbar-buttons {
    text-align: left;
  }
}
.fieldsetwrap .navbar-buttons .btn {
  white-space: nowrap;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .fieldsetwrap .navbar-buttons .btn {
    width: auto !important;
  }
}
.fieldsetwrap button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f5f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}

.fieldsetwrap .site-nav {
  padding: 0 1rem;
}
.fieldsetwrap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .fieldsetwrap .navbar {
    height: 120px;
  }
  .fieldsetwrap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.fieldsetwrap .navbar-nav {
  margin: 0 auto;
}
.fieldsetwrap .nav-item {
  padding: 0;
  margin: 0;
}
.fieldsetwrap .nav-item .nav-link {
  position: relative;
  z-index: 1;
  padding: 9px 38px !important;
  border: 1px solid transparent;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  background-color: transparent;
}
.fieldsetwrap .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}
.fieldsetwrap .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.fieldsetwrap .nav-item .nav-link:hover,
.fieldsetwrap .nav-item .nav-link:focus {
  color: #000000 !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180;
}
.fieldsetwrap .nav-item .nav-link:hover::after,
.fieldsetwrap .nav-item .nav-link:focus::after {
  color: #000000 !important;
}
.fieldsetwrap .nav-item .nav-link:hover::before,
.fieldsetwrap .nav-item .nav-link:focus::before {
  opacity: .2;
}
.fieldsetwrap .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .fieldsetwrap .navbar {
    justify-content: flex-start !important;
  }
  .fieldsetwrap .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .fieldsetwrap .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .fieldsetwrap .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .fieldsetwrap .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .fieldsetwrap .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.fieldsetwrap .layerbox {
  min-height: 120px;
}
.padsegment {
  padding-top: 225px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.padsegment .svg1 {
  position: absolute;
  bottom: -20rem;
  left: 50%;
  transform: translate(-50%) scale(1.3, 1.2);
}
.padsegment #e1_circle,
.padsegment #e3_circle,
.padsegment #e4_circle,
.padsegment #e5_circle {
  fill: #f5f4f4 !important;
}
.padsegment #e6_circle {
  fill: #ffffff !important;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.padsegment .round {
  border-radius: 100%;
  position: absolute;
  background-color: #f5f4f4;
  animation: orbit 4s linear infinite;
}
.padsegment .rev {
  animation: rev 4s linear infinite;
}
.padsegment .round1 {
  width: 50px;
  height: 50px;
  left: 7%;
  top: 60%;
}
.padsegment .round2 {
  width: 90px;
  height: 90px;
  left: 15%;
  top: 15%;
}
.padsegment .round3 {
  width: 40px;
  height: 40px;
  left: 30%;
  top: 15%;
}
.padsegment .round4 {
  width: 90px;
  height: 90px;
  left: 40%;
  top: 3%;
}
.padsegment .round5 {
  width: 50px;
  height: 50px;
  right: 5%;
  top: 55%;
}
.padsegment .round6 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 15%;
}
.padsegment .round7 {
  width: 70px;
  height: 70px;
  right: 20%;
  top: 20%;
}
.padsegment .round8 {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 30%;
}
.padsegment .round9 {
  width: 90px;
  height: 90px;
  right: 7%;
  top: 70%;
}
.padsegment .round10 {
  width: 50px;
  height: 50px;
  right: 35%;
  top: 5%;
}
.padsegment .round11 {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 35%;
}.padsegment .block-title,
.padsegment .chapter-title,
.padsegment .lead-h2,
.padsegment .main-heading,
.padsegment .page-h,
.padsegment .section-h,
.padsegment .section-heading,
.padsegment .topic-title {
  color: #928180;
}.padsegment .contentwrap,
.padsegment .block-action,
.padsegment .page-btn,
.padsegment .primary-cta,
.padsegment .section-action,
.padsegment .section-cta {
  color: #000000;
}
@media (max-width: 992px) {
  .padsegment .round9,
  .padsegment .round5 {
    display: none;
  }
}
@media (max-width: 576px) {
  .padsegment .round {
    display: none;
  }
}
.fieldbox {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f5f4f4;
}
.edgebox {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.edgebox .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .edgebox .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .edgebox .container {
    padding: 0 6px;
  }
}
.edgebox .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #f5f4f4;
}
@media (max-width: 1440px) {
  .edgebox .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .edgebox .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .edgebox .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .edgebox .row {
    padding: 50px 30px;
  }
}
.edgebox .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.edgebox .spanbox {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .edgebox .spanbox {
    padding: 0;
  }
}.edgebox .spanbox .block-title,
.edgebox .spanbox .chapter-title,
.edgebox .spanbox .lead-h2,
.edgebox .spanbox .main-heading,
.edgebox .spanbox .page-h,
.edgebox .spanbox .section-h,
.edgebox .spanbox .section-heading,
.edgebox .spanbox .topic-title {
  margin-bottom: 50px;
}.edgebox .spanbox .block-title span,
.edgebox .spanbox .chapter-title span,
.edgebox .spanbox .lead-h2 span,
.edgebox .spanbox .main-heading span,
.edgebox .spanbox .page-h span,
.edgebox .spanbox .section-h span,
.edgebox .spanbox .section-heading span,
.edgebox .spanbox .topic-title span {
  color: #928180;
}.edgebox .spanbox .block-action .btn,
.edgebox .spanbox .page-btn .btn,
.edgebox .spanbox .primary-cta .btn,
.edgebox .spanbox .section-action .btn,
.edgebox .spanbox .section-cta .btn {
  margin-bottom: 0;
}
.edgebox .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .edgebox .list-wrapper {
    padding: 0;
  }
}
.edgebox .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.edgebox .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.edgebox .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.edgebox .list-wrapper .list .item-wrap:hover,
.edgebox .list-wrapper .list .item-wrap:focus {
  color: #b7a9a8;
}
.edgebox .layersegment {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.edgebox .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title {
  color: #ffffff;
}
.edgebox .list {
  color: #ffffff;
}
.edgebox .list,
.edgebox .item-wrap {
  color: #000000;
}.edgebox .block-title,
.edgebox .chapter-title,
.edgebox .lead-h2,
.edgebox .main-heading,
.edgebox .page-h,
.edgebox .section-h,
.edgebox .section-heading,
.edgebox .topic-title,
.edgebox .block-action,
.edgebox .page-btn,
.edgebox .primary-cta,
.edgebox .section-action,
.edgebox .section-cta {
  color: #000000;
}
.bodybox .site-nav {
  position: relative !important;
}
.bodybox .site-nav {
  position: absolute !important;
}
.bodybox .container-fluid {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .bodybox .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.bodybox .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.bodybox .nav-link {
  position: relative;
}
.bodybox .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .bodybox .container {
    flex-wrap: nowrap;
  }
}
.bodybox .nav-item:focus,
.bodybox .nav-link:focus {
  outline: none;
}
.bodybox .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.bodybox .navbar .bodywrap {
  margin-right: 1rem;
}
.bodybox .navbar .bodywrap img {
  width: auto;
}
.bodybox .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .bodybox .navbar .nav-item .nav-link::before {
    display: none;
  }
  .bodybox .navbar .bodywrap img {
    height: 3rem !important;
  }
  .bodybox .navbar ul.navbar-nav li {
    margin: auto;
  }
  .bodybox .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .bodybox .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.bodybox .navbar-brand {
  min-height: 120px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.bodybox .navbar-brand .plane {
  line-height: inherit !important;
  font-weight: 400;
}
.bodybox .navbar-brand .plane:hover,
.bodybox .navbar-brand .plane:focus {
  color: #000000 !important;
}
.bodybox .navbar-brand .bodywrap a {
  outline: none;
}
.bodybox .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.bodybox ul.navbar-nav {
  position: relative;
  flex-wrap: wrap;
  padding: 8px;
  border: none !important;
  background-color: transparent !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180 !important;
  backdrop-filter: blur(5px);
  gap: 0 6px;
}
.bodybox ul.navbar-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3e9e3;
  opacity: .3;
  pointer-events: none;
}
.bodybox ul.navbar-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #f3e9e3;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
}
@media (min-width: 991px) {
  .bodybox ul.navbar-nav {
    background-color: transparent;
    border: 2px solid transparent;
  }
}
@media (max-width: 992px) {
  .bodybox ul.navbar-nav {
    box-shadow: none !important;
  }
}
.bodybox .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .bodybox .navbar-buttons {
    text-align: left;
  }
}
.bodybox .navbar-buttons .btn {
  white-space: nowrap;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .bodybox .navbar-buttons .btn {
    width: auto !important;
  }
}
.bodybox button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f5f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}

.bodybox .site-nav {
  padding: 0 1rem;
}
.bodybox a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .bodybox .navbar {
    height: 120px;
  }
  .bodybox .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.bodybox .navbar-nav {
  margin: 0 auto;
}
.bodybox .nav-item {
  padding: 0;
  margin: 0;
}
.bodybox .nav-item .nav-link {
  position: relative;
  z-index: 1;
  padding: 9px 38px !important;
  border: 1px solid transparent;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  background-color: transparent;
}
.bodybox .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}
.bodybox .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.bodybox .nav-item .nav-link:hover,
.bodybox .nav-item .nav-link:focus {
  color: #000000 !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180;
}
.bodybox .nav-item .nav-link:hover::after,
.bodybox .nav-item .nav-link:focus::after {
  color: #000000 !important;
}
.bodybox .nav-item .nav-link:hover::before,
.bodybox .nav-item .nav-link:focus::before {
  opacity: .2;
}
.bodybox .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .bodybox .navbar {
    justify-content: flex-start !important;
  }
  .bodybox .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .bodybox .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .bodybox .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .bodybox .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .bodybox .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.bodybox .layerbox {
  min-height: 120px;
}
.modulewrap {
  padding-top: 225px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.modulewrap .svg1 {
  position: absolute;
  bottom: -20rem;
  left: 50%;
  transform: translate(-50%) scale(1.3, 1.2);
}
.modulewrap #e1_circle,
.modulewrap #e3_circle,
.modulewrap #e4_circle,
.modulewrap #e5_circle {
  fill: #f5f4f4 !important;
}
.modulewrap #e6_circle {
  fill: #ffffff !important;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.modulewrap .round {
  border-radius: 100%;
  position: absolute;
  background-color: #f5f4f4;
  animation: orbit 4s linear infinite;
}
.modulewrap .rev {
  animation: rev 4s linear infinite;
}
.modulewrap .round1 {
  width: 50px;
  height: 50px;
  left: 7%;
  top: 60%;
}
.modulewrap .round2 {
  width: 90px;
  height: 90px;
  left: 15%;
  top: 15%;
}
.modulewrap .round3 {
  width: 40px;
  height: 40px;
  left: 30%;
  top: 15%;
}
.modulewrap .round4 {
  width: 90px;
  height: 90px;
  left: 40%;
  top: 3%;
}
.modulewrap .round5 {
  width: 50px;
  height: 50px;
  right: 5%;
  top: 55%;
}
.modulewrap .round6 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 15%;
}
.modulewrap .round7 {
  width: 70px;
  height: 70px;
  right: 20%;
  top: 20%;
}
.modulewrap .round8 {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 30%;
}
.modulewrap .round9 {
  width: 90px;
  height: 90px;
  right: 7%;
  top: 70%;
}
.modulewrap .round10 {
  width: 50px;
  height: 50px;
  right: 35%;
  top: 5%;
}
.modulewrap .round11 {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 35%;
}.modulewrap .block-title,
.modulewrap .chapter-title,
.modulewrap .lead-h2,
.modulewrap .main-heading,
.modulewrap .page-h,
.modulewrap .section-h,
.modulewrap .section-heading,
.modulewrap .topic-title {
  color: #928180;
}.modulewrap .contentwrap,
.modulewrap .block-action,
.modulewrap .page-btn,
.modulewrap .primary-cta,
.modulewrap .section-action,
.modulewrap .section-cta {
  color: #000000;
}
@media (max-width: 992px) {
  .modulewrap .round9,
  .modulewrap .round5 {
    display: none;
  }
}
@media (max-width: 576px) {
  .modulewrap .round {
    display: none;
  }
}
.nodewrapunit {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f5f4f4;
}
.nodemap {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.nodemap .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .nodemap .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .nodemap .container {
    padding: 0 6px;
  }
}
.nodemap .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #f5f4f4;
}
@media (max-width: 1440px) {
  .nodemap .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .nodemap .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .nodemap .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .nodemap .row {
    padding: 50px 30px;
  }
}
.nodemap .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.nodemap .spanbox {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .nodemap .spanbox {
    padding: 0;
  }
}.nodemap .spanbox .block-title,
.nodemap .spanbox .chapter-title,
.nodemap .spanbox .lead-h2,
.nodemap .spanbox .main-heading,
.nodemap .spanbox .page-h,
.nodemap .spanbox .section-h,
.nodemap .spanbox .section-heading,
.nodemap .spanbox .topic-title {
  margin-bottom: 50px;
}.nodemap .spanbox .block-title span,
.nodemap .spanbox .chapter-title span,
.nodemap .spanbox .lead-h2 span,
.nodemap .spanbox .main-heading span,
.nodemap .spanbox .page-h span,
.nodemap .spanbox .section-h span,
.nodemap .spanbox .section-heading span,
.nodemap .spanbox .topic-title span {
  color: #928180;
}.nodemap .spanbox .block-action .btn,
.nodemap .spanbox .page-btn .btn,
.nodemap .spanbox .primary-cta .btn,
.nodemap .spanbox .section-action .btn,
.nodemap .spanbox .section-cta .btn {
  margin-bottom: 0;
}
.nodemap .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .nodemap .list-wrapper {
    padding: 0;
  }
}
.nodemap .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.nodemap .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.nodemap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodemap .list-wrapper .list .item-wrap:hover,
.nodemap .list-wrapper .list .item-wrap:focus {
  color: #b7a9a8;
}
.nodemap .layersegment {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.nodemap .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}.nodemap .block-title,
.nodemap .chapter-title,
.nodemap .lead-h2,
.nodemap .main-heading,
.nodemap .page-h,
.nodemap .section-h,
.nodemap .section-heading,
.nodemap .topic-title {
  color: #ffffff;
}
.nodemap .list {
  color: #ffffff;
}
.nodemap .list,
.nodemap .item-wrap {
  color: #000000;
}.nodemap .block-title,
.nodemap .chapter-title,
.nodemap .lead-h2,
.nodemap .main-heading,
.nodemap .page-h,
.nodemap .section-h,
.nodemap .section-heading,
.nodemap .topic-title,
.nodemap .block-action,
.nodemap .page-btn,
.nodemap .primary-cta,
.nodemap .section-action,
.nodemap .section-cta {
  color: #000000;
}
.gridblock .site-nav {
  position: relative !important;
}
.gridblock .site-nav {
  position: absolute !important;
}
.gridblock .container-fluid {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .gridblock .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.gridblock .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.gridblock .nav-link {
  position: relative;
}
.gridblock .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .gridblock .container {
    flex-wrap: nowrap;
  }
}
.gridblock .nav-item:focus,
.gridblock .nav-link:focus {
  outline: none;
}
.gridblock .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.gridblock .navbar .bodywrap {
  margin-right: 1rem;
}
.gridblock .navbar .bodywrap img {
  width: auto;
}
.gridblock .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .gridblock .navbar .nav-item .nav-link::before {
    display: none;
  }
  .gridblock .navbar .bodywrap img {
    height: 3rem !important;
  }
  .gridblock .navbar ul.navbar-nav li {
    margin: auto;
  }
  .gridblock .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .gridblock .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.gridblock .navbar-brand {
  min-height: 120px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.gridblock .navbar-brand .plane {
  line-height: inherit !important;
  font-weight: 400;
}
.gridblock .navbar-brand .plane:hover,
.gridblock .navbar-brand .plane:focus {
  color: #000000 !important;
}
.gridblock .navbar-brand .bodywrap a {
  outline: none;
}
.gridblock .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.gridblock ul.navbar-nav {
  position: relative;
  flex-wrap: wrap;
  padding: 8px;
  border: none !important;
  background-color: transparent !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180 !important;
  backdrop-filter: blur(5px);
  gap: 0 6px;
}
.gridblock ul.navbar-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3e9e3;
  opacity: .3;
  pointer-events: none;
}
.gridblock ul.navbar-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #f3e9e3;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
}
@media (min-width: 991px) {
  .gridblock ul.navbar-nav {
    background-color: transparent;
    border: 2px solid transparent;
  }
}
@media (max-width: 992px) {
  .gridblock ul.navbar-nav {
    box-shadow: none !important;
  }
}
.gridblock .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .gridblock .navbar-buttons {
    text-align: left;
  }
}
.gridblock .navbar-buttons .btn {
  white-space: nowrap;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .gridblock .navbar-buttons .btn {
    width: auto !important;
  }
}
.gridblock button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f5f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}

.gridblock .site-nav {
  padding: 0 1rem;
}
.gridblock a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .gridblock .navbar {
    height: 120px;
  }
  .gridblock .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.gridblock .navbar-nav {
  margin: 0 auto;
}
.gridblock .nav-item {
  padding: 0;
  margin: 0;
}
.gridblock .nav-item .nav-link {
  position: relative;
  z-index: 1;
  padding: 9px 38px !important;
  border: 1px solid transparent;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  background-color: transparent;
}
.gridblock .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}
.gridblock .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.gridblock .nav-item .nav-link:hover,
.gridblock .nav-item .nav-link:focus {
  color: #000000 !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180;
}
.gridblock .nav-item .nav-link:hover::after,
.gridblock .nav-item .nav-link:focus::after {
  color: #000000 !important;
}
.gridblock .nav-item .nav-link:hover::before,
.gridblock .nav-item .nav-link:focus::before {
  opacity: .2;
}
.gridblock .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .gridblock .navbar {
    justify-content: flex-start !important;
  }
  .gridblock .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .gridblock .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .gridblock .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .gridblock .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .gridblock .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.gridblock .layerbox {
  min-height: 120px;
}
.trackbox {
  padding-top: 225px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.trackbox .svg1 {
  position: absolute;
  bottom: -20rem;
  left: 50%;
  transform: translate(-50%) scale(1.3, 1.2);
}
.trackbox #e1_circle,
.trackbox #e3_circle,
.trackbox #e4_circle,
.trackbox #e5_circle {
  fill: #f5f4f4 !important;
}
.trackbox #e6_circle {
  fill: #ffffff !important;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.trackbox .round {
  border-radius: 100%;
  position: absolute;
  background-color: #f5f4f4;
  animation: orbit 4s linear infinite;
}
.trackbox .rev {
  animation: rev 4s linear infinite;
}
.trackbox .round1 {
  width: 50px;
  height: 50px;
  left: 7%;
  top: 60%;
}
.trackbox .round2 {
  width: 90px;
  height: 90px;
  left: 15%;
  top: 15%;
}
.trackbox .round3 {
  width: 40px;
  height: 40px;
  left: 30%;
  top: 15%;
}
.trackbox .round4 {
  width: 90px;
  height: 90px;
  left: 40%;
  top: 3%;
}
.trackbox .round5 {
  width: 50px;
  height: 50px;
  right: 5%;
  top: 55%;
}
.trackbox .round6 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 15%;
}
.trackbox .round7 {
  width: 70px;
  height: 70px;
  right: 20%;
  top: 20%;
}
.trackbox .round8 {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 30%;
}
.trackbox .round9 {
  width: 90px;
  height: 90px;
  right: 7%;
  top: 70%;
}
.trackbox .round10 {
  width: 50px;
  height: 50px;
  right: 35%;
  top: 5%;
}
.trackbox .round11 {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 35%;
}.trackbox .block-title,
.trackbox .chapter-title,
.trackbox .lead-h2,
.trackbox .main-heading,
.trackbox .page-h,
.trackbox .section-h,
.trackbox .section-heading,
.trackbox .topic-title {
  color: #928180;
}.trackbox .contentwrap,
.trackbox .block-action,
.trackbox .page-btn,
.trackbox .primary-cta,
.trackbox .section-action,
.trackbox .section-cta {
  color: #000000;
}
@media (max-width: 992px) {
  .trackbox .round9,
  .trackbox .round5 {
    display: none;
  }
}
@media (max-width: 576px) {
  .trackbox .round {
    display: none;
  }
}
.view {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f5f4f4;
}
.headbox {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.headbox .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .headbox .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .headbox .container {
    padding: 0 6px;
  }
}
.headbox .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #f5f4f4;
}
@media (max-width: 1440px) {
  .headbox .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .headbox .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .headbox .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .headbox .row {
    padding: 50px 30px;
  }
}
.headbox .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.headbox .spanbox {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .headbox .spanbox {
    padding: 0;
  }
}.headbox .spanbox .block-title,
.headbox .spanbox .chapter-title,
.headbox .spanbox .lead-h2,
.headbox .spanbox .main-heading,
.headbox .spanbox .page-h,
.headbox .spanbox .section-h,
.headbox .spanbox .section-heading,
.headbox .spanbox .topic-title {
  margin-bottom: 50px;
}.headbox .spanbox .block-title span,
.headbox .spanbox .chapter-title span,
.headbox .spanbox .lead-h2 span,
.headbox .spanbox .main-heading span,
.headbox .spanbox .page-h span,
.headbox .spanbox .section-h span,
.headbox .spanbox .section-heading span,
.headbox .spanbox .topic-title span {
  color: #928180;
}.headbox .spanbox .block-action .btn,
.headbox .spanbox .page-btn .btn,
.headbox .spanbox .primary-cta .btn,
.headbox .spanbox .section-action .btn,
.headbox .spanbox .section-cta .btn {
  margin-bottom: 0;
}
.headbox .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .headbox .list-wrapper {
    padding: 0;
  }
}
.headbox .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.headbox .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.headbox .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.headbox .list-wrapper .list .item-wrap:hover,
.headbox .list-wrapper .list .item-wrap:focus {
  color: #b7a9a8;
}
.headbox .layersegment {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.headbox .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}.headbox .block-title,
.headbox .chapter-title,
.headbox .lead-h2,
.headbox .main-heading,
.headbox .page-h,
.headbox .section-h,
.headbox .section-heading,
.headbox .topic-title {
  color: #ffffff;
}
.headbox .list {
  color: #ffffff;
}
.headbox .list,
.headbox .item-wrap {
  color: #000000;
}.headbox .block-title,
.headbox .chapter-title,
.headbox .lead-h2,
.headbox .main-heading,
.headbox .page-h,
.headbox .section-h,
.headbox .section-heading,
.headbox .topic-title,
.headbox .block-action,
.headbox .page-btn,
.headbox .primary-cta,
.headbox .section-action,
.headbox .section-cta {
  color: #000000;
}
.domunit .site-nav {
  position: relative !important;
}
.domunit .site-nav {
  position: absolute !important;
}
.domunit .container-fluid {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .domunit .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.domunit .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.domunit .nav-link {
  position: relative;
}
.domunit .container {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
}
@media (min-width: 992px) {
  .domunit .container {
    flex-wrap: nowrap;
  }
}
.domunit .nav-item:focus,
.domunit .nav-link:focus {
  outline: none;
}
.domunit .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.domunit .navbar .bodywrap {
  margin-right: 1rem;
}
.domunit .navbar .bodywrap img {
  width: auto;
}
.domunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .domunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domunit .navbar .bodywrap img {
    height: 3rem !important;
  }
  .domunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .domunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .domunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domunit .navbar-brand {
  min-height: 120px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.domunit .navbar-brand .plane {
  line-height: inherit !important;
  font-weight: 400;
}
.domunit .navbar-brand .plane:hover,
.domunit .navbar-brand .plane:focus {
  color: #000000 !important;
}
.domunit .navbar-brand .bodywrap a {
  outline: none;
}
.domunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domunit ul.navbar-nav {
  position: relative;
  flex-wrap: wrap;
  padding: 8px;
  border: none !important;
  background-color: transparent !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180 !important;
  backdrop-filter: blur(5px);
  gap: 0 6px;
}
.domunit ul.navbar-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3e9e3;
  opacity: .3;
  pointer-events: none;
}
.domunit ul.navbar-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #f3e9e3;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
}
@media (min-width: 991px) {
  .domunit ul.navbar-nav {
    background-color: transparent;
    border: 2px solid transparent;
  }
}
@media (max-width: 992px) {
  .domunit ul.navbar-nav {
    box-shadow: none !important;
  }
}
.domunit .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .domunit .navbar-buttons {
    text-align: left;
  }
}
.domunit .navbar-buttons .btn {
  white-space: nowrap;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .domunit .navbar-buttons .btn {
    width: auto !important;
  }
}
.domunit button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f5f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}

.domunit .site-nav {
  padding: 0 1rem;
}
.domunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domunit .navbar {
    height: 120px;
  }
  .domunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.domunit .navbar-nav {
  margin: 0 auto;
}
.domunit .nav-item {
  padding: 0;
  margin: 0;
}
.domunit .nav-item .nav-link {
  position: relative;
  z-index: 1;
  padding: 9px 38px !important;
  border: 1px solid transparent;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  background-color: transparent;
}
.domunit .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all .3s ease;
}
.domunit .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.domunit .nav-item .nav-link:hover,
.domunit .nav-item .nav-link:focus {
  color: #000000 !important;
  box-shadow: 2px 0 1px -1px #928180, -2px 0 1px -1px #928180;
}
.domunit .nav-item .nav-link:hover::after,
.domunit .nav-item .nav-link:focus::after {
  color: #000000 !important;
}
.domunit .nav-item .nav-link:hover::before,
.domunit .nav-item .nav-link:focus::before {
  opacity: .2;
}
.domunit .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .domunit .navbar {
    justify-content: flex-start !important;
  }
  .domunit .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .domunit .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .domunit .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .domunit .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .domunit .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.domunit .layerbox {
  min-height: 120px;
}
.contentunit {
  padding-top: 225px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.contentunit .svg1 {
  position: absolute;
  bottom: -20rem;
  left: 50%;
  transform: translate(-50%) scale(1.3, 1.2);
}
.contentunit #e1_circle,
.contentunit #e3_circle,
.contentunit #e4_circle,
.contentunit #e5_circle {
  fill: #f5f4f4 !important;
}
.contentunit #e6_circle {
  fill: #ffffff !important;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.contentunit .round {
  border-radius: 100%;
  position: absolute;
  background-color: #f5f4f4;
  animation: orbit 4s linear infinite;
}
.contentunit .rev {
  animation: rev 4s linear infinite;
}
.contentunit .round1 {
  width: 50px;
  height: 50px;
  left: 7%;
  top: 60%;
}
.contentunit .round2 {
  width: 90px;
  height: 90px;
  left: 15%;
  top: 15%;
}
.contentunit .round3 {
  width: 40px;
  height: 40px;
  left: 30%;
  top: 15%;
}
.contentunit .round4 {
  width: 90px;
  height: 90px;
  left: 40%;
  top: 3%;
}
.contentunit .round5 {
  width: 50px;
  height: 50px;
  right: 5%;
  top: 55%;
}
.contentunit .round6 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 15%;
}
.contentunit .round7 {
  width: 70px;
  height: 70px;
  right: 20%;
  top: 20%;
}
.contentunit .round8 {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 30%;
}
.contentunit .round9 {
  width: 90px;
  height: 90px;
  right: 7%;
  top: 70%;
}
.contentunit .round10 {
  width: 50px;
  height: 50px;
  right: 35%;
  top: 5%;
}
.contentunit .round11 {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 35%;
}.contentunit .block-title,
.contentunit .chapter-title,
.contentunit .lead-h2,
.contentunit .main-heading,
.contentunit .page-h,
.contentunit .section-h,
.contentunit .section-heading,
.contentunit .topic-title {
  color: #928180;
}.contentunit .contentwrap,
.contentunit .block-action,
.contentunit .page-btn,
.contentunit .primary-cta,
.contentunit .section-action,
.contentunit .section-cta {
  color: #000000;
}
@media (max-width: 992px) {
  .contentunit .round9,
  .contentunit .round5 {
    display: none;
  }
}
@media (max-width: 576px) {
  .contentunit .round {
    display: none;
  }
}
.dompart {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f5f4f4;
}
.contentgrid {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.contentgrid .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .contentgrid .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .contentgrid .container {
    padding: 0 6px;
  }
}
.contentgrid .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #f5f4f4;
}
@media (max-width: 1440px) {
  .contentgrid .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .contentgrid .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .contentgrid .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .contentgrid .row {
    padding: 50px 30px;
  }
}
.contentgrid .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.contentgrid .spanbox {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .contentgrid .spanbox {
    padding: 0;
  }
}.contentgrid .spanbox .block-title,
.contentgrid .spanbox .chapter-title,
.contentgrid .spanbox .lead-h2,
.contentgrid .spanbox .main-heading,
.contentgrid .spanbox .page-h,
.contentgrid .spanbox .section-h,
.contentgrid .spanbox .section-heading,
.contentgrid .spanbox .topic-title {
  margin-bottom: 50px;
}.contentgrid .spanbox .block-title span,
.contentgrid .spanbox .chapter-title span,
.contentgrid .spanbox .lead-h2 span,
.contentgrid .spanbox .main-heading span,
.contentgrid .spanbox .page-h span,
.contentgrid .spanbox .section-h span,
.contentgrid .spanbox .section-heading span,
.contentgrid .spanbox .topic-title span {
  color: #928180;
}.contentgrid .spanbox .block-action .btn,
.contentgrid .spanbox .page-btn .btn,
.contentgrid .spanbox .primary-cta .btn,
.contentgrid .spanbox .section-action .btn,
.contentgrid .spanbox .section-cta .btn {
  margin-bottom: 0;
}
.contentgrid .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .contentgrid .list-wrapper {
    padding: 0;
  }
}
.contentgrid .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.contentgrid .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.contentgrid .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.contentgrid .list-wrapper .list .item-wrap:hover,
.contentgrid .list-wrapper .list .item-wrap:focus {
  color: #b7a9a8;
}
.contentgrid .layersegment {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.contentgrid .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}.contentgrid .block-title,
.contentgrid .chapter-title,
.contentgrid .lead-h2,
.contentgrid .main-heading,
.contentgrid .page-h,
.contentgrid .section-h,
.contentgrid .section-heading,
.contentgrid .topic-title {
  color: #ffffff;
}
.contentgrid .list {
  color: #ffffff;
}
.contentgrid .list,
.contentgrid .item-wrap {
  color: #000000;
}.contentgrid .block-title,
.contentgrid .chapter-title,
.contentgrid .lead-h2,
.contentgrid .main-heading,
.contentgrid .page-h,
.contentgrid .section-h,
.contentgrid .section-heading,
.contentgrid .topic-title,
.contentgrid .block-action,
.contentgrid .page-btn,
.contentgrid .primary-cta,
.contentgrid .section-action,
.contentgrid .section-cta {
  color: #000000;
}

.rootwrap {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.rootwrap *,
.rootwrap *::before,
.rootwrap *::after {
  box-sizing: border-box;
}

.floatunit {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 240px;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffefb 0%, #f4f1eb 100%);
  border: 1px solid #ddd7ce;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.floatunit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  pointer-events: none;
}

.containerwrap {
  position: relative;
  padding: 18px;
  background: linear-gradient(180deg, #2f3b34 0%, #253029 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.containerwrap::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: 0;
  width: 1px;
  background: rgba(255,255,255,0.10);
}

.wrapunitbox {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tagbox {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cookie-side-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-side-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e6ecdf;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-side-text {
  color: #d5dfd2;
  font-size: 13px;
  line-height: 1.45;
}

.netbox {
  position: relative;
  padding: 18px 22px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.netbox::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #748a74 0%, #b59d6c 50%, #c7b28a 100%);
}

.bodylayer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.framefield {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ece8df;
  border: 1px solid #ddd6ca;
  color: #6d6a63;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shiftbox {
  display: inline-block;
  color: #2d312d;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 600;
}

.zone {
  margin: 0;
  color: #3f433f;
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.meta-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.aux-links-text {
  color: #75726c;
  font-size: 12px;
  line-height: 1.4;
}

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.footer-links-row a {
  display: inline-block;
  color: #556b5d;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(85, 107, 93, 0.34);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links-row a:hover {
  color: #38483e;
  border-bottom-color: #38483e;
}

.footer-links-row span {
  color: #75726c;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.modulebox {
  position: relative;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #efebe4 0%, #e7e1d8 100%);
}

.modulebox::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: #d8d0c4;
}

#cookieAccept {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: #2f3b34;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(47, 59, 52, 0.16);
}

#cookieAccept:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .floatunit {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .modulebox {
    grid-column: 1 / -1;
    flex-direction: row;
    padding: 16px 18px 18px;
  }

  .modulebox::before {
    display: none;
  }

  .modulebox {
    border-top: 1px solid #d8d0c4;
  }

  #cookieAccept {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .rootwrap {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .floatunit {
    grid-template-columns: 1fr;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .containerwrap {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .containerwrap::after {
    display: none;
  }

  .cookie-side-copy {
    align-items: center;
  }

  .cookie-side-label {
    align-self: center;
  }

  .netbox {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .netbox::before {
    left: 16px;
    right: 16px;
  }

  .bodylayer {
    justify-content: center;
  }

  .shiftbox {
    font-size: 19px;
    text-align: center;
  }

  .zone {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .meta-links {
    align-items: center;
    text-align: center;
  }

  .footer-links-row {
    justify-content: center;
  }

  .modulebox {
    padding: 16px;
    flex-direction: column;
  }

  #cookieAccept {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .rootwrap {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .floatunit {
    border-radius: 18px;
  }

  .wrapunitbox {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .tagbox {
    width: 36px;
    height: 36px;
  }

  .shiftbox {
    font-size: 17px;
  }

  .cookie-side-text,
  .aux-links-text,
  .footer-links-row a,
  .footer-links-row span,
  #cookieAccept {
    font-size: 12px;
  }
}

.chip-wide-input {
  padding: 0 !important;
  background: transparent;
}
.chip-wide-input .hint-small-input {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 44px;
  background: #fffdf8;
  border: 1px solid #eadfce;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(101, 67, 33, 0.10);
  box-sizing: border-box;
}
.chip-wide-input #sideActiveHeader {
  width: 100%;
  color: #3f2d1f;
  font-size: 16px;
  display: grid;
  grid-template-columns: 1fr;
}
.chip-wide-input #sideActiveHeader *,
.chip-wide-input #sideActiveHeader *::before,
.chip-wide-input #sideActiveHeader *::after {
  box-sizing: border-box;
}
.chip-wide-input #sideActiveHeader [hidden] {
  display: none !important;
}
.chip-wide-input #sideActiveHeader .slot-inner-mark {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #6b4f3a;
  text-align: center;
}
.chip-wide-input #sideActiveHeader .field-first-side {
  margin-bottom: 20px;
}
.chip-wide-input #sideActiveHeader .grid-small-hint {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #4a3324;
  text-align: center;
}
.chip-wide-input #sideActiveHeader .layout-split-slot {
  width: 100%;
  padding: 15px 17px;
  border: 1px solid #dbc8b3 !important;
  border-radius: 18px !important;
  background: #fffaf2 !important;
  color: #3f2d1f !important;
  font-size: 15px;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}
.chip-wide-input #sideActiveHeader textarea.layout-split-slot {
  min-height: 185px;
  resize: vertical;
  text-align: left;
}
.chip-wide-input #sideActiveHeader .layout-split-slot::placeholder {
  color: #b08968;
  opacity: 1;
}
.chip-wide-input #sideActiveHeader .layout-split-slot:focus {
  outline: none;
  border-color: #c08457 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(192, 132, 87, 0.14) !important;
}
.chip-wide-input #sideActiveHeader .site-plain-layout {
  width: 100%;
  padding: 18px;
  border: 1px solid #e6d7c4;
  border-radius: 18px !important;
  background: #fff8ee;
  text-align: left;
}
.chip-wide-input #sideActiveHeader .tag-main-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0;
}
.chip-wide-input #sideActiveHeader .group-small-status {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #c08457;
}
.chip-wide-input #sideActiveHeader .grid-active-card {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: #6b4f3a;
  cursor: pointer;
}
.chip-wide-input #sideActiveHeader a {
  color: #9a5f2f;
  text-decoration: none;
  font-weight: 600;
}
.chip-wide-input #sideActiveHeader a:hover,
.chip-wide-input #sideActiveHeader a:focus {
  text-decoration: underline;
}
.chip-wide-input #sideActiveHeader .head-bottom-marker {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.chip-wide-input #sideActiveHeader .top-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 15px 30px;
  border: 1px solid #b87333;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #d4a373 0%, #b87333 100%);
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 14px 30px rgba(184, 115, 51, 0.22);
}
.chip-wide-input #sideActiveHeader .top-hint:hover,
.chip-wide-input #sideActiveHeader .top-hint:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(184, 115, 51, 0.26);
}
.chip-wide-input #sideActiveHeader .unit {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 16px !important;
  font-size: 14px;
  line-height: 1.6;
}
.chip-wide-input #sideActiveHeader .holder-big-slot {
  background: #f1faee;
  border: 1px solid #cfe8c6;
  color: #48663d;
}
.chip-wide-input #sideActiveHeader .root-half-text {
  background: #fff1f0;
  border: 1px solid #f1c8c5;
  color: #9f3a38;
}
.chip-wide-input #sideActiveHeader .content-open-holder {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: #8a6a52;
  text-align: center;
}
@media (max-width: 767px) {
  .chip-wide-input {
    padding: 0 16px !important;
  }
  .chip-wide-input .hint-small-input {
    padding: 24px 18px;
    border-radius: 20px;
  }
  .chip-wide-input #sideActiveHeader .slot-inner-mark {
    font-size: 14px;
    margin-bottom: 18px;
    text-align: center;
  }
  .chip-wide-input #sideActiveHeader .layout-split-slot {
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 14px !important;
  }
  .chip-wide-input #sideActiveHeader textarea.layout-split-slot {
    min-height: 160px;
  }
  .chip-wide-input #sideActiveHeader .site-plain-layout {
    padding: 15px;
    border-radius: 14px !important;
  }
  .chip-wide-input #sideActiveHeader .grid-active-card {
    font-size: 13px;
  }
  .chip-wide-input #sideActiveHeader .top-hint {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
  }
}

.rootwrap {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.rootwrap *,
.rootwrap *::before,
.rootwrap *::after {
  box-sizing: border-box;
}

.rootwrap.revealed {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.rootwrap.closed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.floatunit {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 240px;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffefb 0%, #f4f1eb 100%);
  border: 1px solid #ddd7ce;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.floatunit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  pointer-events: none;
}

.containerwrap {
  position: relative;
  padding: 18px;
  background: linear-gradient(180deg, #2f3b34 0%, #253029 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.containerwrap::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: 0;
  width: 1px;
  background: rgba(255,255,255,0.10);
}

.wrapunitbox {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tagbox {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cookie-side-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-side-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e6ecdf;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-side-text {
  color: #d5dfd2;
  font-size: 13px;
  line-height: 1.45;
}

.netbox {
  position: relative;
  padding: 18px 22px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.netbox::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #748a74 0%, #b59d6c 50%, #c7b28a 100%);
}

.bodylayer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.framefield {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ece8df;
  border: 1px solid #ddd6ca;
  color: #6d6a63;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shiftbox {
  display: inline-block;
  color: #2d312d;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 600;
}

.zone {
  margin: 0;
  color: #3f433f;
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.meta-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.aux-links-text {
  color: #75726c;
  font-size: 12px;
  line-height: 1.4;
}

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.footer-links-row a {
  display: inline-block;
  color: #556b5d;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(85, 107, 93, 0.34);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links-row a:hover {
  color: #38483e;
  border-bottom-color: #38483e;
}

.footer-links-row span {
  color: #75726c;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.modulebox {
  position: relative;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #efebe4 0%, #e7e1d8 100%);
}

.modulebox::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: #d8d0c4;
}

#cookieAccept {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: #2f3b34;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(47, 59, 52, 0.16);
}

#cookieAccept:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .floatunit {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .modulebox {
    grid-column: 1 / -1;
    flex-direction: row;
    padding: 16px 18px 18px;
  }

  .modulebox::before {
    display: none;
  }

  .modulebox {
    border-top: 1px solid #d8d0c4;
  }

  #cookieAccept {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .rootwrap {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .floatunit {
    grid-template-columns: 1fr;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .containerwrap {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .containerwrap::after {
    display: none;
  }

  .cookie-side-copy {
    align-items: center;
  }

  .cookie-side-label {
    align-self: center;
  }

  .netbox {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .netbox::before {
    left: 16px;
    right: 16px;
  }

  .bodylayer {
    justify-content: center;
  }

  .shiftbox {
    font-size: 19px;
    text-align: center;
  }

  .zone {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .meta-links {
    align-items: center;
    text-align: center;
  }

  .footer-links-row {
    justify-content: center;
  }

  .modulebox {
    padding: 16px;
    flex-direction: column;
  }

  #cookieAccept {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .rootwrap {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .floatunit {
    border-radius: 18px;
  }

  .wrapunitbox {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .tagbox {
    width: 36px;
    height: 36px;
  }

  .shiftbox {
    font-size: 17px;
  }

  .cookie-side-text,
  .aux-links-text,
  .footer-links-row a,
  .footer-links-row span,
  #cookieAccept {
    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%2833%2C37%2C41%2C0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
