:root {

  --site-success-rgb: 25, 135, 84;
  --site-primary-text-emphasis: #052c65;
  --site-primary-bg-subtle: #cfe2ff;
  --site-white-rgb: 255, 255, 255;
  --site-body-font-family: var(--site-font-sans-serif);
  --site-body-font-size: 1rem;
  --site-body-font-weight: 400;
  --site-body-line-height: 1.5;
  --site-body-color: #212529;
  --site-body-color-rgb: 33, 37, 41;
  --site-body-bg: #fff;
  --site-emphasis-color: #000;
  --site-emphasis-color-rgb: 0, 0, 0;
  --site-secondary-color: rgba(33, 37, 41, 0.75);
  --site-secondary-bg: #e9ecef;
  --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: #dee2e6;
  --site-border-color-translucent: rgba(0, 0, 0, 0.175);
  --site-border-radius: 0.375rem;
  --site-border-radius-sm: 0.25rem;
  --site-border-radius-lg: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--site-body-font-family);
  font-size: var(--site-body-font-size);
  font-weight: var(--site-body-font-weight);
  line-height: var(--site-body-line-height);
  color: var(--site-body-color);
  text-align: var(--site-body-text-align);
  background-color: var(--site-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

 h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--site-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

a {
  color: rgba(var(--site-link-color-rgb), var(--site-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --site-link-color-rgb: var(--site-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button] {
  -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;
}

iframe {
  border: 0;
}

.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.container,
.container-fluid {
  --site-gutter-x: 1.5rem;
  --site-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--site-gutter-x) * 0.5);
  padding-left: calc(var(--site-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
   .container {
    max-width: 1320px;
  }
}
:root {
  --site-breakpoint-xs: 0;
  --site-breakpoint-sm: 576px;
  --site-breakpoint-md: 768px;
  --site-breakpoint-lg: 992px;
  --site-breakpoint-xl: 1200px;
  --site-breakpoint-xxl: 1400px;
}

.row {
  --site-gutter-x: 1.5rem;
  --site-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--site-gutter-y));
  margin-right: calc(-0.5 * var(--site-gutter-x));
  margin-left: calc(-0.5 * var(--site-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--site-gutter-x) * 0.5);
  padding-left: calc(var(--site-gutter-x) * 0.5);
  margin-top: var(--site-gutter-y);
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.col-form-label {
  padding-top: calc(0.375rem + var(--site-border-width));
  padding-bottom: calc(0.375rem + var(--site-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--site-border-width));
  padding-bottom: calc(0.5rem + var(--site-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--site-border-width));
  padding-bottom: calc(0.25rem + var(--site-border-width));
  font-size: 0.875rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
 .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.btn {
  --site-btn-padding-x: 0.75rem;
  --site-btn-padding-y: 0.375rem;
  --site-btn-font-family: ;
  --site-btn-font-size: 1rem;
  --site-btn-font-weight: 400;
  --site-btn-line-height: 1.5;
  --site-btn-color: var(--site-body-color);
  --site-btn-bg: transparent;
  --site-btn-border-width: var(--site-border-width);
  --site-btn-border-color: transparent;
  --site-btn-border-radius: var(--site-border-radius);
  --site-btn-hover-border-color: transparent;
  --site-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --site-btn-disabled-opacity: 0.65;
  --site-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--site-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--site-btn-padding-y) var(--site-btn-padding-x);
  font-family: var(--site-btn-font-family);
  font-size: var(--site-btn-font-size);
  font-weight: var(--site-btn-font-weight);
  line-height: var(--site-btn-line-height);
  color: var(--site-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--site-btn-border-width) solid var(--site-btn-border-color);
  border-radius: var(--site-btn-border-radius);
  background-color: var(--site-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--site-btn-hover-color);
  background-color: var(--site-btn-hover-bg);
  border-color: var(--site-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--site-btn-color);
  background-color: var(--site-btn-bg);
  border-color: var(--site-btn-border-color);
}
.btn:focus-visible {
  color: var(--site-btn-hover-color);
  background-color: var(--site-btn-hover-bg);
  border-color: var(--site-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--site-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--site-btn-active-color);
  background-color: var(--site-btn-active-bg);
  border-color: var(--site-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn:disabled {
  color: var(--site-btn-disabled-color);
  pointer-events: none;
  background-color: var(--site-btn-disabled-bg);
  border-color: var(--site-btn-disabled-border-color);
  opacity: var(--site-btn-disabled-opacity);
}

.btn-primary {
  --site-btn-color: #fff;
  --site-btn-bg: #0d6efd;
  --site-btn-border-color: #0d6efd;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #0b5ed7;
  --site-btn-hover-border-color: #0a58ca;
  --site-btn-focus-shadow-rgb: 49, 132, 253;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #0a58ca;
  --site-btn-active-border-color: #0a53be;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #0d6efd;
  --site-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --site-btn-color: #fff;
  --site-btn-bg: #6c757d;
  --site-btn-border-color: #6c757d;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #5c636a;
  --site-btn-hover-border-color: #565e64;
  --site-btn-focus-shadow-rgb: 130, 138, 145;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #565e64;
  --site-btn-active-border-color: #51585e;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #6c757d;
  --site-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --site-btn-color: #fff;
  --site-btn-bg: #198754;
  --site-btn-border-color: #198754;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #157347;
  --site-btn-hover-border-color: #146c43;
  --site-btn-focus-shadow-rgb: 60, 153, 110;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #146c43;
  --site-btn-active-border-color: #13653f;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #198754;
  --site-btn-disabled-border-color: #198754;
}

.btn-info {
  --site-btn-color: #000;
  --site-btn-bg: #0dcaf0;
  --site-btn-border-color: #0dcaf0;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #31d2f2;
  --site-btn-hover-border-color: #25cff2;
  --site-btn-focus-shadow-rgb: 11, 172, 204;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #3dd5f3;
  --site-btn-active-border-color: #25cff2;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #0dcaf0;
  --site-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --site-btn-color: #000;
  --site-btn-bg: #ffc107;
  --site-btn-border-color: #ffc107;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #ffca2c;
  --site-btn-hover-border-color: #ffc720;
  --site-btn-focus-shadow-rgb: 217, 164, 6;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #ffcd39;
  --site-btn-active-border-color: #ffc720;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #ffc107;
  --site-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --site-btn-color: #fff;
  --site-btn-bg: #dc3545;
  --site-btn-border-color: #dc3545;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #bb2d3b;
  --site-btn-hover-border-color: #b02a37;
  --site-btn-focus-shadow-rgb: 225, 83, 97;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #b02a37;
  --site-btn-active-border-color: #a52834;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #dc3545;
  --site-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --site-btn-color: #000;
  --site-btn-bg: #f8f9fa;
  --site-btn-border-color: #f8f9fa;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #d3d4d5;
  --site-btn-hover-border-color: #c6c7c8;
  --site-btn-focus-shadow-rgb: 211, 212, 213;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #c6c7c8;
  --site-btn-active-border-color: #babbbc;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #f8f9fa;
  --site-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --site-btn-color: #fff;
  --site-btn-bg: #212529;
  --site-btn-border-color: #212529;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #424649;
  --site-btn-hover-border-color: #373b3e;
  --site-btn-focus-shadow-rgb: 66, 70, 73;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #4d5154;
  --site-btn-active-border-color: #373b3e;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #212529;
  --site-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --site-btn-color: #0d6efd;
  --site-btn-border-color: #0d6efd;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #0d6efd;
  --site-btn-hover-border-color: #0d6efd;
  --site-btn-focus-shadow-rgb: 13, 110, 253;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #0d6efd;
  --site-btn-active-border-color: #0d6efd;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #0d6efd;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #0d6efd;
  --site-gradient: none;
}

.btn-outline-secondary {
  --site-btn-color: #6c757d;
  --site-btn-border-color: #6c757d;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #6c757d;
  --site-btn-hover-border-color: #6c757d;
  --site-btn-focus-shadow-rgb: 108, 117, 125;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #6c757d;
  --site-btn-active-border-color: #6c757d;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #6c757d;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #6c757d;
  --site-gradient: none;
}

.btn-outline-success {
  --site-btn-color: #198754;
  --site-btn-border-color: #198754;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #198754;
  --site-btn-hover-border-color: #198754;
  --site-btn-focus-shadow-rgb: 25, 135, 84;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #198754;
  --site-btn-active-border-color: #198754;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #198754;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #198754;
  --site-gradient: none;
}

.btn-outline-info {
  --site-btn-color: #0dcaf0;
  --site-btn-border-color: #0dcaf0;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #0dcaf0;
  --site-btn-hover-border-color: #0dcaf0;
  --site-btn-focus-shadow-rgb: 13, 202, 240;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #0dcaf0;
  --site-btn-active-border-color: #0dcaf0;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #0dcaf0;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #0dcaf0;
  --site-gradient: none;
}

.btn-outline-warning {
  --site-btn-color: #ffc107;
  --site-btn-border-color: #ffc107;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #ffc107;
  --site-btn-hover-border-color: #ffc107;
  --site-btn-focus-shadow-rgb: 255, 193, 7;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #ffc107;
  --site-btn-active-border-color: #ffc107;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #ffc107;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #ffc107;
  --site-gradient: none;
}

.btn-outline-danger {
  --site-btn-color: #dc3545;
  --site-btn-border-color: #dc3545;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #dc3545;
  --site-btn-hover-border-color: #dc3545;
  --site-btn-focus-shadow-rgb: 220, 53, 69;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #dc3545;
  --site-btn-active-border-color: #dc3545;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #dc3545;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #dc3545;
  --site-gradient: none;
}

.btn-outline-light {
  --site-btn-color: #f8f9fa;
  --site-btn-border-color: #f8f9fa;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #f8f9fa;
  --site-btn-hover-border-color: #f8f9fa;
  --site-btn-focus-shadow-rgb: 248, 249, 250;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #f8f9fa;
  --site-btn-active-border-color: #f8f9fa;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #f8f9fa;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #f8f9fa;
  --site-gradient: none;
}

.btn-outline-dark {
  --site-btn-color: #212529;
  --site-btn-border-color: #212529;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #212529;
  --site-btn-hover-border-color: #212529;
  --site-btn-focus-shadow-rgb: 33, 37, 41;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #212529;
  --site-btn-active-border-color: #212529;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #212529;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #212529;
  --site-gradient: none;
}

.btn-link {
  --site-btn-font-weight: 400;
  --site-btn-color: var(--site-link-color);
  --site-btn-bg: transparent;
  --site-btn-border-color: transparent;
  --site-btn-hover-color: var(--site-link-hover-color);
  --site-btn-hover-border-color: transparent;
  --site-btn-active-color: var(--site-link-hover-color);
  --site-btn-active-border-color: transparent;
  --site-btn-disabled-color: #6c757d;
  --site-btn-disabled-border-color: transparent;
  --site-btn-box-shadow: 0 0 0 #000;
  --site-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--site-btn-color);
}
.btn-link:hover {
  color: var(--site-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --site-btn-padding-y: 0.5rem;
  --site-btn-padding-x: 1rem;
  --site-btn-font-size: 1.25rem;
  --site-btn-border-radius: var(--site-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --site-btn-padding-y: 0.25rem;
  --site-btn-padding-x: 0.5rem;
  --site-btn-font-size: 0.875rem;
  --site-btn-border-radius: var(--site-border-radius-sm);
}

.collapse:not(.show) {
  display: none;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-group {
  border-radius: var(--site-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--site-border-width));
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--site-border-width));
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:nth-child(n+3),
.btn-group-vertical > :not(.btn-check) + .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --site-nav-link-padding-x: 1rem;
  --site-nav-link-padding-y: 0.5rem;
  --site-nav-link-font-weight: ;
  --site-nav-link-color: var(--site-link-color);
  --site-nav-link-hover-color: var(--site-link-hover-color);
  --site-nav-link-disabled-color: var(--site-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--site-nav-link-padding-y) var(--site-nav-link-padding-x);
  font-size: var(--site-nav-link-font-size);
  font-weight: var(--site-nav-link-font-weight);
  color: var(--site-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--site-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .nav-link:disabled {
  color: var(--site-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --site-nav-tabs-border-width: var(--site-border-width);
  --site-nav-tabs-border-color: var(--site-border-color);
  --site-nav-tabs-border-radius: var(--site-border-radius);
  --site-nav-tabs-link-hover-border-color: var(--site-secondary-bg) var(--site-secondary-bg) var(--site-border-color);
  --site-nav-tabs-link-active-color: var(--site-emphasis-color);
  --site-nav-tabs-link-active-bg: var(--site-body-bg);
  --site-nav-tabs-link-active-border-color: var(--site-border-color) var(--site-border-color) var(--site-body-bg);
  border-bottom: var(--site-nav-tabs-border-width) solid var(--site-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--site-nav-tabs-border-width));
  border: var(--site-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--site-nav-tabs-border-radius);
  border-top-right-radius: var(--site-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--site-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--site-nav-tabs-link-active-color);
  background-color: var(--site-nav-tabs-link-active-bg);
  border-color: var(--site-nav-tabs-link-active-border-color);
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --site-navbar-padding-x: 0;
  --site-navbar-padding-y: 0.5rem;
  --site-navbar-color: rgba(var(--site-emphasis-color-rgb), 0.65);
  --site-navbar-hover-color: rgba(var(--site-emphasis-color-rgb), 0.8);
  --site-navbar-disabled-color: rgba(var(--site-emphasis-color-rgb), 0.3);
  --site-navbar-active-color: rgba(var(--site-emphasis-color-rgb), 1);
  --site-navbar-brand-padding-y: 0.3125rem;
  --site-navbar-brand-margin-end: 1rem;
  --site-navbar-brand-font-size: 1.25rem;
  --site-navbar-brand-color: rgba(var(--site-emphasis-color-rgb), 1);
  --site-navbar-brand-hover-color: rgba(var(--site-emphasis-color-rgb), 1);
  --site-navbar-nav-link-padding-x: 0.5rem;
  --site-navbar-toggler-padding-y: 0.25rem;
  --site-navbar-toggler-padding-x: 0.75rem;
  --site-navbar-toggler-font-size: 1.25rem;
--site-navbar-toggler-border-color: rgba(var(--site-emphasis-color-rgb), 0.15);
  --site-navbar-toggler-border-radius: var(--site-border-radius);
  --site-navbar-toggler-focus-width: 0.25rem;
  --site-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--site-navbar-padding-y) var(--site-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--site-navbar-brand-padding-y);
  padding-bottom: var(--site-navbar-brand-padding-y);
  margin-right: var(--site-navbar-brand-margin-end);
  font-size: var(--site-navbar-brand-font-size);
  color: var(--site-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--site-navbar-brand-hover-color);
}

.navbar-nav {
  --site-nav-link-padding-x: 0;
  --site-nav-link-padding-y: 0.5rem;
  --site-nav-link-font-weight: ;
  --site-nav-link-color: var(--site-navbar-color);
  --site-nav-link-hover-color: var(--site-navbar-hover-color);
  --site-nav-link-disabled-color: var(--site-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--site-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--site-navbar-toggler-padding-y) var(--site-navbar-toggler-padding-x);
  font-size: var(--site-navbar-toggler-font-size);
  line-height: 1;
  color: var(--site-navbar-color);
  background-color: transparent;
  border: var(--site-border-width) solid var(--site-navbar-toggler-border-color);
  border-radius: var(--site-navbar-toggler-border-radius);
  transition: var(--site-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--site-navbar-toggler-focus-width);
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--site-navbar-nav-link-padding-x);
    padding-left: var(--site-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.card {
  --site-card-spacer-y: 1rem;
  --site-card-spacer-x: 1rem;
  --site-card-title-spacer-y: 0.5rem;
  --site-card-title-color: ;
  --site-card-subtitle-color: ;
  --site-card-border-width: var(--site-border-width);
  --site-card-border-color: var(--site-border-color-translucent);
  --site-card-border-radius: var(--site-border-radius);
  --site-card-box-shadow: ;
  --site-card-inner-border-radius: calc(var(--site-border-radius) - (var(--site-border-width)));
  --site-card-cap-padding-y: 0.5rem;
  --site-card-cap-padding-x: 1rem;
  --site-card-cap-bg: rgba(var(--site-body-color-rgb), 0.03);
  --site-card-cap-color: ;
  --site-card-height: ;
  --site-card-color: ;
  --site-card-bg: var(--site-body-bg);
  --site-card-img-overlay-padding: 1rem;
  --site-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--site-card-height);
  color: var(--site-body-color);
  word-wrap: break-word;
  background-color: var(--site-card-bg);
  background-clip: border-box;
  border: var(--site-card-border-width) solid var(--site-card-border-color);
  border-radius: var(--site-card-border-radius);
}

.card-title {
  margin-bottom: var(--site-card-title-spacer-y);
  color: var(--site-card-title-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-header {
  padding: var(--site-card-cap-padding-y) var(--site-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--site-card-cap-color);
  background-color: var(--site-card-cap-bg);
  border-bottom: var(--site-card-border-width) solid var(--site-card-border-color);
}
.card-header:first-child {
  border-radius: var(--site-card-inner-border-radius) var(--site-card-inner-border-radius) 0 0;
}

.accordion {
  --site-accordion-color: var(--site-body-color);
  --site-accordion-bg: var(--site-body-bg);
  --site-accordion-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, border-radius 0.15s ease;
  --site-accordion-border-color: var(--site-border-color);
  --site-accordion-border-width: var(--site-border-width);
  --site-accordion-border-radius: var(--site-border-radius);
  --site-accordion-inner-border-radius: calc(var(--site-border-radius) - (var(--site-border-width)));
  --site-accordion-btn-padding-x: 1.25rem;
  --site-accordion-btn-padding-y: 1rem;
  --site-accordion-btn-color: var(--site-body-color);
  --site-accordion-btn-bg: var(--site-accordion-bg);
  --site-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --site-accordion-btn-icon-width: 1.25rem;
  --site-accordion-btn-icon-transform: rotate(-180deg);
  --site-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --site-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --site-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --site-accordion-body-padding-x: 1.25rem;
  --site-accordion-body-padding-y: 1rem;
  --site-accordion-active-color: var(--site-primary-text-emphasis);
  --site-accordion-active-bg: var(--site-primary-bg-subtle);
}

.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%;
  }
}

.mainfield {
  vertical-align: middle !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-success {
  --site-text-opacity: 1;
  color: rgba(var(--site-success-rgb), var(--site-text-opacity)) !important;
}

.text-white {
  --site-text-opacity: 1;
  color: rgba(var(--site-white-rgb), var(--site-text-opacity)) !important;
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
}

.menu-bar {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .menu-bar .innerwrap {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .menu-bar .innerwrap img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
    .menu-bar .innerwrap.measure-iconfont {
      font-size: 3.125rem;
      line-height: 3.125rem; }
  .menu-bar .packlayer {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .menu-bar .packlayer, .menu-bar .packlayer:hover {
      color: inherit;
      text-decoration: none; }
  .menu-bar .measure-iconfont + .packlayer {
    vertical-align: -1px; }
  .menu-bar .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/symbols2.woff2') format('woff2'), url('fonts/symbols2.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;
}

.container {
  max-width: 1600px;
}

section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}

a.measure-iconfont:hover {
  text-decoration: none;
}

a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}

a,
a:hover {
  text-decoration: none;
}.block-title,
.chapter-title,
.header-text,
.lead-h2,
.main-heading,
.page-h,
.section-h,
.section-heading,
.topic-title {
  font-style: normal;
  line-height: 1.3;
}.block-subtitle,
.h-secondary,
.lead-sub,
.section-sub,
.section-tag,
.sub-heading,
.subtitle-text,
.tagline-h {
  line-height: 1.3;
}

.alignbox {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-4,
.display-5,
.dockunit,
span,
p,
a {
  line-height: 1;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}

b,
strong {
  font-weight: bold;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition-delay: 9999s;
  transition-property: background-color, color;
}

section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.rowsegmentbox {
  color: #ffffff;
}

.holder {
  text-align: left;
}

.plate {
  text-align: center;
}

.holdwrap {
  font-weight: 300;
}

img,
iframe {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-box {
  width: 100%;
}.lead-btn {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  font-size: 0;
}

.btn {
  font-weight: 400;
  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;
  letter-spacing: 1px;
}

.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 .lead-btn {
  margin-left: 0rem;
  margin-right: 0rem;
}

.btn .measure-iconfont,
.btn.btn-sm .measure-iconfont {
  order: 1;
  cursor: pointer;
  margin-left: 0.5rem;
  vertical-align: sub;
}

.btn.btn-md .measure-iconfont,
.btn.btn-md .measure-iconfont {
  margin-left: 0.8rem;
}

@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 .innerwrap 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;
  }

  .menu .collapsed .navbar-collapse {
    max-height: 93.5vh;
  }

  .menu .collapsed .navbar-collapse.show {
    overflow: auto;
  }
}

@media (max-width: 767px) {
  .menu .navbar-collapse {
    max-height: 80vh;
  }
}

.nav-link .measure-iconfont {
  margin-right: 0.5rem;
}

.navbar {
  display: flex;
  }

.navbar-collapse {
  }

.nav-dropdown .link {
  padding: 0.667em 1.667em !important;
  margin: 0 !important;
}

.nav {
  display: flex;
  }

.row {
  display: flex;
  }

.justify-content-center {
  }

.card-wrapper {
  }

.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;
}

.menu .navbar.collapsed:not(.beta-menu) {
  flex-direction: column;
}

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 .lead-btn {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .btn {
  min-height: 48px;
}

.splitbox {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

ul {
  margin-bottom: 2.3125rem;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.container,
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}

.row>[class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.item {
  position: relative;
}
@font-face {
  font-family: 'input2';
  font-display: swap;
  src: url('fonts/desktop2.woff2') format('woff2'), url('fonts/desktop2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="select-"], [class*=" select-"] {
  
  font-family: 'input2' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.select-distribution-contact-form:before {
  content: "\e91d";
}
.select-distribution-cursor-click:before {
  content: "\e91f";
}
.select-distribution-letter:before {
  content: "\e945";
}
.select-distribution-map-pin:before {
  content: "\e94c";
}
.select-distribution-paper-plane:before {
  content: "\e959";
}
.select-distribution-phone:before {
  content: "\e95b";
}
.select-distribution-pin:before {
  content: "\e95e";
}
.select-distribution-responsive:before {
  content: "\e96a";
}

img,
.card-wrap,
.card-wrapper,
.dockbox iframe,
.card,
.row,
.item-img,
.corewrap,
.item-wrapper {
  border-radius: 0 !important;
}
body {
  font-family: Nunito Sans;
}
.display-1 {
  font-family: 'Amiri', serif;
  font-size: 3.8rem;
  line-height: 1;
}
.display-1 > .measure-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Amiri', serif;
  font-size: 2.8rem;
  line-height: 1;
}
.display-2 > .measure-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Amiri', serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .measure-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Amiri', serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .measure-iconfont {
  font-size: 2.25rem;
}
.dockunit {
  font-family: 'Amiri', serif;
  font-size: 1rem;
  line-height: 1.3;
}
.dockunit > .measure-iconfont {
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .dockunit {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn {
    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: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  color: #000000 !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #000000 !important;
  background-color: #c7eded !important;
  border-color: #c7eded !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1f6463 !important;
  border-color: #1f6463 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2b8b8a !important;
  border-color: #2b8b8a !important;
}
.btn-info,
.btn-info:active {
  background-color: #1f6463 !important;
  border-color: #1f6463 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  box-shadow: none;
}

.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2b8b8a !important;
  border-color: #2b8b8a !important;
}
.btn-success,
.btn-success:active {
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  color: #000000 !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #000000 !important;
  background-color: #c7eded !important;
  border-color: #c7eded !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  box-shadow: none;
}

.btn-white:disabled {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !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: transparent;
  color: #a0e1e1;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #1f6363 !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1f6463;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1f6463 !important;
  border-color: #1f6463 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1f6463;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1f6463 !important;
  border-color: #1f6463 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a0e1e1;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #1f6363 !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  border-color: transparent !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: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.active {
  color: #ffffff !important;
  background-color: #a0e1e1 !important;
  border-color: #a0e1e1 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-success {
  color: #a0e1e1 !important;
}
.text-white {
  color: #fafafa !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #52c9c9 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #a0e1e1;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}.lead-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a0e1e1;
}

html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.root .menu-bar {
  background-color: #1f6463 !important;
  padding: 0;
}
@media (max-width: 991px) {
  
  .root .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.root .menu-bar {
  position: relative !important;
}
.root nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.root .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .root .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.root .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.root .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .root ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .root li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
}
.root .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .root .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .root .nav-item {
    margin: 0 !important;
  }
}
.root .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.root .nav-link {
  position: relative;
  color: #ffffff;
}
.root .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.root .container {
  display: flex;
  margin: auto;
}
.root .clusterbox {
  color: #a0e1e1;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.root .clusterbox:last-child {
  margin-right: 0;
}
.root .clusterbox:hover {
  color: #a0e1e1;
}
.root .packlayer {
  color: #ffffff;
}
.root .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .root .navbar-nav {
    margin: 0;
  }
}
.root .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.root .nav-item:focus,
.root .nav-link:focus {
  outline: none;
}
.root .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #a0e1e1;
}
.root .navbar .innerwrap img {
  object-fit: cover;
}
.root .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.root .navbar.collapsed {
  justify-content: center;
}
.root .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.root .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .root .navbar .nav-item {
    padding: .5rem 0;
  }
  .root .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .root .navbar .nav-item .nav-link::before {
    display: none;
  }
  .root .navbar .innerwrap img {
    height: 3rem !important;
  }
  .root .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .root .navbar ul.navbar-nav li {
    margin: 0;
  }
  .root .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .root .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.root .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.root .navbar-brand .packlayer {
  line-height: inherit !important;
}
.root .navbar-brand .innerwrap a {
  outline: none;
}
.root .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.root ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.root button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #1f6463;
  background: #1f6463;
}

.root a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .root .navbar {
    height: 70px;
  }
  .root .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.root .lead-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}.root .lead-btn .btn:first-child {
  margin-left: 9.6px;
}.root .lead-btn .btn:focus {
  box-shadow: none;
}.root .lead-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6ba262;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}.root .lead-btn .btn:hover {
  transform: scale(1) !important;
  color: #a0e1e1 !important;
}.root .lead-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.root .menu-bar .innerwrap {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .root .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.root .packlayer:hover {
  color: #a0e1e1;
}
.root .nav-link:hover {
  color: #a0e1e1;
}
.root .nav-link:hover::before {
  background-color: #a0e1e1;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  color: #ffffff;
}
.root .alignbox {
  color: #ffffff;
  text-align: left;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  text-align: left;
  color: #ffffff;
}
.root a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.chunk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("images/wideobject1.jpg");
}
.chunk .card-wrapper {
  padding-left: 32px;
}
@media (max-width: 991px) {
  .chunk .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
}
.chunk .corewrap img {
  border-radius: 50px;
  width: 100%;
  object-fit: cover;
  border: 3px solid;
  border-color: #a0e1e1;
}
@media (min-width: 992px) {
  .chunk .corewrap img {
    min-height: 840px;
  }
}.chunk .lead-btn {
  position: relative;
}
@media (max-width: 991px) {.chunk .lead-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
@media (min-width: 991px) {.chunk .lead-btn {
    margin-right: 1.5rem;
  }
}
.chunk .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.chunk .btn:hover,
.chunk .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .chunk .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.chunk .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.chunk .btn:hover:before,
.chunk .btn:focus:before {
  left: -1px;
  top: -2px;
}
.chunk .btn-secondary {
  color: #1c1917 !important;
}
.chunk .btn-secondary:hover {
  color: #1c1917 !important;
}.chunk .card-title,
.chunk .lead-btn {
  color: #1f6463;
  text-align: center;
}
.chunk .alignbox {
  color: #000000;
  text-align: center;
}
.rowgrid {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.rowgrid .wrapunitbox {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .rowgrid .wrapunitbox {
    margin-bottom: 32px;
  }
}
.rowgrid .wrapunitbox .flexlayer {
  margin-bottom: 16px;
}
.rowgrid .wrapunitbox .flexlayer .noteunit {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #ffffff;
}.rowgrid .wrapunitbox .domlayer .block-title,
.rowgrid .wrapunitbox .domlayer .chapter-title,
.rowgrid .wrapunitbox .domlayer .header-text,
.rowgrid .wrapunitbox .domlayer .lead-h2,
.rowgrid .wrapunitbox .domlayer .main-heading,
.rowgrid .wrapunitbox .domlayer .page-h,
.rowgrid .wrapunitbox .domlayer .section-h,
.rowgrid .wrapunitbox .domlayer .section-heading,
.rowgrid .wrapunitbox .domlayer .topic-title {
  display: inline-block;
  width: 35%;
  margin-bottom: 16px;
}
@media (max-width: 1440px) {.rowgrid .wrapunitbox .domlayer .block-title,
.rowgrid .wrapunitbox .domlayer .chapter-title,
.rowgrid .wrapunitbox .domlayer .header-text,
.rowgrid .wrapunitbox .domlayer .lead-h2,
.rowgrid .wrapunitbox .domlayer .main-heading,
.rowgrid .wrapunitbox .domlayer .page-h,
.rowgrid .wrapunitbox .domlayer .section-h,
.rowgrid .wrapunitbox .domlayer .section-heading,
.rowgrid .wrapunitbox .domlayer .topic-title {
    width: 40%;
  }
}
@media (max-width: 1200px) {.rowgrid .wrapunitbox .domlayer .block-title,
.rowgrid .wrapunitbox .domlayer .chapter-title,
.rowgrid .wrapunitbox .domlayer .header-text,
.rowgrid .wrapunitbox .domlayer .lead-h2,
.rowgrid .wrapunitbox .domlayer .main-heading,
.rowgrid .wrapunitbox .domlayer .page-h,
.rowgrid .wrapunitbox .domlayer .section-h,
.rowgrid .wrapunitbox .domlayer .section-heading,
.rowgrid .wrapunitbox .domlayer .topic-title {
    width: 50%;
  }
}
@media (max-width: 992px) {.rowgrid .wrapunitbox .domlayer .block-title,
.rowgrid .wrapunitbox .domlayer .chapter-title,
.rowgrid .wrapunitbox .domlayer .header-text,
.rowgrid .wrapunitbox .domlayer .lead-h2,
.rowgrid .wrapunitbox .domlayer .main-heading,
.rowgrid .wrapunitbox .domlayer .page-h,
.rowgrid .wrapunitbox .domlayer .section-h,
.rowgrid .wrapunitbox .domlayer .section-heading,
.rowgrid .wrapunitbox .domlayer .topic-title {
    width: 100%;
  }
}
.rowgrid .wrapunitbox .text-wrapper .alignbox {
  display: inline-block;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .rowgrid .wrapunitbox .text-wrapper .alignbox {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .rowgrid .wrapunitbox .text-wrapper .alignbox {
    width: 100%;
  }
}
.rowgrid .gridrowunit {
  margin: 0 -10px;
}
.rowgrid .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .rowgrid .item:last-child {
    margin-bottom: 0;
  }
}
.rowgrid .item .item-wrapper {
  height: 100%;
  background-color: #e5f1f2;
  padding: 8px;
}
.rowgrid .item .item-wrapper .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .rowgrid .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_1,
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_2 {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_1,
  .rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_2 {
    margin-bottom: 16px;
  }
}
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_1 .item-label_1,
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_2 .item-label_1,
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_1 .item-label_2,
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_2 .item-label_2 {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
}
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_1 .item-label_1,
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_2 .item-label_1 {
  background-color: #ffffff;
}
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_1 .item-label_2,
.rowgrid .item .item-wrapper .card-box .structurebox .label-wrap_2 .item-label_2 {
  background-color: #ffffff;
}
.rowgrid .item .item-wrapper .card-box .structurebox .item-title {
  margin-bottom: 12px;
}
.rowgrid .item .item-wrapper .card-box .structurebox .text-wrap .item-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rowgrid .item .item-wrapper .card-box .structurebox .text-wrap .item-text {
    width: 100%;
  }
}
.rowgrid .item .item-wrapper .card-box .item-content .item-price {
  margin-top: 56px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .rowgrid .item .item-wrapper .card-box .item-content .item-price {
    margin-top: 24px;
  }
}
.rowgrid .item .item-wrapper .card-box .item-content .list {
  margin: 32px 0 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 992px) {
  .rowgrid .item .item-wrapper .card-box .item-content .list {
    margin-top: 24px;
  }
}
.rowgrid .item .item-wrapper .card-box .item-content .list .item-wrap {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
}
.rowgrid .item .item-wrapper .card-box .item-content .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #000000;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 100%;
}
.rowgrid .item .item-wrapper .card-box .item-content .list .item-wrap:last-child {
  margin-bottom: 0;
}.rowgrid .item .item-wrapper .card-box .item-content .lead-btn {
  margin-top: 46px;
  width: 100%;
}
@media (max-width: 992px) {.rowgrid .item .item-wrapper .card-box .item-content .lead-btn {
    margin-top: 14px;
  }
}.rowgrid .item .item-wrapper .card-box .item-content .lead-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.rowgrid .btn-wrapper {
  margin-top: -4%;
}
.rowgrid .noteunit,
.rowgrid .flexlayer {
  color: #ffffff;
}.rowgrid .block-title,
.rowgrid .chapter-title,
.rowgrid .header-text,
.rowgrid .lead-h2,
.rowgrid .main-heading,
.rowgrid .page-h,
.rowgrid .section-h,
.rowgrid .section-heading,
.rowgrid .topic-title {
  color: #ffffff;
}
.rowgrid .alignbox,
.rowgrid .text-wrapper {
  color: #000000;
}
.rowgrid .item-label_1,
.rowgrid .label-wrap_1 {
  color: #ffffff;
  text-align: right;
}
@media (max-width: 992px) {
  .rowgrid .item-label_1,
  .rowgrid .label-wrap_1 {
    text-align: left;
  }
}
.rowgrid .item-label_2,
.rowgrid .label-wrap_2 {
  color: #ffffff;
  text-align: right;
}
@media (max-width: 992px) {
  .rowgrid .item-label_2,
  .rowgrid .label-wrap_2 {
    text-align: left;
  }
}
.rowgrid .item-title {
  color: #ffffff;
}
.rowgrid .item-text {
  color: #ffffff;
}
.rowgrid .item-price {
  color: #1f6463;
}
.rowgrid .list {
  color: #ffffff;
}.rowgrid .block-title,
.rowgrid .chapter-title,
.rowgrid .header-text,
.rowgrid .lead-h2,
.rowgrid .main-heading,
.rowgrid .page-h,
.rowgrid .section-h,
.rowgrid .section-heading,
.rowgrid .topic-title,
.rowgrid .domlayer {
  color: #1f6463;
}.rowgrid .item-title,
.rowgrid .lead-btn,
.rowgrid .clusterbox {
  color: #1f6463;
}
.rowgrid .item-text,
.rowgrid .text-wrap {
  color: #000000;
}
.rowgrid .list,
.rowgrid .item-wrap {
  color: #000000;
}
.target {
  padding-top: 5rem;
  background-color: #f3f6f6;
}
.target .zonecore {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
}
.target .zonecore .domlayer {
  margin-bottom: 40px;
}
.target .zonecore .domlayer .flexlayer {
  margin-bottom: 16px;
}.target .zonecore .domlayer .block-title,
.target .zonecore .domlayer .chapter-title,
.target .zonecore .domlayer .header-text,
.target .zonecore .domlayer .lead-h2,
.target .zonecore .domlayer .main-heading,
.target .zonecore .domlayer .page-h,
.target .zonecore .domlayer .section-h,
.target .zonecore .domlayer .section-heading,
.target .zonecore .domlayer .topic-title {
  margin-bottom: 16px;
}
.target .zonecore .domlayer .text-wrapper .alignbox {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .target .zonecore .domlayer .text-wrapper .alignbox {
    width: 100%;
  }
}
.target .gridrowunit {
  margin: 0 -10px;
}
.target .gridrowunit .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .target .gridrowunit .item:last-child {
    margin-bottom: 0;
  }
}
.target .gridrowunit .item:hover .item-wrapper,
.target .gridrowunit .item:focus .item-wrapper {
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #e5f1f2, 1px 10px 20px -5px #a0e1e1;
  transform: translateY(-3px);
}
.target .gridrowunit .item:hover .item-wrapper .item-img::before,
.target .gridrowunit .item:focus .item-wrapper .item-img::before {
  opacity: .4;
}
.target .gridrowunit .item:hover .item-wrapper .item-img::after,
.target .gridrowunit .item:focus .item-wrapper .item-img::after {
  opacity: .1;
}
.target .gridrowunit .item:hover .item-wrapper .item-title,
.target .gridrowunit .item:focus .item-wrapper .item-title {
  color: #a0e1e1;
}
.target .gridrowunit .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px;
  background-color: #ffffff;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #e5f1f2, 0 10px 10px -5px #e5f1f2;
  overflow: hidden;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .target .gridrowunit .item .item-wrapper {
    padding: 20px;
  }
}
.target .gridrowunit .item .item-wrapper .item-img {
  margin-bottom: 20px;
  position: relative;
}
.target .gridrowunit .item .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 5px 15px 0 #ffffff, inset 0 -10px 15px 0 #ffffff;
  transition: all .3s ease;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.target .gridrowunit .item .item-wrapper .item-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
  z-index: 1;
}
.target .gridrowunit .item .item-wrapper .item-img img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .target .gridrowunit .item .item-wrapper .item-img img {
    height: 320px;
  }
}
.target .gridrowunit .item .item-wrapper .item-date {
  margin-bottom: 8px;
}
.target .gridrowunit .item .item-wrapper .item-title {
  margin-bottom: 0;
  transition: all .3s ease;
}
.target .gridrowunit .item .item-wrapper .item-text {
  margin-bottom: 0;
  margin-top: 12px;
}.target .gridrowunit .item .item-wrapper .lead-btn {
  margin-top: 10px;
}.target .gridrowunit .item .item-wrapper .lead-btn .btn {
  margin-bottom: 0;
}
.target .noteunit,
.target .flexlayer {
  color: #1c1917;
  text-align: center;
}.target .block-title,
.target .chapter-title,
.target .header-text,
.target .lead-h2,
.target .main-heading,
.target .page-h,
.target .section-h,
.target .section-heading,
.target .topic-title {
  color: #1c1917;
  text-align: center;
}
.target .alignbox,
.target .text-wrapper {
  color: #000000;
  text-align: center;
}
.target .item-date {
  color: #1f6463;
}
.target .item-title {
  color: #1c1917;
}
.target .item-text {
  color: #1c1917;
}.target .item-title,
.target .lead-btn {
  color: #000000;
}.target .block-title,
.target .chapter-title,
.target .header-text,
.target .lead-h2,
.target .main-heading,
.target .page-h,
.target .section-h,
.target .section-heading,
.target .topic-title,
.target .lead-btn {
  color: #1f6463;
}
.bridge {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.bridge .domlayer {
  padding: 96px 10px;
  background-color: #f3f6f6;
}
@media (max-width: 992px) {
  .bridge .domlayer {
    padding: 60px 10px;
  }
}
@media (max-width: 768px) {
  .bridge .domlayer {
    padding: 40px 10px;
  }
}.bridge .domlayer .block-title,
.bridge .domlayer .chapter-title,
.bridge .domlayer .header-text,
.bridge .domlayer .lead-h2,
.bridge .domlayer .main-heading,
.bridge .domlayer .page-h,
.bridge .domlayer .section-h,
.bridge .domlayer .section-heading,
.bridge .domlayer .topic-title {
  margin-bottom: 0;
}
.bridge .unitgrid {
  padding: 40px 10px 10px 10px;
}
.bridge .unitgrid .card {
  border-bottom: 1px solid #a0e1e1;
  border-radius: 0;
}
.bridge .unitgrid .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.bridge .unitgrid .card .card-header .nodetrack {
  display: flex;
}
.bridge .unitgrid .card .card-header .nodetrack:not(.collapsed) .icon-wrapper .measure-iconfont,
.bridge .unitgrid .card .card-header .nodetrack:hover .icon-wrapper .measure-iconfont {
  transform: rotate(45deg);
}
.bridge .unitgrid .card .card-header .nodetrack .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a0e1e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bridge .unitgrid .card .card-header .nodetrack .icon-wrapper .measure-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.bridge .unitgrid .card .blocklayer .sectionrow {
  padding: 0 0 30px 66px;
}
.bridge .unitgrid .card .blocklayer .sectionrow .framebox {
  margin-bottom: 0;
}.bridge .block-title,
.bridge .chapter-title,
.bridge .header-text,
.bridge .lead-h2,
.bridge .main-heading,
.bridge .page-h,
.bridge .section-h,
.bridge .section-heading,
.bridge .topic-title {
  color: #1c1917;
  text-align: center;
}
.bridge .framebox {
  color: #1c1917;
}
.boxbridge {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f6f6;
}
.boxbridge .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .boxbridge .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .boxbridge .container {
    padding: 0 26px;
  }
}
.boxbridge .corewrap {
  border: 1px solid #a0e1e1;
  padding: 20px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .boxbridge .corewrap {
    margin: 0 0 50px 0;
  }
}
.boxbridge .corewrap .module {
  margin-bottom: 18px;
}
.boxbridge .corewrap img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .boxbridge .corewrap img {
    height: 300px;
  }
}.boxbridge .domlayer .block-subtitle,
.boxbridge .domlayer .h-secondary,
.boxbridge .domlayer .lead-sub,
.boxbridge .domlayer .section-sub,
.boxbridge .domlayer .section-tag,
.boxbridge .domlayer .sub-heading,
.boxbridge .domlayer .subtitle-text,
.boxbridge .domlayer .tagline-h {
  margin-bottom: 18px;
}.boxbridge .domlayer .block-title,
.boxbridge .domlayer .chapter-title,
.boxbridge .domlayer .header-text,
.boxbridge .domlayer .lead-h2,
.boxbridge .domlayer .main-heading,
.boxbridge .domlayer .page-h,
.boxbridge .domlayer .section-h,
.boxbridge .domlayer .section-heading,
.boxbridge .domlayer .topic-title {
  margin-bottom: 18px;
}
.boxbridge .domlayer .alignbox {
  margin-bottom: 0;
}.boxbridge .domlayer .lead-btn {
  margin-top: 40px;
}.boxbridge .block-title,
.boxbridge .chapter-title,
.boxbridge .header-text,
.boxbridge .lead-h2,
.boxbridge .main-heading,
.boxbridge .page-h,
.boxbridge .section-h,
.boxbridge .section-heading,
.boxbridge .topic-title {
  color: #1c1917;
}.boxbridge .block-subtitle,
.boxbridge .h-secondary,
.boxbridge .lead-sub,
.boxbridge .section-sub,
.boxbridge .section-tag,
.boxbridge .sub-heading,
.boxbridge .subtitle-text,
.boxbridge .tagline-h {
  color: #1c1917;
}
.boxbridge .alignbox {
  color: #000000;
}.boxbridge .block-title,
.boxbridge .chapter-title,
.boxbridge .header-text,
.boxbridge .lead-h2,
.boxbridge .main-heading,
.boxbridge .page-h,
.boxbridge .section-h,
.boxbridge .section-heading,
.boxbridge .topic-title,
.boxbridge .lead-btn {
  color: #1f6463;
}
.layoutnode {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.layoutnode .row {
  justify-content: space-between;
}.layoutnode .alignbox,
.layoutnode .lead-btn {
  color: #1c1917;
}
.layoutnode h2 {
  width: fit-content;
  float: left;
  border: 2px solid currentColor;
  padding: 1rem 4rem;
  padding-bottom: 0.5rem;
  margin: 0;
  border-radius: 1rem;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  margin-bottom: 0;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .layoutnode h2 {
    padding: 1rem 1rem;
    margin-right: 1rem;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}.layoutnode .block-subtitle,
.layoutnode .h-secondary,
.layoutnode .lead-sub,
.layoutnode .section-sub,
.layoutnode .section-tag,
.layoutnode .sub-heading,
.layoutnode .subtitle-text,
.layoutnode .tagline-h {
  color: #1f6463;
}.layoutnode .block-title,
.layoutnode .chapter-title,
.layoutnode .header-text,
.layoutnode .lead-h2,
.layoutnode .main-heading,
.layoutnode .page-h,
.layoutnode .section-h,
.layoutnode .section-heading,
.layoutnode .topic-title {
  color: #1f6463;
}
.slotunit {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f3f6f6;
}
.slotunit .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .slotunit .item-wrapper {
    margin-bottom: 1rem;
  }
}
.slotunit .item-wrapper:hover .clusterbox:after {
  width: 70px;
  height: 70px;
}
.slotunit a {
  font-weight: 600;
}
.slotunit a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .slotunit .col-lg-3,
  .slotunit .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .slotunit .col-lg-12 {
    min-width: 100% !important;
  }
}
.slotunit .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slotunit h5 {
  margin: 0;
}
.slotunit .clusterbox {
  position: relative;
}
.slotunit .measure-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.slotunit .colpad {
  display: flex;
}
.slotunit .card-title,
.slotunit .clusterbox {
  color: #1f6463;
}
.slotunit .card-text {
  color: #000000;
}.slotunit .block-title,
.slotunit .chapter-title,
.slotunit .header-text,
.slotunit .lead-h2,
.slotunit .main-heading,
.slotunit .page-h,
.slotunit .section-h,
.slotunit .section-heading,
.slotunit .topic-title {
  color: #1f6463;
}
.slotunit .main-title,
.slotunit .clusterbox {
  text-align: left;
}
.routebox {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f3f6f6;
}
.routebox .dockbox {
  height: 30rem;
  position: relative;
  filter: grayscale(1);
}
.routebox .dockbox iframe {
  height: 100%;
  width: 100%;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.neutralbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f6463;
}
.neutralbox .nodeband {
  padding: 0;
}
@media (max-width: 991px) {
  .neutralbox .nodeband {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .neutralbox .row {
    text-align: center;
  }
  .neutralbox .row > div {
    margin: auto;
  }
}
.neutralbox .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .neutralbox .list {
    margin-bottom: 0rem;
  }
}.neutralbox .alignbox,
.neutralbox .block-subtitle,
.neutralbox .h-secondary,
.neutralbox .lead-sub,
.neutralbox .section-sub,
.neutralbox .section-tag,
.neutralbox .sub-heading,
.neutralbox .subtitle-text,
.neutralbox .tagline-h {
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
}
.neutralbox .measure-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox div > *:last-child {
    margin-top: 0 !important;
  }
}
.neutralbox .self-center {
  align-self: center;
}
.neutralbox .buildbox {
  padding-top: 20px;
  line-height: 21px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .neutralbox .buildbox {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .neutralbox .buildbox {
    margin-bottom: 0;
  }
}
.neutralbox .text-style {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .neutralbox .text-style:not(:last-child) {
    margin-bottom: 16px !important;
  }
}
.neutralbox .position {
  text-align: end;
}
@media (max-width: 767px) {
  .neutralbox .position {
    text-align: center;
  }
}
.neutralbox .pt-16 {
  padding-top: 16px;
}
.neutralbox .pb-16 {
  padding-bottom: 16px;
}
.root .menu-bar {
  background-color: #1f6463 !important;
  padding: 0;
}
@media (max-width: 991px) {
  
  .root .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.root .menu-bar {
  position: relative !important;
}
.root nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.root .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .root .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.root .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.root .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .root ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .root li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
}
.root .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .root .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .root .nav-item {
    margin: 0 !important;
  }
}
.root .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.root .nav-link {
  position: relative;
  color: #ffffff;
}
.root .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.root .container {
  display: flex;
  margin: auto;
}
.root .clusterbox {
  color: #a0e1e1;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.root .clusterbox:last-child {
  margin-right: 0;
}
.root .clusterbox:hover {
  color: #a0e1e1;
}
.root .packlayer {
  color: #ffffff;
}
.root .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .root .navbar-nav {
    margin: 0;
  }
}
.root .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.root .nav-item:focus,
.root .nav-link:focus {
  outline: none;
}
.root .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #a0e1e1;
}
.root .navbar .innerwrap img {
  object-fit: cover;
}
.root .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.root .navbar.collapsed {
  justify-content: center;
}
.root .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.root .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .root .navbar .nav-item {
    padding: .5rem 0;
  }
  .root .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .root .navbar .nav-item .nav-link::before {
    display: none;
  }
  .root .navbar .innerwrap img {
    height: 3rem !important;
  }
  .root .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .root .navbar ul.navbar-nav li {
    margin: 0;
  }
  .root .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .root .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.root .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.root .navbar-brand .packlayer {
  line-height: inherit !important;
}
.root .navbar-brand .innerwrap a {
  outline: none;
}
.root .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.root ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.root button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #1f6463;
  background: #1f6463;
}

.root a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .root .navbar {
    height: 70px;
  }
  .root .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.root .lead-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}.root .lead-btn .btn:first-child {
  margin-left: 9.6px;
}.root .lead-btn .btn:focus {
  box-shadow: none;
}.root .lead-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6ba262;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}.root .lead-btn .btn:hover {
  transform: scale(1) !important;
  color: #a0e1e1 !important;
}.root .lead-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.root .menu-bar .innerwrap {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .root .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.root .packlayer:hover {
  color: #a0e1e1;
}
.root .nav-link:hover {
  color: #a0e1e1;
}
.root .nav-link:hover::before {
  background-color: #a0e1e1;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  color: #ffffff;
}
.root .alignbox {
  color: #ffffff;
  text-align: left;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  text-align: left;
  color: #ffffff;
}
.root a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.domcell {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.domcell .gridrowunit {
  margin: 0 -20px;
}
.domcell .gridrowunit .card {
  padding: 0 20px;
  justify-content: center;
}
.domcell .zonecore {
  position: relative;
  padding: 100px 40px;
  min-height: 500px;
}
@media (max-width: 992px) {
  .domcell .zonecore {
    padding: 40px 24px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .domcell .zonecore {
    padding: 40px 12px;
  }
}
.domcell .zonecore .corewrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.domcell .zonecore .colunit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.9;
  pointer-events: none;
}
.domcell .zonecore .wrapunitbox {
  position: relative;
  z-index: 1;
}.domcell .zonecore .wrapunitbox .block-title,
.domcell .zonecore .wrapunitbox .chapter-title,
.domcell .zonecore .wrapunitbox .header-text,
.domcell .zonecore .wrapunitbox .lead-h2,
.domcell .zonecore .wrapunitbox .main-heading,
.domcell .zonecore .wrapunitbox .page-h,
.domcell .zonecore .wrapunitbox .section-h,
.domcell .zonecore .wrapunitbox .section-heading,
.domcell .zonecore .wrapunitbox .topic-title {
  margin-bottom: 24px;
}
.domcell .zonecore .wrapunitbox .text-wrapper .alignbox {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .domcell .zonecore .wrapunitbox .text-wrapper .alignbox {
    width: 100%;
  }
}.domcell .zonecore .wrapunitbox .lead-btn {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.domcell .unit img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .domcell .unit img {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .domcell .unit img {
    height: 300px;
  }
}
.domcell .image_1 {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .domcell .image_1 {
    margin-bottom: 24px;
  }
}
.domcell .image_2 {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.domcell .image_2 img {
  margin-bottom: -40px;
}
@media (max-width: 992px) {
  .domcell .image_2 img {
    margin-top: 24px;
  }
}.domcell .block-title,
.domcell .chapter-title,
.domcell .header-text,
.domcell .lead-h2,
.domcell .main-heading,
.domcell .page-h,
.domcell .section-h,
.domcell .section-heading,
.domcell .topic-title {
  color: #1c1917;
}
.domcell .alignbox,
.domcell .text-wrapper {
  color: #000000;
  text-align: center;
}.domcell .block-title,
.domcell .chapter-title,
.domcell .header-text,
.domcell .lead-h2,
.domcell .main-heading,
.domcell .page-h,
.domcell .section-h,
.domcell .section-heading,
.domcell .topic-title,
.domcell .lead-btn {
  text-align: center;
  color: #1f6463;
}
.shiftbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f6f6;
  overflow: hidden;
}
@media (max-width: 992px) {
  .shiftbox .container {
    padding: 0 30px;
  }
}
.shiftbox .card {
  justify-content: center;
}
.shiftbox .zonecore {
  padding: 0 240px;
}
@media (max-width: 1440px) {
  .shiftbox .zonecore {
    padding: 0 120px;
  }
}
@media (max-width: 992px) {
  .shiftbox .zonecore {
    padding: 0;
  }
}
.shiftbox .zonecore .icon-wrapper {
  margin-bottom: 24px;
}
.shiftbox .zonecore .icon-wrapper .measure-iconfont {
  display: inline-flex;
  font-size: 54px;
  color: #a0e1e1;
}
.shiftbox .zonecore .alignbox {
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #254b45;
  margin-bottom: 50px;
}
.shiftbox .zonecore .alignbox::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #254b45;
}
@media (max-width: 992px) {
  .shiftbox .zonecore .alignbox {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.shiftbox .zonecore .viewsegment .coretrack {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .shiftbox .zonecore .viewsegment .coretrack {
    display: block;
  }
}
.shiftbox .zonecore .viewsegment .coretrack img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .shiftbox .zonecore .viewsegment .coretrack img {
    margin: 0 0 20px 0;
  }
}
.shiftbox .zonecore .viewsegment .coretrack .name-wrapper .nodeunit {
  margin-bottom: 0;
  font-weight: 300;
}
.shiftbox .alignbox {
  color: #1c1917;
}
.shiftbox .nodeunit {
  color: #1c1917;
}
.shiftbox .nodeunit,
.shiftbox .viewsegment {
  color: #1f6463;
}
.shiftbox .alignbox,
.shiftbox .icon-wrapper {
  color: #000000;
}
.cluster {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cluster .container {
    padding: 0 24px;
  }
}
@media (min-width: 992px) {
  .cluster .row {
    margin: 0;
  }
}
.cluster .row .card {
  border-top: 1px solid #a0e1e1;
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cluster .row .card {
    padding: 0 16px;
    border: none;
  }
}
.cluster .zonecore {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cluster .zonecore {
    padding: 24px;
  }
}.cluster .zonecore .block-title,
.cluster .zonecore .chapter-title,
.cluster .zonecore .header-text,
.cluster .zonecore .lead-h2,
.cluster .zonecore .main-heading,
.cluster .zonecore .page-h,
.cluster .zonecore .section-h,
.cluster .zonecore .section-heading,
.cluster .zonecore .topic-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {.cluster .zonecore .block-title,
.cluster .zonecore .chapter-title,
.cluster .zonecore .header-text,
.cluster .zonecore .lead-h2,
.cluster .zonecore .main-heading,
.cluster .zonecore .page-h,
.cluster .zonecore .section-h,
.cluster .zonecore .section-heading,
.cluster .zonecore .topic-title {
    text-align: left;
  }
}
.cluster .zonecore .alignbox {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cluster .zonecore .alignbox {
    margin-bottom: 24px;
    text-align: left;
  }
}
.cluster .zonecore .nav.nav-tabs {
  position: relative;
  display: block;
  border: none;
}
.cluster .zonecore .nav.nav-tabs .nav-item {
  position: relative;
  z-index: 1;
}
.cluster .zonecore .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  margin-bottom: 32px;
  border: 1px solid #a0e1e1;
  border-radius: .375rem !important;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cluster .zonecore .nav.nav-tabs .nav-item .nav-link {
    margin-bottom: 24px;
  }
}
.cluster .zonecore .nav.nav-tabs .nav-item .nav-link.active {
  border: 1px solid #a0e1e1;
  background-color: #a0e1e1;
}
@media (max-width: 992px) {.cluster .zonecore .lead-btn {
    text-align: left;
  }
}
.cluster .tab-content {
  height: 100%;
}
.cluster .tab-content .tab-pane {
  height: 100%;
}
.cluster .tab-content .tab-pane .items {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .cluster .tab-content .tab-pane .items {
    display: block;
  }
}
.cluster .tab-content .tab-pane .items .item {
  padding: 32px;
  border-left: 1px solid #a0e1e1;
  border-right: 1px solid #a0e1e1;
  border-top: 1px solid #a0e1e1;
}
.cluster .tab-content .tab-pane .items .item:first-child,
.cluster .tab-content .tab-pane .items .item:nth-child(2) {
  border-top: none;
}
.cluster .tab-content .tab-pane .items .item:nth-child(2n) {
  border-left: none;
  border-right: none;
}
.cluster .tab-content .tab-pane .items .item:nth-child(2n) .item-wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.cluster .tab-content .tab-pane .items .item:nth-child(2n) .item-wrapper .item-content {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cluster .tab-content .tab-pane .items .item:nth-child(2n) .item-wrapper .item-content {
    margin-bottom: 24px;
  }
}
.cluster .tab-content .tab-pane .items .item:nth-child(2n) .item-wrapper .item-img {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cluster .tab-content .tab-pane .items .item {
    padding: 24px;
    border-top: 1px solid #a0e1e1 !important;
    border-left: 1px solid #a0e1e1 !important;
    border-right: none !important;
  }
}
.cluster .tab-content .tab-pane .items .item .item-wrapper .item-img {
  display: block;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cluster .tab-content .tab-pane .items .item .item-wrapper .item-img {
    margin-bottom: 24px;
  }
}
.cluster .tab-content .tab-pane .items .item .item-wrapper .item-img:hover img,
.cluster .tab-content .tab-pane .items .item .item-wrapper .item-img:focus img {
  transform: scale(0.95);
}
.cluster .tab-content .tab-pane .items .item .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cluster .tab-content .tab-pane .items .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cluster .tab-content .tab-pane .items .item .item-wrapper .item-content a {
  display: block;
}
.cluster .tab-content .tab-pane .items .item .item-wrapper .item-content a:hover .card-title,
.cluster .tab-content .tab-pane .items .item .item-wrapper .item-content a:focus .card-title {
  color: #a0e1e1;
}
.cluster .tab-content .tab-pane .items .item .item-wrapper .item-content a .card-title {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.cluster .tab-content .tab-pane .items .item .item-wrapper .item-content .card-text {
  margin-bottom: 0;
}.cluster .block-title,
.cluster .chapter-title,
.cluster .header-text,
.cluster .lead-h2,
.cluster .main-heading,
.cluster .page-h,
.cluster .section-h,
.cluster .section-heading,
.cluster .topic-title {
  color: #1c1917;
}
.cluster .alignbox {
  color: #000000;
  text-align: right;
}
.cluster .card-title {
  color: #1f6463;
}
.cluster .card-text {
  color: #000000;
  text-align: left;
}.cluster .block-title,
.cluster .chapter-title,
.cluster .header-text,
.cluster .lead-h2,
.cluster .main-heading,
.cluster .page-h,
.cluster .section-h,
.cluster .section-heading,
.cluster .topic-title,
.cluster .lead-btn,
.cluster .nav-item {
  text-align: right;
  color: #1f6463;
}
.base {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f6f6;
}
.base .zonecore .flexlayer .noteunit {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #ffffff;
}.base .zonecore .domlayer .block-title,
.base .zonecore .domlayer .chapter-title,
.base .zonecore .domlayer .header-text,
.base .zonecore .domlayer .lead-h2,
.base .zonecore .domlayer .main-heading,
.base .zonecore .domlayer .page-h,
.base .zonecore .domlayer .section-h,
.base .zonecore .domlayer .section-heading,
.base .zonecore .domlayer .topic-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {.base .zonecore .domlayer .block-title,
.base .zonecore .domlayer .chapter-title,
.base .zonecore .domlayer .header-text,
.base .zonecore .domlayer .lead-h2,
.base .zonecore .domlayer .main-heading,
.base .zonecore .domlayer .page-h,
.base .zonecore .domlayer .section-h,
.base .zonecore .domlayer .section-heading,
.base .zonecore .domlayer .topic-title {
    width: 75%;
  }
}
@media (max-width: 992px) {.base .zonecore .domlayer .block-title,
.base .zonecore .domlayer .chapter-title,
.base .zonecore .domlayer .header-text,
.base .zonecore .domlayer .lead-h2,
.base .zonecore .domlayer .main-heading,
.base .zonecore .domlayer .page-h,
.base .zonecore .domlayer .section-h,
.base .zonecore .domlayer .section-heading,
.base .zonecore .domlayer .topic-title {
    width: 100%;
  }
}
.base .zonecore .text-wrapper .alignbox {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .base .zonecore .text-wrapper .alignbox {
    width: 65%;
  }
}
@media (max-width: 992px) {
  .base .zonecore .text-wrapper .alignbox {
    width: 100%;
  }
}.base .zonecore .lead-btn {
  margin-top: 20px;
}.base .zonecore .lead-btn .btn {
  margin-bottom: 0;
}
.base .noteunit,
.base .flexlayer {
  color: #000000;
  text-align: center;
}.base .block-title,
.base .chapter-title,
.base .header-text,
.base .lead-h2,
.base .main-heading,
.base .page-h,
.base .section-h,
.base .section-heading,
.base .topic-title {
  color: #000000;
}
.base .alignbox,
.base .text-wrapper {
  color: #000000;
  text-align: center;
}.base .block-title,
.base .chapter-title,
.base .header-text,
.base .lead-h2,
.base .main-heading,
.base .page-h,
.base .section-h,
.base .section-heading,
.base .topic-title,
.base .lead-btn,
.base .domlayer {
  text-align: center;
  color: #1f6463;
}
.contentbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.contentbox .container {
  max-width: 1300px;
}
.contentbox .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .contentbox .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .contentbox .corewrap {
    margin-bottom: 1rem;
  }
}
.contentbox .row {
  align-items: center;
}
@media (max-width: 991px) {
  .contentbox .corewrap {
    padding: 1.5rem;
  }
}.contentbox .block-title,
.contentbox .chapter-title,
.contentbox .header-text,
.contentbox .lead-h2,
.contentbox .main-heading,
.contentbox .page-h,
.contentbox .section-h,
.contentbox .section-heading,
.contentbox .topic-title {
  color: #1f6463;
}.contentbox .alignbox,
.contentbox .lead-btn {
  color: #000000;
}.contentbox .block-subtitle,
.contentbox .h-secondary,
.contentbox .lead-sub,
.contentbox .section-sub,
.contentbox .section-tag,
.contentbox .sub-heading,
.contentbox .subtitle-text,
.contentbox .tagline-h {
  color: #000000;
}
.neutralbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f6463;
}
.neutralbox .nodeband {
  padding: 0;
}
@media (max-width: 991px) {
  .neutralbox .nodeband {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .neutralbox .row {
    text-align: center;
  }
  .neutralbox .row > div {
    margin: auto;
  }
}
.neutralbox .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .neutralbox .list {
    margin-bottom: 0rem;
  }
}.neutralbox .alignbox,
.neutralbox .block-subtitle,
.neutralbox .h-secondary,
.neutralbox .lead-sub,
.neutralbox .section-sub,
.neutralbox .section-tag,
.neutralbox .sub-heading,
.neutralbox .subtitle-text,
.neutralbox .tagline-h {
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
}
.neutralbox .measure-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox div > *:last-child {
    margin-top: 0 !important;
  }
}
.neutralbox .self-center {
  align-self: center;
}
.neutralbox .buildbox {
  padding-top: 20px;
  line-height: 21px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .neutralbox .buildbox {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .neutralbox .buildbox {
    margin-bottom: 0;
  }
}
.neutralbox .text-style {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .neutralbox .text-style:not(:last-child) {
    margin-bottom: 16px !important;
  }
}
.neutralbox .position {
  text-align: end;
}
@media (max-width: 767px) {
  .neutralbox .position {
    text-align: center;
  }
}
.neutralbox .pt-16 {
  padding-top: 16px;
}
.neutralbox .pb-16 {
  padding-bottom: 16px;
}
.root .menu-bar {
  background-color: #1f6463 !important;
  padding: 0;
}
@media (max-width: 991px) {
  
  .root .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.root .menu-bar {
  position: relative !important;
}
.root nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.root .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .root .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.root .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.root .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .root ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .root li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
}
.root .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .root .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .root .nav-item {
    margin: 0 !important;
  }
}
.root .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.root .nav-link {
  position: relative;
  color: #ffffff;
}
.root .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.root .container {
  display: flex;
  margin: auto;
}
.root .clusterbox {
  color: #a0e1e1;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.root .clusterbox:last-child {
  margin-right: 0;
}
.root .clusterbox:hover {
  color: #a0e1e1;
}
.root .packlayer {
  color: #ffffff;
}
.root .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .root .navbar-nav {
    margin: 0;
  }
}
.root .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.root .nav-item:focus,
.root .nav-link:focus {
  outline: none;
}
.root .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #a0e1e1;
}
.root .navbar .innerwrap img {
  object-fit: cover;
}
.root .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.root .navbar.collapsed {
  justify-content: center;
}
.root .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.root .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .root .navbar .nav-item {
    padding: .5rem 0;
  }
  .root .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .root .navbar .nav-item .nav-link::before {
    display: none;
  }
  .root .navbar .innerwrap img {
    height: 3rem !important;
  }
  .root .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .root .navbar ul.navbar-nav li {
    margin: 0;
  }
  .root .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .root .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.root .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.root .navbar-brand .packlayer {
  line-height: inherit !important;
}
.root .navbar-brand .innerwrap a {
  outline: none;
}
.root .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.root ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.root button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #1f6463;
  background: #1f6463;
}

.root a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .root .navbar {
    height: 70px;
  }
  .root .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.root .lead-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}.root .lead-btn .btn:first-child {
  margin-left: 9.6px;
}.root .lead-btn .btn:focus {
  box-shadow: none;
}.root .lead-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6ba262;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}.root .lead-btn .btn:hover {
  transform: scale(1) !important;
  color: #a0e1e1 !important;
}.root .lead-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.root .menu-bar .innerwrap {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .root .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.root .packlayer:hover {
  color: #a0e1e1;
}
.root .nav-link:hover {
  color: #a0e1e1;
}
.root .nav-link:hover::before {
  background-color: #a0e1e1;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  color: #ffffff;
}
.root .alignbox {
  color: #ffffff;
  text-align: left;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  text-align: left;
  color: #ffffff;
}
.root a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.slot {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-image: url("images/rough1.jpg");
}
.slot .splitbox {
  backdrop-filter: blur(3.5px);
}
.slot .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .slot .card-wrapper {
    padding: 2rem 1rem;
  }
}
.slot .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.slot .col-12 {
  position: relative;
}
.slot .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .slot .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.slot .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.slot .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}.slot .block-title,
.slot .chapter-title,
.slot .header-text,
.slot .lead-h2,
.slot .main-heading,
.slot .page-h,
.slot .section-h,
.slot .section-heading,
.slot .topic-title {
  color: #1f6463;
  text-align: center;
}.slot .alignbox,
.slot .lead-btn {
  color: #000000;
}
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.section .container {
  max-width: 1300px;
}
.section .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .section .text-wrapper {
    padding: 0 2rem;
  }
}
.section .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .section .corewrap {
    margin-bottom: 1rem;
  }
}
.section .row {
  align-items: center;
}
@media (max-width: 991px) {
  .section .corewrap {
    padding: 1.5rem;
  }
}.section .block-title,
.section .chapter-title,
.section .header-text,
.section .lead-h2,
.section .main-heading,
.section .page-h,
.section .section-h,
.section .section-heading,
.section .topic-title {
  color: #1f6463;
}.section .alignbox,
.section .lead-btn {
  color: #000000;
}.section .block-subtitle,
.section .h-secondary,
.section .lead-sub,
.section .section-sub,
.section .section-tag,
.section .sub-heading,
.section .subtitle-text,
.section .tagline-h {
  color: #000000;
}
.sectionlayer {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #f3f6f6;
}.sectionlayer .alignbox,
.sectionlayer .lead-btn {
  text-align: center;
  color: #000000;
}.sectionlayer .block-title,
.sectionlayer .chapter-title,
.sectionlayer .header-text,
.sectionlayer .lead-h2,
.sectionlayer .main-heading,
.sectionlayer .page-h,
.sectionlayer .section-h,
.sectionlayer .section-heading,
.sectionlayer .topic-title {
  text-align: center;
  color: #1f6463;
}
.framepad {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f6f6;
}
.framepad .container {
  max-width: 1300px;
}
.framepad .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .framepad .text-wrapper {
    padding: 3rem 2rem;
  }
}
.framepad .row {
  background: #ffffff;
}
@media (max-width: 991px) {
  .framepad .corewrap {
    margin-bottom: 1rem;
  }
}
.framepad .corewrap {
  padding: 0;
}
.framepad .corewrap img {
  height: 100%;
  object-fit: cover;
}.framepad .block-title,
.framepad .chapter-title,
.framepad .header-text,
.framepad .lead-h2,
.framepad .main-heading,
.framepad .page-h,
.framepad .section-h,
.framepad .section-heading,
.framepad .topic-title {
  color: #1f6463;
}.framepad .alignbox,
.framepad .lead-btn {
  color: #000000;
}.framepad .block-subtitle,
.framepad .h-secondary,
.framepad .lead-sub,
.framepad .section-sub,
.framepad .section-tag,
.framepad .sub-heading,
.framepad .subtitle-text,
.framepad .tagline-h {
  color: #ffffff;
}
.cellwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cellwrap .wrapunitbox {
    margin-bottom: 32px;
  }
}.cellwrap .wrapunitbox .block-title,
.cellwrap .wrapunitbox .chapter-title,
.cellwrap .wrapunitbox .header-text,
.cellwrap .wrapunitbox .lead-h2,
.cellwrap .wrapunitbox .main-heading,
.cellwrap .wrapunitbox .page-h,
.cellwrap .wrapunitbox .section-h,
.cellwrap .wrapunitbox .section-heading,
.cellwrap .wrapunitbox .topic-title {
  margin-bottom: 0;
}.cellwrap .wrapunitbox .lead-btn {
  margin-top: 14px;
}.cellwrap .wrapunitbox .lead-btn .btn {
  margin-bottom: 0;
}
.cellwrap .text-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cellwrap .text-wrapper .alignbox {
  display: inline-block;
  margin-bottom: 0;
}
.cellwrap .text-wrapper .list-wrapper {
  margin-top: 24px;
}
.cellwrap .text-wrapper .list-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cellwrap .text-wrapper .list-wrapper .list .item-wrap {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #a0e1e1;
}.cellwrap .block-title,
.cellwrap .chapter-title,
.cellwrap .header-text,
.cellwrap .lead-h2,
.cellwrap .main-heading,
.cellwrap .page-h,
.cellwrap .section-h,
.cellwrap .section-heading,
.cellwrap .topic-title {
  color: #000000;
}
.cellwrap .alignbox,
.cellwrap .text-wrapper {
  color: #4f4f4f;
}
.cellwrap .list {
  color: #000000;
}
.cellwrap .list,
.cellwrap .item-wrap,
.cellwrap .list-wrapper {
  color: #1f6463;
}.cellwrap .block-title,
.cellwrap .chapter-title,
.cellwrap .header-text,
.cellwrap .lead-h2,
.cellwrap .main-heading,
.cellwrap .page-h,
.cellwrap .section-h,
.cellwrap .section-heading,
.cellwrap .topic-title,
.cellwrap .lead-btn {
  color: #1f6463;
}
.cellwrap .alignbox {
  color: #000000;
}
.neutralbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f6463;
}
.neutralbox .nodeband {
  padding: 0;
}
@media (max-width: 991px) {
  .neutralbox .nodeband {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .neutralbox .row {
    text-align: center;
  }
  .neutralbox .row > div {
    margin: auto;
  }
}
.neutralbox .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .neutralbox .list {
    margin-bottom: 0rem;
  }
}.neutralbox .alignbox,
.neutralbox .block-subtitle,
.neutralbox .h-secondary,
.neutralbox .lead-sub,
.neutralbox .section-sub,
.neutralbox .section-tag,
.neutralbox .sub-heading,
.neutralbox .subtitle-text,
.neutralbox .tagline-h {
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
}
.neutralbox .measure-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox div > *:last-child {
    margin-top: 0 !important;
  }
}
.neutralbox .self-center {
  align-self: center;
}
.neutralbox .buildbox {
  padding-top: 20px;
  line-height: 21px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .neutralbox .buildbox {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .neutralbox .buildbox {
    margin-bottom: 0;
  }
}
.neutralbox .text-style {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .neutralbox .text-style:not(:last-child) {
    margin-bottom: 16px !important;
  }
}
.neutralbox .position {
  text-align: end;
}
@media (max-width: 767px) {
  .neutralbox .position {
    text-align: center;
  }
}
.neutralbox .pt-16 {
  padding-top: 16px;
}
.neutralbox .pb-16 {
  padding-bottom: 16px;
}
.root .menu-bar {
  background-color: #1f6463 !important;
  padding: 0;
}
@media (max-width: 991px) {
  
  .root .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.root .menu-bar {
  position: relative !important;
}
.root nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.root .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .root .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.root .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.root .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .root ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .root li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
}
.root .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .root .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .root .nav-item {
    margin: 0 !important;
  }
}
.root .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.root .nav-link {
  position: relative;
  color: #ffffff;
}
.root .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.root .container {
  display: flex;
  margin: auto;
}
.root .clusterbox {
  color: #a0e1e1;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.root .clusterbox:last-child {
  margin-right: 0;
}
.root .clusterbox:hover {
  color: #a0e1e1;
}
.root .packlayer {
  color: #ffffff;
}
.root .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .root .navbar-nav {
    margin: 0;
  }
}
.root .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.root .nav-item:focus,
.root .nav-link:focus {
  outline: none;
}
.root .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #a0e1e1;
}
.root .navbar .innerwrap img {
  object-fit: cover;
}
.root .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.root .navbar.collapsed {
  justify-content: center;
}
.root .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.root .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .root .navbar .nav-item {
    padding: .5rem 0;
  }
  .root .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .root .navbar .nav-item .nav-link::before {
    display: none;
  }
  .root .navbar .innerwrap img {
    height: 3rem !important;
  }
  .root .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .root .navbar ul.navbar-nav li {
    margin: 0;
  }
  .root .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .root .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.root .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.root .navbar-brand .packlayer {
  line-height: inherit !important;
}
.root .navbar-brand .innerwrap a {
  outline: none;
}
.root .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.root ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.root button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #1f6463;
  background: #1f6463;
}

.root a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .root .navbar {
    height: 70px;
  }
  .root .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.root .lead-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}.root .lead-btn .btn:first-child {
  margin-left: 9.6px;
}.root .lead-btn .btn:focus {
  box-shadow: none;
}.root .lead-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6ba262;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}.root .lead-btn .btn:hover {
  transform: scale(1) !important;
  color: #a0e1e1 !important;
}.root .lead-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.root .menu-bar .innerwrap {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .root .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.root .packlayer:hover {
  color: #a0e1e1;
}
.root .nav-link:hover {
  color: #a0e1e1;
}
.root .nav-link:hover::before {
  background-color: #a0e1e1;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  color: #ffffff;
}
.root .alignbox {
  color: #ffffff;
  text-align: left;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  text-align: left;
  color: #ffffff;
}
.root a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.footbox {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f3f6f6;
}
.footbox .row::after {
  content: '';
  display: block;
  background: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
  left: 0;
}
@media (max-width: 992px) {
  .footbox .row::after {
    display: none;
  }
}
.footbox .image {
  position: relative;
}
.footbox .image::before {
  content: '';
  display: block;
  background: #a0e1e1;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 50px;
  border-radius: 10rem 0;
}
@media (max-width: 992px) {
  .footbox .image::before {
    display: none;
  }
}
.footbox .corewrap {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .footbox .corewrap {
    padding: 0 12px 60px 12px;
  }
}
.footbox .corewrap::before {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 150px;
  height: 150px;
  border: 20px solid #ffffff;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .footbox .corewrap::before {
    display: none;
  }
}
.footbox .corewrap::after {
  content: '';
  display: block;
  background: #ffffff;
  position: absolute;
  bottom: -2rem;
  right: 7rem;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .footbox .corewrap::after {
    display: none;
  }
}
.footbox .corewrap img {
  max-width: 370px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
  z-index: 1;
}
.footbox .title {
  display: flex;
  align-items: center;
}
.footbox .domlayer {
  padding: 0 110px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .footbox .domlayer {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .footbox .domlayer {
    padding: 0 12px;
  }
}.footbox .domlayer .block-title,
.footbox .domlayer .chapter-title,
.footbox .domlayer .header-text,
.footbox .domlayer .lead-h2,
.footbox .domlayer .main-heading,
.footbox .domlayer .page-h,
.footbox .domlayer .section-h,
.footbox .domlayer .section-heading,
.footbox .domlayer .topic-title {
  margin-bottom: 8px;
}
@media (max-width: 992px) {.footbox .domlayer .block-title,
.footbox .domlayer .chapter-title,
.footbox .domlayer .header-text,
.footbox .domlayer .lead-h2,
.footbox .domlayer .main-heading,
.footbox .domlayer .page-h,
.footbox .domlayer .section-h,
.footbox .domlayer .section-heading,
.footbox .domlayer .topic-title {
    margin-bottom: 25px;
  }
}
.footbox .domlayer .alignbox {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .footbox .domlayer .alignbox {
    margin-bottom: 0;
  }
}.footbox .block-title,
.footbox .chapter-title,
.footbox .header-text,
.footbox .lead-h2,
.footbox .main-heading,
.footbox .page-h,
.footbox .section-h,
.footbox .section-heading,
.footbox .topic-title {
  color: #1f6463;
}
.footbox .alignbox {
  color: #000000;
}
.zonepad {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/warm1.jpg");
}
.zonepad .domlayer {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .zonepad .domlayer {
    margin-bottom: 40px;
  }
}
.zonepad .domlayer .flexlayer .noteunit {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #deeff8;
}.zonepad .domlayer .structurebox .block-title,
.zonepad .domlayer .structurebox .chapter-title,
.zonepad .domlayer .structurebox .header-text,
.zonepad .domlayer .structurebox .lead-h2,
.zonepad .domlayer .structurebox .main-heading,
.zonepad .domlayer .structurebox .page-h,
.zonepad .domlayer .structurebox .section-h,
.zonepad .domlayer .structurebox .section-heading,
.zonepad .domlayer .structurebox .topic-title {
  margin-bottom: 20px;
}
.zonepad .domlayer .text-wrapper .alignbox {
  margin-bottom: 0;
}
.zonepad .noteunit,
.zonepad .flexlayer {
  color: #116e99;
  text-align: center;
}.zonepad .block-title,
.zonepad .chapter-title,
.zonepad .header-text,
.zonepad .lead-h2,
.zonepad .main-heading,
.zonepad .page-h,
.zonepad .section-h,
.zonepad .section-heading,
.zonepad .topic-title,
.zonepad .structurebox {
  color: #ffffff;
  text-align: center;
}
.zonepad .alignbox,
.zonepad .text-wrapper {
  color: #000000;
  text-align: center;
}
.zonepad label {
  color: #000000;
}.zonepad .block-title,
.zonepad .chapter-title,
.zonepad .header-text,
.zonepad .lead-h2,
.zonepad .main-heading,
.zonepad .page-h,
.zonepad .section-h,
.zonepad .section-heading,
.zonepad .topic-title,
.zonepad .structurebox,
.zonepad .list-wrapper {
  color: #1f6463;
}
.fieldcore {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3f6f6;
}
@media (max-width: 767px) {
  .fieldcore .content {
    text-align: center;
  }
  .fieldcore .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.fieldcore .dockbox {
  height: 50rem;
  width: 100%;
  position: relative;
  box-shadow: 2.5px 4.3px 29px 0 rgba(0, 0, 0, 0.18);
}
.fieldcore .dockbox iframe {
  height: 100%;
  width: 100%;
}
.fieldcore .dockbox .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 992px) {
  .fieldcore .dockbox .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .fieldcore .dockbox {
    width: 100%;
  }
  .fieldcore .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 820px) {
  .fieldcore .cell1 {
    display: none !important;
  }
}
.fieldcore .infobox1 {
  color: grey;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin: 28.8rem 5rem;
  max-width: 690px;
  position: absolute;
  z-index: 9;
}
@media (max-width: 767px) {
  .fieldcore .infobox1 {
    margin: 10rem 2rem;
  }
}
.fieldcore .infobox1 .stackunit .coverbox .cell1 img {
  max-width: 100%;
}
.fieldcore .infobox1 .stackunit .coverbox .cell2 {
  padding: 41px 62px;
  width: 466px;
  background-color: black;
  font-weight: 300 !important;
  line-height: 1.6 !important;
}
@media (max-width: 767px) {
  .fieldcore .infobox1 .stackunit .coverbox .cell2 {
    padding: 10px 20px;
  }
}
.fieldcore .infobox1 .stackunit .coverbox .cell2 a {
  background: 0 0;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  color: white;
  margin-bottom: 10px;
  margin-top: 1px;
  position: relative;
}
.fieldcore .infobox1 .stackunit .coverbox .cell2 a::before {
  background-color: currentColor;
  bottom: -2px;
  content: "";
  display: block;
  height: 1px;
  left: auto;
  position: absolute;
  right: 0;
  width: 100%;
  box-sizing: border-box;
}
.fieldcore .infobox2 {
  display: none;
}
@media (max-width: 768px) {
  .fieldcore .infobox1 {
    display: none;
  }
  .fieldcore .infobox2 {
    display: block;
    color: grey;
    font-weight: 300;
    line-height: 1.7;
    margin: 12rem 5rem;
    max-width: 690px;
    position: relative;
    z-index: 9;
  }
  .fieldcore .infobox2 .stackunit .coverbox .cell1 img {
    max-width: 100%;
  }
  .fieldcore .infobox2 .stackunit .coverbox .cell2 {
    padding: 41px 62px;
    width: 466px;
    background-color: black;
    font-weight: 300 !important;
    line-height: 1.6 !important;
  }
  .fieldcore .infobox2 .stackunit .coverbox .cell2 a {
    background: 0 0;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    color: white;
    margin-bottom: 10px;
    margin-top: 1px;
    position: relative;
  }
  .fieldcore .infobox2 .stackunit .coverbox .cell2 a::before {
    background-color: currentColor;
    bottom: -2px;
    content: "";
    display: block;
    height: 1px;
    left: auto;
    position: absolute;
    right: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) and (max-width: 767px) {
  .fieldcore .infobox2 {
    margin: 0rem 2rem;
  }
}
@media (max-width: 768px) and (max-width: 767px) {
  .fieldcore .infobox2 .stackunit .coverbox .cell2 {
    padding: 10px 20px;
  }
}
.neutralbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f6463;
}
.neutralbox .nodeband {
  padding: 0;
}
@media (max-width: 991px) {
  .neutralbox .nodeband {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .neutralbox .row {
    text-align: center;
  }
  .neutralbox .row > div {
    margin: auto;
  }
}
.neutralbox .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .neutralbox .list {
    margin-bottom: 0rem;
  }
}.neutralbox .alignbox,
.neutralbox .block-subtitle,
.neutralbox .h-secondary,
.neutralbox .lead-sub,
.neutralbox .section-sub,
.neutralbox .section-tag,
.neutralbox .sub-heading,
.neutralbox .subtitle-text,
.neutralbox .tagline-h {
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
}
.neutralbox .measure-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox div > *:last-child {
    margin-top: 0 !important;
  }
}
.neutralbox .self-center {
  align-self: center;
}
.neutralbox .buildbox {
  padding-top: 20px;
  line-height: 21px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .neutralbox .buildbox {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .neutralbox .buildbox {
    margin-bottom: 0;
  }
}
.neutralbox .text-style {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .neutralbox .text-style:not(:last-child) {
    margin-bottom: 16px !important;
  }
}
.neutralbox .position {
  text-align: end;
}
@media (max-width: 767px) {
  .neutralbox .position {
    text-align: center;
  }
}
.neutralbox .pt-16 {
  padding-top: 16px;
}
.neutralbox .pb-16 {
  padding-bottom: 16px;
}
.root .menu-bar {
  background-color: #1f6463 !important;
  padding: 0;
}
@media (max-width: 991px) {
  
  .root .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.root .menu-bar {
  position: relative !important;
}
.root nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.root .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .root .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.root .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.root .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .root ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .root li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
}
.root .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .root .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .root .nav-item {
    margin: 0 !important;
  }
}
.root .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.root .nav-link {
  position: relative;
  color: #ffffff;
}
.root .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.root .container {
  display: flex;
  margin: auto;
}
.root .clusterbox {
  color: #a0e1e1;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.root .clusterbox:last-child {
  margin-right: 0;
}
.root .clusterbox:hover {
  color: #a0e1e1;
}
.root .packlayer {
  color: #ffffff;
}
.root .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .root .navbar-nav {
    margin: 0;
  }
}
.root .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.root .nav-item:focus,
.root .nav-link:focus {
  outline: none;
}
.root .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #a0e1e1;
}
.root .navbar .innerwrap img {
  object-fit: cover;
}
.root .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.root .navbar.collapsed {
  justify-content: center;
}
.root .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.root .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .root .navbar .nav-item {
    padding: .5rem 0;
  }
  .root .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .root .navbar .nav-item .nav-link::before {
    display: none;
  }
  .root .navbar .innerwrap img {
    height: 3rem !important;
  }
  .root .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .root .navbar ul.navbar-nav li {
    margin: 0;
  }
  .root .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .root .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.root .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.root .navbar-brand .packlayer {
  line-height: inherit !important;
}
.root .navbar-brand .innerwrap a {
  outline: none;
}
.root .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.root ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.root button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #1f6463;
  background: #1f6463;
}

.root a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .root .navbar {
    height: 70px;
  }
  .root .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.root .lead-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}.root .lead-btn .btn:first-child {
  margin-left: 9.6px;
}.root .lead-btn .btn:focus {
  box-shadow: none;
}.root .lead-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6ba262;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}.root .lead-btn .btn:hover {
  transform: scale(1) !important;
  color: #a0e1e1 !important;
}.root .lead-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.root .menu-bar .innerwrap {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .root .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.root .packlayer:hover {
  color: #a0e1e1;
}
.root .nav-link:hover {
  color: #a0e1e1;
}
.root .nav-link:hover::before {
  background-color: #a0e1e1;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  color: #ffffff;
}
.root .alignbox {
  color: #ffffff;
  text-align: left;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  text-align: left;
  color: #ffffff;
}
.root a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.piece {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.piece .row {
  position: relative;
}
.piece .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #a0e1e1;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .piece .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #a0e1e1;
  }
}
@media (max-width: 768px) {
  .piece .row::after {
    display: none;
  }
}
.piece .domlayer {
  padding: 0 1rem;
  position: relative;
}
.piece .domlayer::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #1f6463;
}
.piece .domlayer::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #a0e1e1;
}.piece .domlayer .block-title,
.piece .domlayer .chapter-title,
.piece .domlayer .header-text,
.piece .domlayer .lead-h2,
.piece .domlayer .main-heading,
.piece .domlayer .page-h,
.piece .domlayer .section-h,
.piece .domlayer .section-heading,
.piece .domlayer .topic-title {
  margin-bottom: 30px;
}.piece .domlayer .lead-btn .btn {
  max-height: 34px;
  border: 1px solid #a0e1e1;
  box-shadow: none;
}.piece .domlayer .lead-btn .btn:hover {
  color: #1f6463 !important;
  background: #a0e1e1 !important;
  box-shadow: none !important;
}.piece .block-title,
.piece .chapter-title,
.piece .header-text,
.piece .lead-h2,
.piece .main-heading,
.piece .page-h,
.piece .section-h,
.piece .section-heading,
.piece .topic-title {
  color: #ffffff;
}.piece .block-title,
.piece .chapter-title,
.piece .header-text,
.piece .lead-h2,
.piece .main-heading,
.piece .page-h,
.piece .section-h,
.piece .section-heading,
.piece .topic-title,
.piece .lead-btn {
  text-align: center;
  color: #1f6463;
}
.bodywrap {
  padding-top: 3rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .bodywrap .wrapper {
    padding: 0 28px;
  }
}
.bodywrap .alignbox {
  color: #000000;
}
.neutralbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f6463;
}
.neutralbox .nodeband {
  padding: 0;
}
@media (max-width: 991px) {
  .neutralbox .nodeband {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .neutralbox .row {
    text-align: center;
  }
  .neutralbox .row > div {
    margin: auto;
  }
}
.neutralbox .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .neutralbox .list {
    margin-bottom: 0rem;
  }
}.neutralbox .alignbox,
.neutralbox .block-subtitle,
.neutralbox .h-secondary,
.neutralbox .lead-sub,
.neutralbox .section-sub,
.neutralbox .section-tag,
.neutralbox .sub-heading,
.neutralbox .subtitle-text,
.neutralbox .tagline-h {
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
}
.neutralbox .measure-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox div > *:last-child {
    margin-top: 0 !important;
  }
}
.neutralbox .self-center {
  align-self: center;
}
.neutralbox .buildbox {
  padding-top: 20px;
  line-height: 21px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .neutralbox .buildbox {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .neutralbox .buildbox {
    margin-bottom: 0;
  }
}
.neutralbox .text-style {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .neutralbox .text-style:not(:last-child) {
    margin-bottom: 16px !important;
  }
}
.neutralbox .position {
  text-align: end;
}
@media (max-width: 767px) {
  .neutralbox .position {
    text-align: center;
  }
}
.neutralbox .pt-16 {
  padding-top: 16px;
}
.neutralbox .pb-16 {
  padding-bottom: 16px;
}
.root .menu-bar {
  background-color: #1f6463 !important;
  padding: 0;
}
@media (max-width: 991px) {
  
  .root .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.root .menu-bar {
  position: relative !important;
}
.root nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.root .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .root .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.root .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.root .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .root ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .root li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
}
.root .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .root .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .root .nav-item {
    margin: 0 !important;
  }
}
.root .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.root .nav-link {
  position: relative;
  color: #ffffff;
}
.root .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.root .container {
  display: flex;
  margin: auto;
}
.root .clusterbox {
  color: #a0e1e1;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.root .clusterbox:last-child {
  margin-right: 0;
}
.root .clusterbox:hover {
  color: #a0e1e1;
}
.root .packlayer {
  color: #ffffff;
}
.root .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .root .navbar-nav {
    margin: 0;
  }
}
.root .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.root .nav-item:focus,
.root .nav-link:focus {
  outline: none;
}
.root .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #a0e1e1;
}
.root .navbar .innerwrap img {
  object-fit: cover;
}
.root .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.root .navbar.collapsed {
  justify-content: center;
}
.root .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.root .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .root .navbar .nav-item {
    padding: .5rem 0;
  }
  .root .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .root .navbar .nav-item .nav-link::before {
    display: none;
  }
  .root .navbar .innerwrap img {
    height: 3rem !important;
  }
  .root .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .root .navbar ul.navbar-nav li {
    margin: 0;
  }
  .root .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .root .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.root .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.root .navbar-brand .packlayer {
  line-height: inherit !important;
}
.root .navbar-brand .innerwrap a {
  outline: none;
}
.root .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.root ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.root button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #1f6463;
  background: #1f6463;
}

.root a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .root .navbar {
    height: 70px;
  }
  .root .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.root .lead-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}.root .lead-btn .btn:first-child {
  margin-left: 9.6px;
}.root .lead-btn .btn:focus {
  box-shadow: none;
}.root .lead-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6ba262;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}.root .lead-btn .btn:hover {
  transform: scale(1) !important;
  color: #a0e1e1 !important;
}.root .lead-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.root .menu-bar .innerwrap {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .root .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.root .packlayer:hover {
  color: #a0e1e1;
}
.root .nav-link:hover {
  color: #a0e1e1;
}
.root .nav-link:hover::before {
  background-color: #a0e1e1;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  color: #ffffff;
}
.root .alignbox {
  color: #ffffff;
  text-align: left;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  text-align: left;
  color: #ffffff;
}
.root a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.zoneunit {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.zoneunit .row {
  position: relative;
}
.zoneunit .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #a0e1e1;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .zoneunit .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #a0e1e1;
  }
}
@media (max-width: 768px) {
  .zoneunit .row::after {
    display: none;
  }
}
.zoneunit .domlayer {
  padding: 0 1rem;
  position: relative;
}
.zoneunit .domlayer::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #1f6463;
}
.zoneunit .domlayer::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #a0e1e1;
}.zoneunit .domlayer .block-title,
.zoneunit .domlayer .chapter-title,
.zoneunit .domlayer .header-text,
.zoneunit .domlayer .lead-h2,
.zoneunit .domlayer .main-heading,
.zoneunit .domlayer .page-h,
.zoneunit .domlayer .section-h,
.zoneunit .domlayer .section-heading,
.zoneunit .domlayer .topic-title {
  margin-bottom: 30px;
}.zoneunit .domlayer .lead-btn .btn {
  max-height: 34px;
  border: 1px solid #a0e1e1;
  box-shadow: none;
}.zoneunit .domlayer .lead-btn .btn:hover {
  color: #1f6463 !important;
  background: #a0e1e1 !important;
  box-shadow: none !important;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #ffffff;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title,
.zoneunit .lead-btn {
  text-align: center;
  color: #1f6463;
}
.cell {
  padding-top: 3rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cell .wrapper {
    padding: 0 28px;
  }
}
.cell .alignbox {
  color: #000000;
}
.neutralbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f6463;
}
.neutralbox .nodeband {
  padding: 0;
}
@media (max-width: 991px) {
  .neutralbox .nodeband {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .neutralbox .row {
    text-align: center;
  }
  .neutralbox .row > div {
    margin: auto;
  }
}
.neutralbox .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .neutralbox .list {
    margin-bottom: 0rem;
  }
}.neutralbox .alignbox,
.neutralbox .block-subtitle,
.neutralbox .h-secondary,
.neutralbox .lead-sub,
.neutralbox .section-sub,
.neutralbox .section-tag,
.neutralbox .sub-heading,
.neutralbox .subtitle-text,
.neutralbox .tagline-h {
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
}
.neutralbox .measure-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox div > *:last-child {
    margin-top: 0 !important;
  }
}
.neutralbox .self-center {
  align-self: center;
}
.neutralbox .buildbox {
  padding-top: 20px;
  line-height: 21px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .neutralbox .buildbox {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .neutralbox .buildbox {
    margin-bottom: 0;
  }
}
.neutralbox .text-style {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .neutralbox .text-style:not(:last-child) {
    margin-bottom: 16px !important;
  }
}
.neutralbox .position {
  text-align: end;
}
@media (max-width: 767px) {
  .neutralbox .position {
    text-align: center;
  }
}
.neutralbox .pt-16 {
  padding-top: 16px;
}
.neutralbox .pb-16 {
  padding-bottom: 16px;
}
.root .menu-bar {
  background-color: #1f6463 !important;
  padding: 0;
}
@media (max-width: 991px) {
  
  .root .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.root .menu-bar {
  position: relative !important;
}
.root nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.root .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .root .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.root .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.root .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .root ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .root li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
}
.root .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .root .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .root .nav-item {
    margin: 0 !important;
  }
}
.root .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.root .nav-link {
  position: relative;
  color: #ffffff;
}
.root .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.root .container {
  display: flex;
  margin: auto;
}
.root .clusterbox {
  color: #a0e1e1;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.root .clusterbox:last-child {
  margin-right: 0;
}
.root .clusterbox:hover {
  color: #a0e1e1;
}
.root .packlayer {
  color: #ffffff;
}
.root .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .root .navbar-nav {
    margin: 0;
  }
}
.root .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.root .nav-item:focus,
.root .nav-link:focus {
  outline: none;
}
.root .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #a0e1e1;
}
.root .navbar .innerwrap img {
  object-fit: cover;
}
.root .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.root .navbar.collapsed {
  justify-content: center;
}
.root .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.root .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .root .navbar .nav-item {
    padding: .5rem 0;
  }
  .root .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .root .navbar .nav-item .nav-link::before {
    display: none;
  }
  .root .navbar .innerwrap img {
    height: 3rem !important;
  }
  .root .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .root .navbar ul.navbar-nav li {
    margin: 0;
  }
  .root .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .root .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.root .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.root .navbar-brand .packlayer {
  line-height: inherit !important;
}
.root .navbar-brand .innerwrap a {
  outline: none;
}
.root .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.root ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.root button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #1f6463;
  background: #1f6463;
}

.root a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .root .navbar {
    height: 70px;
  }
  .root .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.root .lead-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}.root .lead-btn .btn:first-child {
  margin-left: 9.6px;
}.root .lead-btn .btn:focus {
  box-shadow: none;
}.root .lead-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6ba262;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}.root .lead-btn .btn:hover {
  transform: scale(1) !important;
  color: #a0e1e1 !important;
}.root .lead-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.root .menu-bar .innerwrap {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .root .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.root .packlayer:hover {
  color: #a0e1e1;
}
.root .nav-link:hover {
  color: #a0e1e1;
}
.root .nav-link:hover::before {
  background-color: #a0e1e1;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  color: #ffffff;
}
.root .alignbox {
  color: #ffffff;
  text-align: left;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  text-align: left;
  color: #ffffff;
}
.root a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.band {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.band .row {
  position: relative;
}
.band .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #a0e1e1;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .band .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #a0e1e1;
  }
}
@media (max-width: 768px) {
  .band .row::after {
    display: none;
  }
}
.band .domlayer {
  padding: 0 1rem;
  position: relative;
}
.band .domlayer::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #1f6463;
}
.band .domlayer::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #a0e1e1;
}.band .domlayer .block-title,
.band .domlayer .chapter-title,
.band .domlayer .header-text,
.band .domlayer .lead-h2,
.band .domlayer .main-heading,
.band .domlayer .page-h,
.band .domlayer .section-h,
.band .domlayer .section-heading,
.band .domlayer .topic-title {
  margin-bottom: 30px;
}.band .domlayer .lead-btn .btn {
  max-height: 34px;
  border: 1px solid #a0e1e1;
  box-shadow: none;
}.band .domlayer .lead-btn .btn:hover {
  color: #1f6463 !important;
  background: #a0e1e1 !important;
  box-shadow: none !important;
}.band .block-title,
.band .chapter-title,
.band .header-text,
.band .lead-h2,
.band .main-heading,
.band .page-h,
.band .section-h,
.band .section-heading,
.band .topic-title {
  color: #ffffff;
}.band .block-title,
.band .chapter-title,
.band .header-text,
.band .lead-h2,
.band .main-heading,
.band .page-h,
.band .section-h,
.band .section-heading,
.band .topic-title,
.band .lead-btn {
  text-align: center;
  color: #1f6463;
}
.gridbody {
  padding-top: 3rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .gridbody .wrapper {
    padding: 0 28px;
  }
}
.gridbody .alignbox {
  color: #000000;
}
.neutralbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f6463;
}
.neutralbox .nodeband {
  padding: 0;
}
@media (max-width: 991px) {
  .neutralbox .nodeband {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .neutralbox .row {
    text-align: center;
  }
  .neutralbox .row > div {
    margin: auto;
  }
}
.neutralbox .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .neutralbox .list {
    margin-bottom: 0rem;
  }
}.neutralbox .alignbox,
.neutralbox .block-subtitle,
.neutralbox .h-secondary,
.neutralbox .lead-sub,
.neutralbox .section-sub,
.neutralbox .section-tag,
.neutralbox .sub-heading,
.neutralbox .subtitle-text,
.neutralbox .tagline-h {
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
}
.neutralbox .measure-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox div > *:last-child {
    margin-top: 0 !important;
  }
}
.neutralbox .self-center {
  align-self: center;
}
.neutralbox .buildbox {
  padding-top: 20px;
  line-height: 21px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .neutralbox .buildbox {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .neutralbox .buildbox {
    margin-bottom: 0;
  }
}
.neutralbox .text-style {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .neutralbox .text-style:not(:last-child) {
    margin-bottom: 16px !important;
  }
}
.neutralbox .position {
  text-align: end;
}
@media (max-width: 767px) {
  .neutralbox .position {
    text-align: center;
  }
}
.neutralbox .pt-16 {
  padding-top: 16px;
}
.neutralbox .pb-16 {
  padding-bottom: 16px;
}
.root .menu-bar {
  background-color: #1f6463 !important;
  padding: 0;
}
@media (max-width: 991px) {
  
  .root .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.root .menu-bar {
  position: relative !important;
}
.root nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.root .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .root .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.root .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.root .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .root ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .root li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
}
.root .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .root .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .root .nav-item {
    margin: 0 !important;
  }
}
.root .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.root .nav-link {
  position: relative;
  color: #ffffff;
}
.root .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.root .container {
  display: flex;
  margin: auto;
}
.root .clusterbox {
  color: #a0e1e1;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.root .clusterbox:last-child {
  margin-right: 0;
}
.root .clusterbox:hover {
  color: #a0e1e1;
}
.root .packlayer {
  color: #ffffff;
}
.root .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .root .navbar-nav {
    margin: 0;
  }
}
.root .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.root .nav-item:focus,
.root .nav-link:focus {
  outline: none;
}
.root .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #a0e1e1;
}
.root .navbar .innerwrap img {
  object-fit: cover;
}
.root .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.root .navbar.collapsed {
  justify-content: center;
}
.root .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.root .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .root .navbar .nav-item {
    padding: .5rem 0;
  }
  .root .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .root .navbar .nav-item .nav-link::before {
    display: none;
  }
  .root .navbar .innerwrap img {
    height: 3rem !important;
  }
  .root .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .root .navbar ul.navbar-nav li {
    margin: 0;
  }
  .root .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .root .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.root .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.root .navbar-brand .packlayer {
  line-height: inherit !important;
}
.root .navbar-brand .innerwrap a {
  outline: none;
}
.root .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.root ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.root button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #1f6463;
  background: #1f6463;
}

.root a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .root .navbar {
    height: 70px;
  }
  .root .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}.root .lead-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}.root .lead-btn .btn:first-child {
  margin-left: 9.6px;
}.root .lead-btn .btn:focus {
  box-shadow: none;
}.root .lead-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6ba262;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}.root .lead-btn .btn:hover {
  transform: scale(1) !important;
  color: #a0e1e1 !important;
}.root .lead-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.root .menu-bar .innerwrap {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .root .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.root .packlayer:hover {
  color: #a0e1e1;
}
.root .nav-link:hover {
  color: #a0e1e1;
}
.root .nav-link:hover::before {
  background-color: #a0e1e1;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  color: #ffffff;
}
.root .alignbox {
  color: #ffffff;
  text-align: left;
}.root .block-subtitle,
.root .h-secondary,
.root .lead-sub,
.root .section-sub,
.root .section-tag,
.root .sub-heading,
.root .subtitle-text,
.root .tagline-h {
  text-align: left;
  color: #ffffff;
}
.root a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.elementbox {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.elementbox .row {
  position: relative;
}
.elementbox .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #a0e1e1;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .elementbox .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #a0e1e1;
  }
}
@media (max-width: 768px) {
  .elementbox .row::after {
    display: none;
  }
}
.elementbox .domlayer {
  padding: 0 1rem;
  position: relative;
}
.elementbox .domlayer::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #1f6463;
}
.elementbox .domlayer::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #a0e1e1;
}.elementbox .domlayer .block-title,
.elementbox .domlayer .chapter-title,
.elementbox .domlayer .header-text,
.elementbox .domlayer .lead-h2,
.elementbox .domlayer .main-heading,
.elementbox .domlayer .page-h,
.elementbox .domlayer .section-h,
.elementbox .domlayer .section-heading,
.elementbox .domlayer .topic-title {
  margin-bottom: 30px;
}.elementbox .domlayer .lead-btn .btn {
  max-height: 34px;
  border: 1px solid #a0e1e1;
  box-shadow: none;
}.elementbox .domlayer .lead-btn .btn:hover {
  color: #1f6463 !important;
  background: #a0e1e1 !important;
  box-shadow: none !important;
}.elementbox .block-title,
.elementbox .chapter-title,
.elementbox .header-text,
.elementbox .lead-h2,
.elementbox .main-heading,
.elementbox .page-h,
.elementbox .section-h,
.elementbox .section-heading,
.elementbox .topic-title {
  color: #ffffff;
}.elementbox .block-title,
.elementbox .chapter-title,
.elementbox .header-text,
.elementbox .lead-h2,
.elementbox .main-heading,
.elementbox .page-h,
.elementbox .section-h,
.elementbox .section-heading,
.elementbox .topic-title,
.elementbox .lead-btn {
  text-align: center;
  color: #1f6463;
}
.framegrid {
  padding-top: 3rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .framegrid .wrapper {
    padding: 0 28px;
  }
}
.framegrid .alignbox {
  color: #000000;
}
.neutralbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f6463;
}
.neutralbox .nodeband {
  padding: 0;
}
@media (max-width: 991px) {
  .neutralbox .nodeband {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .neutralbox .row {
    text-align: center;
  }
  .neutralbox .row > div {
    margin: auto;
  }
}
.neutralbox .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .neutralbox .list {
    margin-bottom: 0rem;
  }
}.neutralbox .alignbox,
.neutralbox .block-subtitle,
.neutralbox .h-secondary,
.neutralbox .lead-sub,
.neutralbox .section-sub,
.neutralbox .section-tag,
.neutralbox .sub-heading,
.neutralbox .subtitle-text,
.neutralbox .tagline-h {
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
}
.neutralbox .measure-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .neutralbox div > *:last-child {
    margin-top: 0 !important;
  }
}
.neutralbox .self-center {
  align-self: center;
}
.neutralbox .buildbox {
  padding-top: 20px;
  line-height: 21px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .neutralbox .buildbox {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .neutralbox .buildbox {
    margin-bottom: 0;
  }
}
.neutralbox .text-style {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .neutralbox .text-style:not(:last-child) {
    margin-bottom: 16px !important;
  }
}
.neutralbox .position {
  text-align: end;
}
@media (max-width: 767px) {
  .neutralbox .position {
    text-align: center;
  }
}
.neutralbox .pt-16 {
  padding-top: 16px;
}
.neutralbox .pb-16 {
  padding-bottom: 16px;
}#id-piece .block-title,
#id-piece .chapter-title,
#id-piece .header-text,
#id-piece .lead-h2,
#id-piece .main-heading,
#id-piece .page-h,
#id-piece .section-h,
#id-piece .section-heading,
#id-piece .topic-title {
    color: #000000 !important;
}

#id-piece .nodetrack,
#id-piece .nodetrack.collapsed,
#id-piece .nodetrack:hover,
#id-piece .nodetrack:focus,
#id-piece .nodetrack[aria-expanded="true"] {
    color: #000000 !important;
}

#id-piece .nodetrack::before,
#id-piece .nodetrack::after {
    color: #000000 !important;
    border-color: #000000 !important;
}

.platebox {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  width: min(420px, calc(100vw - 32px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.platebox *,
.platebox *::before,
.platebox *::after {
  box-sizing: border-box;
}

.subbox {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  border: 1px solid #dbe5df;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.subbox::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #6fbf73 0%, #5d9f7b 50%, #8ac8a3 100%);
}

.box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.mark-icon-wrap {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #eef6f0;
  border: 1px solid #d8e7da;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.mark-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.unitfield {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.areaunit {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf7ee;
  border: 1px solid #d8ebda;
  color: #4d7a56;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spanbox {
  margin: 0;
  color: #29352d;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 600;
}

.interfacebox {
  margin: 0;
  color: #425047;
  font-size: clamp(13px, 0.95vw, 14px);
  line-height: 1.62;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mount {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-items: center;
  text-align: center;
}

.bar-links-label {
  display: block;
  width: 100%;
  text-align: center;
  color: #738177;
  font-size: 12px;
  line-height: 1.4;
}

.notice-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.notice-links-row a {
  display: inline-block;
  color: #4f775d;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(79, 119, 93, 0.34);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.notice-links-row a:hover {
  color: #365342;
  border-bottom-color: #365342;
}

.notice-links-row span {
  color: #738177;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

#barDismiss {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  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, box-shadow 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #2f3a33 0%, #44584a 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(47, 58, 51, 0.16);
}

#barDismiss:hover {
  transform: translateY(-1px);
}

@media (min-width: 760px) {
  .wrapper {
    flex-direction: row;
  }

  #barDismiss {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .platebox {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .subbox {
    padding: 16px;
    border-radius: 18px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .unitfield {
    align-items: center;
    text-align: center;
  }

  .areaunit {
    align-self: center;
  }

  .spanbox {
    text-align: center;
  }

  .interfacebox {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .mount {
    align-items: center;
    text-align: center;
  }

  .notice-links-row {
    justify-content: center;
  }

  .wrapper {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .platebox {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .subbox {
    padding: 14px;
    border-radius: 16px;
  }

  .mark-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .mark-icon {
    width: 30px;
    height: 30px;
  }

  .spanbox {
    font-size: 17px;
  }

  .bar-links-label,
  .notice-links-row a,
  .notice-links-row span,
  #barDismiss {
    font-size: 12px;
  }
}

@keyframes bounceLeft {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-20px); }
    100% { transform: translateX(0); }
}

.navbar-brand {
    animation: bounceLeft 1s ease-in-out 1 forwards;
}

.view-active-btn {
  padding: 0 !important;
  background: transparent;
}
.view-active-btn .body {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.view-active-btn .body::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #111827, #374151, #6b7280);
}
.view-active-btn .note-section {
  padding: 40px 40px 24px;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  text-align: center;
}
.view-active-btn .sectionwrap {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 0;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.view-active-btn .edgebox {
  margin: 18px 0 8px;
  color: #111827;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
}
.view-active-btn .mod-link {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.view-active-btn .boxareaunit {
  padding: 30px 40px 40px;
  color: #111827;
}
.view-active-btn .boxareaunit *,
.view-active-btn .boxareaunit *::before,
.view-active-btn .boxareaunit *::after {
  box-sizing: border-box;
}
.view-active-btn .unit-frame {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  row-gap: 22px;
}
.view-active-btn .desk-outer-info {
  grid-column: 1 / -1;
}
.view-active-btn .block-left-area {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.view-active-btn .list-row {
  font-weight: 400;
  color: #6b7280;
  text-transform: none;
  letter-spacing: 0;
}
.view-active-btn .chip-text {
  width: 100%;
  padding: 16px 0;
  border: none !important;
  border-bottom: 1px solid #d1d5db !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111827 !important;
  font-size: 15px;
  box-shadow: none !important;
  transition: border-color 0.2s ease;
  text-align: center;
}
.view-active-btn .chip-text::placeholder {
  color: #9ca3af;
  opacity: 1;
}
.view-active-btn .chip-text:focus {
  outline: none;
  border-bottom-color: #111827 !important;
}
.view-active-btn textarea.chip-text {
  min-height: 170px;
  resize: vertical;
  text-align: left;
}
.view-active-btn select.chip-text {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111827' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 4px center !important;
  background-size: 12px 8px !important;
  padding-right: 28px;
  cursor: pointer;
}
.view-active-btn .menu-main-link {
  padding: 0 0 18px;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
  text-align: left;
}
.view-active-btn .page-bold-panel {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.view-active-btn .root-visible-tile {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #111827;
}
.view-active-btn .neat-back-holder {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.75;
  cursor: pointer;
}
.view-active-btn .neat-back-holder a {
  color: #111827;
  text-decoration: underline;
  font-weight: 600;
}
.view-active-btn .neat-back-holder a:hover,
.view-active-btn .neat-back-holder a:focus {
  color: #000000;
}
.view-active-btn .tile-stack {
  display: flex;
  justify-content: center;
}
.view-active-btn .navunit {
  min-width: 240px;
  padding: 16px 28px;
  border: 1px solid #111827;
  border-radius: 0 !important;
  background: #111827;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.view-active-btn .navunit:hover,
.view-active-btn .navunit:focus {
  background: #000000;
  border-color: #000000;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.18);
  outline: none;
}
.view-active-btn .navunit:active {
  transform: translate(0, 0);
  box-shadow: none;
}
.view-active-btn .grid-chip {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}
.view-active-btn .wrapperunit {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.6;
}
.view-active-btn .prime-first-wrapper {
  background: #f3f4f6;
  border-left: 3px solid #16a34a;
  color: #166534;
}
.view-active-btn .path-single-card {
  background: #f9fafb;
  border-left: 3px solid #dc2626;
  color: #991b1b;
}
@media (max-width: 767px) {
  .view-active-btn {
    padding: 0 16px !important;
  }
  .view-active-btn .note-section,
  .view-active-btn .boxareaunit {
    padding-left: 18px;
    padding-right: 18px;
  }
  .view-active-btn .edgebox {
    font-size: 28px;
  }
  .view-active-btn .navunit {
    width: 100%;
    min-width: 0;
  }
}

.platebox {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  width: min(420px, calc(100vw - 32px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.platebox *,
.platebox *::before,
.platebox *::after {
  box-sizing: border-box;
}

.platebox.entered {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.platebox.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
}

.subbox {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  border: 1px solid #dbe5df;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.subbox::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #6fbf73 0%, #5d9f7b 50%, #8ac8a3 100%);
}

.box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.mark-icon-wrap {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #eef6f0;
  border: 1px solid #d8e7da;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.mark-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.unitfield {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.areaunit {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf7ee;
  border: 1px solid #d8ebda;
  color: #4d7a56;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spanbox {
  margin: 0;
  color: #29352d;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 600;
}

.interfacebox {
  margin: 0;
  color: #425047;
  font-size: clamp(13px, 0.95vw, 14px);
  line-height: 1.62;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mount {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-items: center;
  text-align: center;
}

.bar-links-label {
  display: block;
  width: 100%;
  text-align: center;
  color: #738177;
  font-size: 12px;
  line-height: 1.4;
}

.notice-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.notice-links-row a {
  display: inline-block;
  color: #4f775d;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(79, 119, 93, 0.34);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.notice-links-row a:hover {
  color: #365342;
  border-bottom-color: #365342;
}

.notice-links-row span {
  color: #738177;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

#barDismiss {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  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, box-shadow 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #2f3a33 0%, #44584a 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(47, 58, 51, 0.16);
}

#barDismiss:hover {
  transform: translateY(-1px);
}

@media (min-width: 760px) {
  .wrapper {
    flex-direction: row;
  }

  #barDismiss {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .platebox {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .subbox {
    padding: 16px;
    border-radius: 18px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .unitfield {
    align-items: center;
    text-align: center;
  }

  .areaunit {
    align-self: center;
  }

  .spanbox {
    text-align: center;
  }

  .interfacebox {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .mount {
    align-items: center;
    text-align: center;
  }

  .notice-links-row {
    justify-content: center;
  }

  .wrapper {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .platebox {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .subbox {
    padding: 14px;
    border-radius: 16px;
  }

  .mark-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .mark-icon {
    width: 30px;
    height: 30px;
  }

  .spanbox {
    font-size: 17px;
  }

  .bar-links-label,
  .notice-links-row a,
  .notice-links-row span,
  #barDismiss {
    font-size: 12px;
  }
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
