:root {

  --site-primary-rgb: 13, 110, 253;
  --site-success-rgb: 25, 135, 84;
  --site-danger-rgb: 220, 53, 69;
  --site-body-font-family: var(--site-font-sans-serif);
  --site-body-font-size: 1rem;
  --site-body-font-weight: 400;
  --site-body-line-height: 1.5;
  --site-body-color: #212529;
  --site-body-color-rgb: 33, 37, 41;
  --site-body-bg: #fff;
  --site-emphasis-color-rgb: 0, 0, 0;
  --site-secondary-color: rgba(33, 37, 41, 0.75);
  --site-heading-color: inherit;
  --site-link-color: #0d6efd;
  --site-link-color-rgb: 13, 110, 253;
  --site-link-hover-color: #0a58ca;
  --site-link-hover-color-rgb: 10, 88, 202;
  --site-border-width: 1px;
  --site-border-color-translucent: rgba(0, 0, 0, 0.175);
  --site-border-radius: 0.375rem;
  --site-border-radius-sm: 0.25rem;
  --site-border-radius-lg: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--site-body-font-family);
  font-size: var(--site-body-font-size);
  font-weight: var(--site-body-font-weight);
  line-height: var(--site-body-line-height);
  color: var(--site-body-color);
  text-align: var(--site-body-text-align);
  background-color: var(--site-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

 h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--site-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

a {
  color: rgba(var(--site-link-color-rgb), var(--site-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --site-link-color-rgb: var(--site-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.container,
.container-fluid {
  --site-gutter-x: 1.5rem;
  --site-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--site-gutter-x) * 0.5);
  padding-left: calc(var(--site-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
   .container {
    max-width: 1320px;
  }
}
:root {
  --site-breakpoint-xs: 0;
  --site-breakpoint-sm: 576px;
  --site-breakpoint-md: 768px;
  --site-breakpoint-lg: 992px;
  --site-breakpoint-xl: 1200px;
  --site-breakpoint-xxl: 1400px;
}

.row {
  --site-gutter-x: 1.5rem;
  --site-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--site-gutter-y));
  margin-right: calc(-0.5 * var(--site-gutter-x));
  margin-left: calc(-0.5 * var(--site-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--site-gutter-x) * 0.5);
  padding-left: calc(var(--site-gutter-x) * 0.5);
  margin-top: var(--site-gutter-y);
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.col-form-label {
  padding-top: calc(0.375rem + var(--site-border-width));
  padding-bottom: calc(0.375rem + var(--site-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--site-border-width));
  padding-bottom: calc(0.5rem + var(--site-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--site-border-width));
  padding-bottom: calc(0.25rem + var(--site-border-width));
  font-size: 0.875rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
 .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.btn {
  --site-btn-padding-x: 0.75rem;
  --site-btn-padding-y: 0.375rem;
  --site-btn-font-family: ;
  --site-btn-font-size: 1rem;
  --site-btn-font-weight: 400;
  --site-btn-line-height: 1.5;
  --site-btn-color: var(--site-body-color);
  --site-btn-bg: transparent;
  --site-btn-border-width: var(--site-border-width);
  --site-btn-border-color: transparent;
  --site-btn-border-radius: var(--site-border-radius);
  --site-btn-hover-border-color: transparent;
  --site-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --site-btn-disabled-opacity: 0.65;
  --site-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--site-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--site-btn-padding-y) var(--site-btn-padding-x);
  font-family: var(--site-btn-font-family);
  font-size: var(--site-btn-font-size);
  font-weight: var(--site-btn-font-weight);
  line-height: var(--site-btn-line-height);
  color: var(--site-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--site-btn-border-width) solid var(--site-btn-border-color);
  border-radius: var(--site-btn-border-radius);
  background-color: var(--site-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--site-btn-hover-color);
  background-color: var(--site-btn-hover-bg);
  border-color: var(--site-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--site-btn-color);
  background-color: var(--site-btn-bg);
  border-color: var(--site-btn-border-color);
}
.btn:focus-visible {
  color: var(--site-btn-hover-color);
  background-color: var(--site-btn-hover-bg);
  border-color: var(--site-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--site-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--site-btn-active-color);
  background-color: var(--site-btn-active-bg);
  border-color: var(--site-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--site-btn-focus-box-shadow);
}
.btn:disabled {
  color: var(--site-btn-disabled-color);
  pointer-events: none;
  background-color: var(--site-btn-disabled-bg);
  border-color: var(--site-btn-disabled-border-color);
  opacity: var(--site-btn-disabled-opacity);
}

.btn-primary {
  --site-btn-color: #fff;
  --site-btn-bg: #0d6efd;
  --site-btn-border-color: #0d6efd;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #0b5ed7;
  --site-btn-hover-border-color: #0a58ca;
  --site-btn-focus-shadow-rgb: 49, 132, 253;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #0a58ca;
  --site-btn-active-border-color: #0a53be;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #0d6efd;
  --site-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --site-btn-color: #fff;
  --site-btn-bg: #6c757d;
  --site-btn-border-color: #6c757d;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #5c636a;
  --site-btn-hover-border-color: #565e64;
  --site-btn-focus-shadow-rgb: 130, 138, 145;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #565e64;
  --site-btn-active-border-color: #51585e;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #6c757d;
  --site-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --site-btn-color: #fff;
  --site-btn-bg: #198754;
  --site-btn-border-color: #198754;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #157347;
  --site-btn-hover-border-color: #146c43;
  --site-btn-focus-shadow-rgb: 60, 153, 110;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #146c43;
  --site-btn-active-border-color: #13653f;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #198754;
  --site-btn-disabled-border-color: #198754;
}

.btn-info {
  --site-btn-color: #000;
  --site-btn-bg: #0dcaf0;
  --site-btn-border-color: #0dcaf0;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #31d2f2;
  --site-btn-hover-border-color: #25cff2;
  --site-btn-focus-shadow-rgb: 11, 172, 204;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #3dd5f3;
  --site-btn-active-border-color: #25cff2;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #0dcaf0;
  --site-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --site-btn-color: #000;
  --site-btn-bg: #ffc107;
  --site-btn-border-color: #ffc107;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #ffca2c;
  --site-btn-hover-border-color: #ffc720;
  --site-btn-focus-shadow-rgb: 217, 164, 6;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #ffcd39;
  --site-btn-active-border-color: #ffc720;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #ffc107;
  --site-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --site-btn-color: #fff;
  --site-btn-bg: #dc3545;
  --site-btn-border-color: #dc3545;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #bb2d3b;
  --site-btn-hover-border-color: #b02a37;
  --site-btn-focus-shadow-rgb: 225, 83, 97;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #b02a37;
  --site-btn-active-border-color: #a52834;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #dc3545;
  --site-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --site-btn-color: #000;
  --site-btn-bg: #f8f9fa;
  --site-btn-border-color: #f8f9fa;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #d3d4d5;
  --site-btn-hover-border-color: #c6c7c8;
  --site-btn-focus-shadow-rgb: 211, 212, 213;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #c6c7c8;
  --site-btn-active-border-color: #babbbc;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #000;
  --site-btn-disabled-bg: #f8f9fa;
  --site-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --site-btn-color: #fff;
  --site-btn-bg: #212529;
  --site-btn-border-color: #212529;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #424649;
  --site-btn-hover-border-color: #373b3e;
  --site-btn-focus-shadow-rgb: 66, 70, 73;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #4d5154;
  --site-btn-active-border-color: #373b3e;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #fff;
  --site-btn-disabled-bg: #212529;
  --site-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --site-btn-color: #0d6efd;
  --site-btn-border-color: #0d6efd;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #0d6efd;
  --site-btn-hover-border-color: #0d6efd;
  --site-btn-focus-shadow-rgb: 13, 110, 253;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #0d6efd;
  --site-btn-active-border-color: #0d6efd;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #0d6efd;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #0d6efd;
  --site-gradient: none;
}

.btn-outline-secondary {
  --site-btn-color: #6c757d;
  --site-btn-border-color: #6c757d;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #6c757d;
  --site-btn-hover-border-color: #6c757d;
  --site-btn-focus-shadow-rgb: 108, 117, 125;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #6c757d;
  --site-btn-active-border-color: #6c757d;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #6c757d;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #6c757d;
  --site-gradient: none;
}

.btn-outline-success {
  --site-btn-color: #198754;
  --site-btn-border-color: #198754;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #198754;
  --site-btn-hover-border-color: #198754;
  --site-btn-focus-shadow-rgb: 25, 135, 84;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #198754;
  --site-btn-active-border-color: #198754;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #198754;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #198754;
  --site-gradient: none;
}

.btn-outline-info {
  --site-btn-color: #0dcaf0;
  --site-btn-border-color: #0dcaf0;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #0dcaf0;
  --site-btn-hover-border-color: #0dcaf0;
  --site-btn-focus-shadow-rgb: 13, 202, 240;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #0dcaf0;
  --site-btn-active-border-color: #0dcaf0;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #0dcaf0;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #0dcaf0;
  --site-gradient: none;
}

.btn-outline-warning {
  --site-btn-color: #ffc107;
  --site-btn-border-color: #ffc107;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #ffc107;
  --site-btn-hover-border-color: #ffc107;
  --site-btn-focus-shadow-rgb: 255, 193, 7;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #ffc107;
  --site-btn-active-border-color: #ffc107;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #ffc107;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #ffc107;
  --site-gradient: none;
}

.btn-outline-danger {
  --site-btn-color: #dc3545;
  --site-btn-border-color: #dc3545;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #dc3545;
  --site-btn-hover-border-color: #dc3545;
  --site-btn-focus-shadow-rgb: 220, 53, 69;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #dc3545;
  --site-btn-active-border-color: #dc3545;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #dc3545;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #dc3545;
  --site-gradient: none;
}

.btn-outline-light {
  --site-btn-color: #f8f9fa;
  --site-btn-border-color: #f8f9fa;
  --site-btn-hover-color: #000;
  --site-btn-hover-bg: #f8f9fa;
  --site-btn-hover-border-color: #f8f9fa;
  --site-btn-focus-shadow-rgb: 248, 249, 250;
  --site-btn-active-color: #000;
  --site-btn-active-bg: #f8f9fa;
  --site-btn-active-border-color: #f8f9fa;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #f8f9fa;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #f8f9fa;
  --site-gradient: none;
}

.btn-outline-dark {
  --site-btn-color: #212529;
  --site-btn-border-color: #212529;
  --site-btn-hover-color: #fff;
  --site-btn-hover-bg: #212529;
  --site-btn-hover-border-color: #212529;
  --site-btn-focus-shadow-rgb: 33, 37, 41;
  --site-btn-active-color: #fff;
  --site-btn-active-bg: #212529;
  --site-btn-active-border-color: #212529;
  --site-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --site-btn-disabled-color: #212529;
  --site-btn-disabled-bg: transparent;
  --site-btn-disabled-border-color: #212529;
  --site-gradient: none;
}

.btn-link {
  --site-btn-font-weight: 400;
  --site-btn-color: var(--site-link-color);
  --site-btn-bg: transparent;
  --site-btn-border-color: transparent;
  --site-btn-hover-color: var(--site-link-hover-color);
  --site-btn-hover-border-color: transparent;
  --site-btn-active-color: var(--site-link-hover-color);
  --site-btn-active-border-color: transparent;
  --site-btn-disabled-color: #6c757d;
  --site-btn-disabled-border-color: transparent;
  --site-btn-box-shadow: 0 0 0 #000;
  --site-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--site-btn-color);
}
.btn-link:hover {
  color: var(--site-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --site-btn-padding-y: 0.5rem;
  --site-btn-padding-x: 1rem;
  --site-btn-font-size: 1.25rem;
  --site-btn-border-radius: var(--site-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --site-btn-padding-y: 0.25rem;
  --site-btn-padding-x: 0.5rem;
  --site-btn-font-size: 0.875rem;
  --site-btn-border-radius: var(--site-border-radius-sm);
}

.collapse:not(.show) {
  display: none;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-group {
  border-radius: var(--site-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--site-border-width));
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--site-border-width));
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:nth-child(n+3),
.btn-group-vertical > :not(.btn-check) + .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --site-nav-link-padding-x: 1rem;
  --site-nav-link-padding-y: 0.5rem;
  --site-nav-link-font-weight: ;
  --site-nav-link-color: var(--site-link-color);
  --site-nav-link-hover-color: var(--site-link-hover-color);
  --site-nav-link-disabled-color: var(--site-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--site-nav-link-padding-y) var(--site-nav-link-padding-x);
  font-size: var(--site-nav-link-font-size);
  font-weight: var(--site-nav-link-font-weight);
  color: var(--site-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--site-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .nav-link:disabled {
  color: var(--site-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.navbar {
  --site-navbar-padding-x: 0;
  --site-navbar-padding-y: 0.5rem;
  --site-navbar-color: rgba(var(--site-emphasis-color-rgb), 0.65);
  --site-navbar-hover-color: rgba(var(--site-emphasis-color-rgb), 0.8);
  --site-navbar-disabled-color: rgba(var(--site-emphasis-color-rgb), 0.3);
  --site-navbar-active-color: rgba(var(--site-emphasis-color-rgb), 1);
  --site-navbar-brand-padding-y: 0.3125rem;
  --site-navbar-brand-margin-end: 1rem;
  --site-navbar-brand-font-size: 1.25rem;
  --site-navbar-brand-color: rgba(var(--site-emphasis-color-rgb), 1);
  --site-navbar-brand-hover-color: rgba(var(--site-emphasis-color-rgb), 1);
  --site-navbar-nav-link-padding-x: 0.5rem;
  --site-navbar-toggler-padding-y: 0.25rem;
  --site-navbar-toggler-padding-x: 0.75rem;
  --site-navbar-toggler-font-size: 1.25rem;
--site-navbar-toggler-border-color: rgba(var(--site-emphasis-color-rgb), 0.15);
  --site-navbar-toggler-border-radius: var(--site-border-radius);
  --site-navbar-toggler-focus-width: 0.25rem;
  --site-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--site-navbar-padding-y) var(--site-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--site-navbar-brand-padding-y);
  padding-bottom: var(--site-navbar-brand-padding-y);
  margin-right: var(--site-navbar-brand-margin-end);
  font-size: var(--site-navbar-brand-font-size);
  color: var(--site-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--site-navbar-brand-hover-color);
}

.navbar-nav {
  --site-nav-link-padding-x: 0;
  --site-nav-link-padding-y: 0.5rem;
  --site-nav-link-font-weight: ;
  --site-nav-link-color: var(--site-navbar-color);
  --site-nav-link-hover-color: var(--site-navbar-hover-color);
  --site-nav-link-disabled-color: var(--site-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--site-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--site-navbar-toggler-padding-y) var(--site-navbar-toggler-padding-x);
  font-size: var(--site-navbar-toggler-font-size);
  line-height: 1;
  color: var(--site-navbar-color);
  background-color: transparent;
  border: var(--site-border-width) solid var(--site-navbar-toggler-border-color);
  border-radius: var(--site-navbar-toggler-border-radius);
  transition: var(--site-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--site-navbar-toggler-focus-width);
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--site-navbar-nav-link-padding-x);
    padding-left: var(--site-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.card {
  --site-card-spacer-y: 1rem;
  --site-card-spacer-x: 1rem;
  --site-card-title-spacer-y: 0.5rem;
  --site-card-title-color: ;
  --site-card-subtitle-color: ;
  --site-card-border-width: var(--site-border-width);
  --site-card-border-color: var(--site-border-color-translucent);
  --site-card-border-radius: var(--site-border-radius);
  --site-card-box-shadow: ;
  --site-card-inner-border-radius: calc(var(--site-border-radius) - (var(--site-border-width)));
  --site-card-cap-padding-y: 0.5rem;
  --site-card-cap-padding-x: 1rem;
  --site-card-cap-bg: rgba(var(--site-body-color-rgb), 0.03);
  --site-card-cap-color: ;
  --site-card-height: ;
  --site-card-color: ;
  --site-card-bg: var(--site-body-bg);
  --site-card-img-overlay-padding: 1rem;
  --site-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--site-card-height);
  color: var(--site-body-color);
  word-wrap: break-word;
  background-color: var(--site-card-bg);
  background-clip: border-box;
  border: var(--site-card-border-width) solid var(--site-card-border-color);
  border-radius: var(--site-card-border-radius);
}

.card-title {
  margin-bottom: var(--site-card-title-spacer-y);
  color: var(--site-card-title-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.alert {
  --site-alert-bg: transparent;
  --site-alert-padding-x: 1rem;
  --site-alert-padding-y: 1rem;
  --site-alert-margin-bottom: 1rem;
  --site-alert-color: inherit;
  --site-alert-border-color: transparent;
  --site-alert-border: var(--site-border-width) solid var(--site-alert-border-color);
  --site-alert-border-radius: var(--site-border-radius);
  --site-alert-link-color: inherit;
  position: relative;
  padding: var(--site-alert-padding-y) var(--site-alert-padding-x);
  margin-bottom: var(--site-alert-margin-bottom);
  color: var(--site-alert-color);
  background-color: var(--site-alert-bg);
  border: var(--site-alert-border);
  border-radius: var(--site-alert-border-radius);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--site-progress-height);
  }
}

.btn-close {
  --site-btn-close-color: #000;
  --site-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --site-btn-close-opacity: 0.5;
  --site-btn-close-hover-opacity: 0.75;
  --site-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --site-btn-close-focus-opacity: 1;
  --site-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--site-btn-close-color);
  background: transparent var(--site-btn-close-bg) center/1em auto no-repeat;
  filter: var(--site-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--site-btn-close-opacity);
}
.btn-close:hover {
  color: var(--site-btn-close-color);
  text-decoration: none;
  opacity: var(--site-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--site-btn-close-focus-shadow);
  opacity: var(--site-btn-close-focus-opacity);
}
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--site-btn-close-disabled-opacity);
}

.btn-close-white {
  --site-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root {
  --site-btn-close-filter: ;
}

:root {
  --site-carousel-indicator-active-bg: #fff;
  --site-carousel-caption-color: #fff;
  --site-carousel-control-icon-filter: ;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) ;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-primary {
  --site-text-opacity: 1;
  color: rgba(var(--site-primary-rgb), var(--site-text-opacity)) !important;
}

.text-success {
  --site-text-opacity: 1;
  color: rgba(var(--site-success-rgb), var(--site-text-opacity)) !important;
}

.text-danger {
  --site-text-opacity: 1;
  color: rgba(var(--site-danger-rgb), var(--site-text-opacity)) !important;
}

.main-menu {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .main-menu .corewrapbox {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .main-menu .corewrapbox img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
    .main-menu .corewrapbox.responsive-iconfont {
      font-size: 3.125rem;
      line-height: 3.125rem; }
  .main-menu .alignbox {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .main-menu .alignbox, .main-menu .alignbox:hover {
      color: inherit;
      text-decoration: none; }
  .main-menu .responsive-iconfont + .alignbox {
    vertical-align: -1px; }
  .main-menu.navbar-fixed-top {
    position: fixed; }
  .main-menu .navbar-brand span {
    vertical-align: -4px; }

.nav-dropdown {
  font-size: 0.75rem;
  font-weight: 500;
  height: auto !important; }
  .nav-dropdown .link {
    margin: .667em 1.667em;
    font-weight: 500;
    padding: 0;
    transition: color .2s ease-in-out; }
  .nav-dropdown .link::after {
    color: inherit; }
  .nav-dropdown .btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem; }

@font-face {
  font-family: 'Socicon';
  src: url('fonts/glyphs2.woff2') format('woff2'), url('fonts/glyphs2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

section {
  background-color: #ffffff;
}

html, body {
  overflow-x: hidden;
}

body {
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  color: #232323;
  position: relative;
}

button {
  background-color: transparent;
  border-color: transparent;
}

section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}

a.responsive-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,
.section-tag,
.sub-heading,
.tagline-h {
  line-height: 1.3;
}

.domwrap {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.display-1,
.display-2,
.display-4,
.display-5,
.rowsegment,
span,
p,
a {
  line-height: 1;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}

b,
strong {
  font-weight: bold;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  transition-delay: 9999s;
  transition-property: background-color, color;
}

textarea[type=hidden] {
  display: none;
}

section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hidden {
  visibility: hidden;
}

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-box {
  width: 100%;
}.block-action,
.cta-link,
.lead-btn,
.page-btn,
.primary-cta,
.section-action {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  font-size: 0;
}

.btn {
  font-weight: 600;
  border-width: 1px;
  font-style: normal;
  margin: 0.6rem 0.6rem;
  white-space: normal;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}

.btn-sm {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-md {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-lg {
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
}

.btn-form {
  margin: 0;
}
.btn-form:hover {
  cursor: pointer;
}nav .block-action,
nav .cta-link,
nav .lead-btn,
nav .page-btn,
nav .primary-cta,
nav .section-action {
  margin-left: 0rem;
  margin-right: 0rem;
}

.btn .responsive-iconfont,
.btn.btn-sm .responsive-iconfont {
  order: 1;
  cursor: pointer;
  margin-left: 0.5rem;
  vertical-align: sub;
}

.btn.btn-md .responsive-iconfont,
.btn.btn-md .responsive-iconfont {
  margin-left: 0.8rem;
}

.layoutgrid .navwrap {
  min-height: 100vh;
}

.layoutgrid {
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@keyframes arrowdown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes gradient-animation {
  from {
    background-position: 0% 100%;
    animation-timing-function: ease-in-out;
  }
  to {
    background-position: 100% 0%;
    animation-timing-function: ease-in-out;
  }
}

.menu .navbar-brand {
  display: flex;
}
.menu .navbar-brand span {
  display: flex;
  display: flex;
}
.menu .navbar-brand .navbar-brand {
  display: flex;
}
.menu .navbar-brand .corewrapbox img {
  display: flex;
  width: auto;
}
@media (max-width: 991px) {
  .menu .navbar-collapse {
    max-height: 93.5vh;
  }
  .menu .navbar-collapse.show {
    overflow: auto;
  }
}
@media (min-width: 992px) {
  .menu .navbar-nav.nav-dropdown {
    display: flex;
  }
}
@media (max-width: 767px) {
  .menu .navbar-collapse {
    max-height: 80vh;
  }
}

.nav-link .responsive-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;
}

html,
body {
  height: auto;
  min-height: 100vh;
}

.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
  text-align: center;
}

.row > * {
  padding-right: 1rem;
  padding-left: 1rem;
}

form .row {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
form .row [class*=col] {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}form .block-action,
form .cta-link,
form .lead-btn,
form .page-btn,
form .primary-cta,
form .section-action {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .btn {
  min-height: 48px;
}

.navwrap {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

ul,
ol {
  margin-bottom: 2.3125rem;
}

.container,
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > [class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 992px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.item {
  position: relative;
}
@font-face {
  font-family: 'interaction2';
  font-display: swap;
  src: url('fonts/resolution2.woff2') format('woff2'), url('fonts/resolution2.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="gesture-"], [class*=" gesture-"] {
  
  font-family: 'interaction2' !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;
}
.gesture-zoom-arrow-next:before {
  content: "\e909";
}
.gesture-zoom-letter:before {
  content: "\e945";
}
.gesture-zoom-paper-plane:before {
  content: "\e959";
}
.gesture-zoom-phone:before {
  content: "\e95b";
}

.btn {
  border: none !important;
}
body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 500;
}
.display-1 > .responsive-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 3.4rem;
  line-height: 1.1;
  font-weight: 600;
}
.display-2 > .responsive-iconfont {
  font-size: 4.25rem;
}
.display-4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 500;
}
.display-4 > .responsive-iconfont {
  font-size: 1.1875rem;
}
.display-5 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 500;
}
.display-5 > .responsive-iconfont {
  font-size: 2.5rem;
}
.rowsegment {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.rowsegment > .responsive-iconfont {
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .rowsegment {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.2 * (2.4rem + (5 - 2.4) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.25 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.25 * (1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62))));
  }
  .rowsegment {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.5 * (1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62))));
  }
}

.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.btn-primary,
.btn-primary:active {
  background-color: #2cc354 !important;
  border-color: #2cc354 !important;
  color: #000000 !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  color: inherit;
  background-color: #4cd670 !important;
  border-color: #4cd670 !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #000000 !important;
  background-color: #4cd670 !important;
  border-color: #4cd670 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #51cf72 !important;
  border-color: #51cf72 !important;
  color: #000000 !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
  color: inherit;
  background-color: #79da92 !important;
  border-color: #79da92 !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #79da92 !important;
  border-color: #79da92 !important;
}
.btn-info,
.btn-info:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}

.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-success,
.btn-success:active {
  background-color: #00bf32 !important;
  border-color: #00bf32 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.active {
  color: inherit;
  background-color: #00f23f !important;
  border-color: #00f23f !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #ffffff !important;
  background-color: #00f23f !important;
  border-color: #00f23f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active {
  color: inherit;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #666666 !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #666666 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #666666 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-white:disabled {
  color: #666666 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #333336 !important;
  border-color: #333336 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.active {
  color: inherit;
  background-color: #4c4c50 !important;
  border-color: #4c4c50 !important;
  box-shadow: none;
}

.btn-black:disabled {
  color: #ffffff !important;
  background-color: #4c4c50 !important;
  border-color: #4c4c50 !important;
}
.btn-primary-outline {
  padding: 0 !important;
}
.btn-primary-outline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #2cc354;
  transition: all .3s ease;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2cc354;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.active {
  color: #1c7c36 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline:hover::before,
.btn-primary-outline:focus::before,
.btn-primary-outline.active::before {
  width: 100%;
  background-color: #1c7c36;
}

.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2cc354 !important;
  border-color: #2cc354 !important;
}
.btn-secondary-outline {
  padding: 0 !important;
}
.btn-secondary-outline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #51cf72;
  transition: all .3s ease;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #51cf72;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.active {
  color: #2c9e49 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline:hover::before,
.btn-secondary-outline:focus::before,
.btn-secondary-outline.active::before {
  width: 100%;
  background-color: #2c9e49;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #51cf72 !important;
  border-color: #51cf72 !important;
}
.btn-info-outline {
  padding: 0 !important;
}
.btn-info-outline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #232323;
  transition: all .3s ease;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline:hover::before,
.btn-info-outline:focus::before,
.btn-info-outline.active::before {
  width: 100%;
  background-color: #000000;
}

.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-success-outline {
  padding: 0 !important;
}
.btn-success-outline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00bf32;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.active {
  color: #00681b !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline:hover::before,
.btn-success-outline:focus::before,
.btn-success-outline.active::before {
  width: 100%;
  background-color: #00681b;
}

.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #00bf32 !important;
  border-color: #00bf32 !important;
}
.btn-warning-outline {
  padding: 0 !important;
}
.btn-warning-outline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #000000;
  transition: all .3s ease;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline:hover::before,
.btn-warning-outline:focus::before,
.btn-warning-outline.active::before {
  width: 100%;
  background-color: #000000;
}

.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger-outline {
  padding: 0 !important;
}
.btn-danger-outline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #ffffff;
  transition: all .3s ease;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline:hover::before,
.btn-danger-outline:focus::before,
.btn-danger-outline.active::before {
  width: 100%;
  background-color: #d4d4d4;
}

.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline {
  padding: 0 !important;
}
.btn-black-outline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #333336;
  transition: all .3s ease;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #333336;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.active {
  color: #090909 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline:hover::before,
.btn-black-outline:focus::before,
.btn-black-outline.active::before {
  width: 100%;
  background-color: #090909;
}

.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333336 !important;
  border-color: #333336 !important;
}
.btn-white-outline {
  padding: 0 !important;
}
.btn-white-outline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #ffffff;
  transition: all .3s ease;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline:hover::before,
.btn-white-outline:focus::before,
.btn-white-outline.active::before {
  width: 100%;
  background-color: #d4d4d4;
}

.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #2cc354 !important;
}
.text-success {
  color: #00bf32 !important;
}
.text-danger {
  color: #ffffff !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #197030 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #005917 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}.block-action .btn:not(.btn-form),
.cta-link .btn:not(.btn-form),
.lead-btn .btn:not(.btn-form),
.page-btn .btn:not(.btn-form),
.primary-cta .btn:not(.btn-form),
.section-action .btn:not(.btn-form) {
  border-radius: 100px;
}
a,
a:hover {
  color: #2cc354;
}

body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}.block-action .btn,
.cta-link .btn,
.lead-btn .btn,
.page-btn .btn,
.primary-cta .btn,
.section-action .btn {
  position: relative;
  padding: 10px 16px;
  border-radius: 8px !important;
  font-weight: 500;
}.block-action .btn-white-outline,
.cta-link .btn-white-outline,
.lead-btn .btn-white-outline,
.page-btn .btn-white-outline,
.primary-cta .btn-white-outline,
.section-action .btn-white-outline {
  color: #ffffff !important;
}.block-action .btn-white-outline::before,
.cta-link .btn-white-outline::before,
.lead-btn .btn-white-outline::before,
.page-btn .btn-white-outline::before,
.primary-cta .btn-white-outline::before,
.section-action .btn-white-outline::before {
  background-color: #2cc354;
}.block-action .btn-white-outline:hover,
.cta-link .btn-white-outline:hover,
.lead-btn .btn-white-outline:hover,
.page-btn .btn-white-outline:hover,
.primary-cta .btn-white-outline:hover,
.section-action .btn-white-outline:hover,
.block-action .btn-white-outline:focus,
.cta-link .btn-white-outline:focus,
.lead-btn .btn-white-outline:focus,
.page-btn .btn-white-outline:focus,
.primary-cta .btn-white-outline:focus,
.section-action .btn-white-outline:focus,
.block-action .btn-white-outline.active,
.cta-link .btn-white-outline.active,
.lead-btn .btn-white-outline.active,
.page-btn .btn-white-outline.active,
.primary-cta .btn-white-outline.active,
.section-action .btn-white-outline.active {
  color: #2cc354 !important;
}.block-action .btn-white-outline:hover::before,
.cta-link .btn-white-outline:hover::before,
.lead-btn .btn-white-outline:hover::before,
.page-btn .btn-white-outline:hover::before,
.primary-cta .btn-white-outline:hover::before,
.section-action .btn-white-outline:hover::before,
.block-action .btn-white-outline:focus::before,
.cta-link .btn-white-outline:focus::before,
.lead-btn .btn-white-outline:focus::before,
.page-btn .btn-white-outline:focus::before,
.primary-cta .btn-white-outline:focus::before,
.section-action .btn-white-outline:focus::before,
.block-action .btn-white-outline.active::before,
.cta-link .btn-white-outline.active::before,
.lead-btn .btn-white-outline.active::before,
.page-btn .btn-white-outline.active::before,
.primary-cta .btn-white-outline.active::before,
.section-action .btn-white-outline.active::before {
  background-color: #2cc354;
}.block-action .btn-black-outline,
.cta-link .btn-black-outline,
.lead-btn .btn-black-outline,
.page-btn .btn-black-outline,
.primary-cta .btn-black-outline,
.section-action .btn-black-outline {
  color: #333336 !important;
}.block-action .btn-black-outline::before,
.cta-link .btn-black-outline::before,
.lead-btn .btn-black-outline::before,
.page-btn .btn-black-outline::before,
.primary-cta .btn-black-outline::before,
.section-action .btn-black-outline::before {
  background-color: #2cc354;
}.block-action .btn-black-outline:hover,
.cta-link .btn-black-outline:hover,
.lead-btn .btn-black-outline:hover,
.page-btn .btn-black-outline:hover,
.primary-cta .btn-black-outline:hover,
.section-action .btn-black-outline:hover,
.block-action .btn-black-outline:focus,
.cta-link .btn-black-outline:focus,
.lead-btn .btn-black-outline:focus,
.page-btn .btn-black-outline:focus,
.primary-cta .btn-black-outline:focus,
.section-action .btn-black-outline:focus,
.block-action .btn-black-outline.active,
.cta-link .btn-black-outline.active,
.lead-btn .btn-black-outline.active,
.page-btn .btn-black-outline.active,
.primary-cta .btn-black-outline.active,
.section-action .btn-black-outline.active {
  color: #2cc354 !important;
}.block-action .btn-black-outline:hover::before,
.cta-link .btn-black-outline:hover::before,
.lead-btn .btn-black-outline:hover::before,
.page-btn .btn-black-outline:hover::before,
.primary-cta .btn-black-outline:hover::before,
.section-action .btn-black-outline:hover::before,
.block-action .btn-black-outline:focus::before,
.cta-link .btn-black-outline:focus::before,
.lead-btn .btn-black-outline:focus::before,
.page-btn .btn-black-outline:focus::before,
.primary-cta .btn-black-outline:focus::before,
.section-action .btn-black-outline:focus::before,
.block-action .btn-black-outline.active::before,
.cta-link .btn-black-outline.active::before,
.lead-btn .btn-black-outline.active::before,
.page-btn .btn-black-outline.active::before,
.primary-cta .btn-black-outline.active::before,
.section-action .btn-black-outline.active::before {
  background-color: #2cc354;
}.block-action .btn-white,
.cta-link .btn-white,
.lead-btn .btn-white,
.page-btn .btn-white,
.primary-cta .btn-white,
.section-action .btn-white {
  background-color: #ffffff !important;
  color: #333336 !important;
}.block-action .btn-white:hover,
.cta-link .btn-white:hover,
.lead-btn .btn-white:hover,
.page-btn .btn-white:hover,
.primary-cta .btn-white:hover,
.section-action .btn-white:hover,
.block-action .btn-white:focus,
.cta-link .btn-white:focus,
.lead-btn .btn-white:focus,
.page-btn .btn-white:focus,
.primary-cta .btn-white:focus,
.section-action .btn-white:focus,
.block-action .btn-white.active,
.cta-link .btn-white.active,
.lead-btn .btn-white.active,
.page-btn .btn-white.active,
.primary-cta .btn-white.active,
.section-action .btn-white.active {
  background-color: #2cc354 !important;
  color: #000000 !important;
}.block-action .btn-black,
.cta-link .btn-black,
.lead-btn .btn-black,
.page-btn .btn-black,
.primary-cta .btn-black,
.section-action .btn-black {
  background-color: #333336 !important;
  color: #ffffff !important;
}.block-action .btn-black:hover,
.cta-link .btn-black:hover,
.lead-btn .btn-black:hover,
.page-btn .btn-black:hover,
.primary-cta .btn-black:hover,
.section-action .btn-black:hover,
.block-action .btn-black:focus,
.cta-link .btn-black:focus,
.lead-btn .btn-black:focus,
.page-btn .btn-black:focus,
.primary-cta .btn-black:focus,
.section-action .btn-black:focus,
.block-action .btn-black.active,
.cta-link .btn-black.active,
.lead-btn .btn-black.active,
.page-btn .btn-black.active,
.primary-cta .btn-black.active,
.section-action .btn-black.active {
  background-color: #2cc354 !important;
  color: #000000 !important;
}
img,
.card-wrap,
.card-wrapper,
.card,
.item-wrapper {
  border-radius: 2rem !important;
}
.innerpad {
  border-radius: 100px !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.domcell {
  z-index: 1000;
  width: 100%;
}
.domcell nav.navbar {
  position: fixed;
}
.domcell .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.domcell .nav-link {
  position: relative;
}
.domcell .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .domcell .container {
    flex-wrap: nowrap;
  }
}
.domcell .nav-item:focus,
.domcell .nav-link:focus {
  outline: none;
}
.domcell .navbar {
  min-height: 60px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.domcell .navbar .corewrapbox {
  margin-right: 1rem;
}
.domcell .navbar .corewrapbox img {
  width: auto;
}
.domcell .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.domcell .navbar .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .domcell .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domcell .navbar .corewrapbox img {
    height: 3rem !important;
  }
  .domcell .navbar ul.navbar-nav li {
    margin: auto;
  }
  .domcell .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .domcell .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domcell .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.domcell .navbar-brand .alignbox {
  line-height: inherit !important;
  font-weight: 400;
}
.domcell .navbar-brand .alignbox:hover,
.domcell .navbar-brand .alignbox:focus {
  color: #ffffff !important;
}
.domcell .navbar-brand .corewrapbox a {
  outline: none;
}
.domcell .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domcell ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .domcell ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.domcell .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .domcell .navbar-buttons {
    text-align: left;
  }
}
.domcell .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 32px;
  clip-path: none;
}
@media (max-width: 575px) {
  .domcell .navbar-buttons .btn {
    width: auto !important;
  }
}
.domcell button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.domcell .main-menu {
  padding: 0 1rem;
  position: fixed;
}
.domcell a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domcell .navbar {
    height: 60px;
  }
  .domcell .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.domcell .nav-item {
  padding: 0;
  margin: 0;
}
.domcell .nav-item .nav-link {
  padding: 6px 20px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.domcell .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.domcell .nav-item .nav-link:hover,
.domcell .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.domcell .nav-item .nav-link:hover::after,
.domcell .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.domcell .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .domcell .navbar {
    justify-content: flex-start !important;
  }
  .domcell .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .domcell .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .domcell .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .domcell .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .domcell .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.domcell .pinbox {
  min-height: 60px;
}
.domcell .navbar.main-menu {
  border-bottom: 1px solid #2cc354 !important;
}
.hold {
  align-items: flex-start;
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("images/low1.jpg");
}.hold .drawbox .block-title,
.hold .drawbox .chapter-title,
.hold .drawbox .header-text,
.hold .drawbox .lead-h2,
.hold .drawbox .main-heading,
.hold .drawbox .page-h,
.hold .drawbox .section-h,
.hold .drawbox .section-heading,
.hold .drawbox .topic-title {
  margin-bottom: 24px;
}
.hold .drawbox .domlayer {
  margin-bottom: 24px;
}
.hold .drawbox .domlayer .nodemap {
  display: inline-flex;
  gap: 16px;
}
.hold .drawbox .domlayer .nodemap .mainsegment {
  display: inline-flex;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 6px solid #2cc354;
  border-radius: 100%;
}
.hold .drawbox .domlayer .nodemap .sectionunit {
  margin-bottom: 0;
}
.hold .drawbox .text-wrapper .domwrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .hold .drawbox .text-wrapper .domwrap {
    width: 100%;
  }
}.hold .drawbox .block-action,
.hold .drawbox .cta-link,
.hold .drawbox .lead-btn,
.hold .drawbox .page-btn,
.hold .drawbox .primary-cta,
.hold .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}.hold .drawbox .block-subtitle,
.hold .drawbox .h-secondary,
.hold .drawbox .section-tag,
.hold .drawbox .sub-heading,
.hold .drawbox .tagline-h {
  margin-top: 24px;
  margin-bottom: 0;
}.hold .block-title,
.hold .chapter-title,
.hold .header-text,
.hold .lead-h2,
.hold .main-heading,
.hold .page-h,
.hold .section-h,
.hold .section-heading,
.hold .topic-title {
  color: #f6f6f6;
}.hold .block-subtitle,
.hold .h-secondary,
.hold .section-tag,
.hold .sub-heading,
.hold .tagline-h {
  color: #ffffff;
}
.hold .sectionunit {
  color: #ffffff;
}
.hold .domwrap {
  color: #ffffff;
}.hold .block-subtitle,
.hold .h-secondary,
.hold .section-tag,
.hold .sub-heading,
.hold .tagline-h,
.hold .block-action,
.hold .cta-link,
.hold .lead-btn,
.hold .page-btn,
.hold .primary-cta,
.hold .section-action {
  text-align: right;
  color: #f6f6f6;
}
@media (max-width: 992px) {.hold .block-subtitle,
.hold .h-secondary,
.hold .section-tag,
.hold .sub-heading,
.hold .tagline-h,
.hold .block-action,
.hold .cta-link,
.hold .lead-btn,
.hold .page-btn,
.hold .primary-cta,
.hold .section-action {
    text-align: left;
  }
}
.unitfield {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.unitfield .stackunit {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .unitfield .stackunit {
    margin-bottom: 40px;
  }
}
.unitfield .stackunit .domlayer .sectionunit {
  display: inline-flex;
  margin-bottom: 24px;
}.unitfield .stackunit .zone .block-title,
.unitfield .stackunit .zone .chapter-title,
.unitfield .stackunit .zone .header-text,
.unitfield .stackunit .zone .lead-h2,
.unitfield .stackunit .zone .main-heading,
.unitfield .stackunit .zone .page-h,
.unitfield .stackunit .zone .section-h,
.unitfield .stackunit .zone .section-heading,
.unitfield .stackunit .zone .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {.unitfield .stackunit .zone .block-title,
.unitfield .stackunit .zone .chapter-title,
.unitfield .stackunit .zone .header-text,
.unitfield .stackunit .zone .lead-h2,
.unitfield .stackunit .zone .main-heading,
.unitfield .stackunit .zone .page-h,
.unitfield .stackunit .zone .section-h,
.unitfield .stackunit .zone .section-heading,
.unitfield .stackunit .zone .topic-title {
    width: 80%;
  }
}
@media (max-width: 992px) {.unitfield .stackunit .zone .block-title,
.unitfield .stackunit .zone .chapter-title,
.unitfield .stackunit .zone .header-text,
.unitfield .stackunit .zone .lead-h2,
.unitfield .stackunit .zone .main-heading,
.unitfield .stackunit .zone .page-h,
.unitfield .stackunit .zone .section-h,
.unitfield .stackunit .zone .section-heading,
.unitfield .stackunit .zone .topic-title {
    width: 100%;
  }
}
.unitfield .pinbox {
  margin: 0 -10px;
}
.unitfield .pinbox .card {
  padding: 0 10px;
}
.unitfield .domcore {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .unitfield .domcore {
    grid-template-columns: 1fr;
  }
}
.unitfield .domcore .item:hover .item-wrapper .item-title,
.unitfield .domcore .item:focus .item-wrapper .item-title {
  color: #00bf32;
}
.unitfield .domcore .item .item-wrapper {
  height: 100%;
  padding: 30px;
  background-color: #0f0f0f;
  border: 1px solid #00bf32;
  box-shadow: 0 10px 20px -8px #009427;
}
@media (max-width: 992px) {
  .unitfield .domcore .item .item-wrapper {
    padding: 30px 20px;
  }
}
.unitfield .domcore .item .item-wrapper .item-title {
  transition: all .3s ease;
  margin-bottom: 16px;
}
.unitfield .domcore .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.unitfield .card-wrapper {
  padding: 30px;
  background-color: #171719;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 992px) {
  .unitfield .card-wrapper {
    padding: 30px 20px;
    margin-top: 20px;
  }
}
.unitfield .card-wrapper .desc-wrapper {
  margin-bottom: 20px;
}
.unitfield .card-wrapper .desc-wrapper .viewnode {
  margin-bottom: 0;
}
.unitfield .card-wrapper .formcore {
  min-height: 290px;
  height: 100%;
  position: relative;
}
@media (max-width: 992px) {
  .unitfield .card-wrapper .formcore {
    min-height: auto;
    height: 300px;
  }
}
.unitfield .card-wrapper .formcore img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.unitfield .sectionunit,
.unitfield .domlayer {
  color: #171719;
  text-align: center;
}.unitfield .block-title,
.unitfield .chapter-title,
.unitfield .header-text,
.unitfield .lead-h2,
.unitfield .main-heading,
.unitfield .page-h,
.unitfield .section-h,
.unitfield .section-heading,
.unitfield .topic-title,
.unitfield .zone {
  color: #ffffff;
  text-align: center;
}
.unitfield .viewnode {
  color: #ffffff;
}
.unitfield .item-title {
  color: #171719;
}
.unitfield .item-text {
  color: #ffffff;
}
.unitfield .item-title {
  color: #ffffff;
}
.unitfield .viewnode {
  color: #00bf32;
}
.tilebox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.tilebox .domcore {
  margin: 0 -20px;
}
.tilebox .domcore .card {
  padding: 0 20px;
  justify-content: space-between;
}
.tilebox .drawbox {
  padding: 0 36px;
}
@media (max-width: 992px) {
  .tilebox .drawbox {
    padding: 0 24px;
  }
}
.tilebox .domlayer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding: 10px 0;
}
.tilebox .domlayer .docklayer {
  width: 9px;
  min-width: 9px;
  height: 9px;
  background-color: #00bf32;
  border-radius: 100%;
}
.tilebox .domlayer .sectionunit {
  margin-bottom: 0;
  white-space: nowrap;
}
.tilebox .domlayer .piece {
  width: 100%;
  border-top: 10px groove #00bf32;
}
@media (max-width: 992px) {
  .tilebox .stackunit {
    margin-bottom: 40px;
  }
}.tilebox .stackunit .block-title,
.tilebox .stackunit .chapter-title,
.tilebox .stackunit .header-text,
.tilebox .stackunit .lead-h2,
.tilebox .stackunit .main-heading,
.tilebox .stackunit .page-h,
.tilebox .stackunit .section-h,
.tilebox .stackunit .section-heading,
.tilebox .stackunit .topic-title {
  margin-bottom: 24px;
}
.tilebox .stackunit .text-wrapper .domwrap {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tilebox .stackunit .text-wrapper .domwrap {
    width: 100%;
  }
}.tilebox .stackunit .block-action,
.tilebox .stackunit .cta-link,
.tilebox .stackunit .lead-btn,
.tilebox .stackunit .page-btn,
.tilebox .stackunit .primary-cta,
.tilebox .stackunit .section-action {
  margin-top: 30px;
  width: 100%;
  margin-bottom: -9.6px;
}.tilebox .stackunit .block-action .btn,
.tilebox .stackunit .cta-link .btn,
.tilebox .stackunit .lead-btn .btn,
.tilebox .stackunit .page-btn .btn,
.tilebox .stackunit .primary-cta .btn,
.tilebox .stackunit .section-action .btn {
  width: 100%;
}
.tilebox .item {
  padding: 16px;
  background-color: #0f0f0f;
}
@media (max-width: 992px) {
  .tilebox .item {
    padding: 24px;
  }
}
.tilebox .item .formcore img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .tilebox .item .formcore img {
    height: 300px;
  }
}
.tilebox .btn-wrapper {
  margin-top: -2rem;
}
.tilebox .sectionunit {
  color: #00bf32;
}.tilebox .block-title,
.tilebox .chapter-title,
.tilebox .header-text,
.tilebox .lead-h2,
.tilebox .main-heading,
.tilebox .page-h,
.tilebox .section-h,
.tilebox .section-heading,
.tilebox .topic-title {
  color: #ffffff;
}
.tilebox .domwrap {
  color: #f0e7da;
}
.tilebox .domwrap,
.tilebox .text-wrapper {
  color: #f6f6f6;
}
.contentgrid {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f0f0f;
}
@media (max-width: 992px) {
  .contentgrid .pinbox {
    margin-bottom: 32px;
  }
}.contentgrid .pinbox .block-title,
.contentgrid .pinbox .chapter-title,
.contentgrid .pinbox .header-text,
.contentgrid .pinbox .lead-h2,
.contentgrid .pinbox .main-heading,
.contentgrid .pinbox .page-h,
.contentgrid .pinbox .section-h,
.contentgrid .pinbox .section-heading,
.contentgrid .pinbox .topic-title {
  margin-bottom: 0;
}.contentgrid .pinbox .block-action,
.contentgrid .pinbox .cta-link,
.contentgrid .pinbox .lead-btn,
.contentgrid .pinbox .page-btn,
.contentgrid .pinbox .primary-cta,
.contentgrid .pinbox .section-action {
  margin-top: 14px;
}.contentgrid .pinbox .block-action .btn,
.contentgrid .pinbox .cta-link .btn,
.contentgrid .pinbox .lead-btn .btn,
.contentgrid .pinbox .page-btn .btn,
.contentgrid .pinbox .primary-cta .btn,
.contentgrid .pinbox .section-action .btn {
  margin-bottom: 0;
}
.contentgrid .text-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contentgrid .text-wrapper .domwrap {
  display: inline-block;
  margin-bottom: 0;
}
.contentgrid .text-wrapper .list-wrapper {
  margin-top: 24px;
}
.contentgrid .text-wrapper .list-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contentgrid .text-wrapper .list-wrapper .list .item-wrap {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #00bf32;
}.contentgrid .block-title,
.contentgrid .chapter-title,
.contentgrid .header-text,
.contentgrid .lead-h2,
.contentgrid .main-heading,
.contentgrid .page-h,
.contentgrid .section-h,
.contentgrid .section-heading,
.contentgrid .topic-title {
  color: #000000;
}
.contentgrid .domwrap,
.contentgrid .text-wrapper {
  color: #4f4f4f;
}
.contentgrid .list {
  color: #000000;
}
.contentgrid .domwrap {
  color: #ffffff;
}.contentgrid .block-title,
.contentgrid .chapter-title,
.contentgrid .header-text,
.contentgrid .lead-h2,
.contentgrid .main-heading,
.contentgrid .page-h,
.contentgrid .section-h,
.contentgrid .section-heading,
.contentgrid .topic-title,
.contentgrid .block-action,
.contentgrid .cta-link,
.contentgrid .lead-btn,
.contentgrid .page-btn,
.contentgrid .primary-cta,
.contentgrid .section-action {
  color: #ffffff;
  text-align: center;
}
.contentgrid .list,
.contentgrid .item-wrap,
.contentgrid .list-wrapper {
  text-align: left;
}
.content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.content .card-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #0f0f0f;
  padding: 32px;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .content .card-wrapper {
    display: block;
    padding: 18px;
  }
}
.content .card-wrapper .innerwrapunit {
  position: absolute;
  left: -150px;
  bottom: -400px;
  width: 500px;
  height: 500px;
  background-image: linear-gradient(-90deg, #00bf32, #51cf72 70%);
  border-radius: 100%;
  filter: blur(6rem);
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .content .card-wrapper .innerwrapunit {
    width: 400px;
    height: 400px;
  }
}
.content .card-wrapper .card {
  justify-content: center;
}
.content .card-wrapper .drawbox {
  position: relative;
  z-index: 1;
  width: 49%;
  padding: 0 32px;
}
@media (max-width: 992px) {
  .content .card-wrapper .drawbox {
    padding: 0;
    width: 100%;
    margin-bottom: 22px;
  }
}
.content .card-wrapper .drawbox .domlayer {
  margin-bottom: 22px;
}
.content .card-wrapper .drawbox .domlayer .sectionunit {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #00bf32, #51cf72 50%, #ffffff);
}.content .card-wrapper .drawbox .block-title,
.content .card-wrapper .drawbox .chapter-title,
.content .card-wrapper .drawbox .header-text,
.content .card-wrapper .drawbox .lead-h2,
.content .card-wrapper .drawbox .main-heading,
.content .card-wrapper .drawbox .page-h,
.content .card-wrapper .drawbox .section-h,
.content .card-wrapper .drawbox .section-heading,
.content .card-wrapper .drawbox .topic-title {
  margin-bottom: 22px;
}
.content .card-wrapper .drawbox .domwrap {
  margin-bottom: 0;
}.content .card-wrapper .drawbox .block-action,
.content .card-wrapper .drawbox .cta-link,
.content .card-wrapper .drawbox .lead-btn,
.content .card-wrapper .drawbox .page-btn,
.content .card-wrapper .drawbox .primary-cta,
.content .card-wrapper .drawbox .section-action {
  margin-top: 48px;
}
@media (max-width: 992px) {.content .card-wrapper .drawbox .block-action,
.content .card-wrapper .drawbox .cta-link,
.content .card-wrapper .drawbox .lead-btn,
.content .card-wrapper .drawbox .page-btn,
.content .card-wrapper .drawbox .primary-cta,
.content .card-wrapper .drawbox .section-action {
    margin-top: 22px;
  }
}.content .card-wrapper .drawbox .block-action .btn,
.content .card-wrapper .drawbox .cta-link .btn,
.content .card-wrapper .drawbox .lead-btn .btn,
.content .card-wrapper .drawbox .page-btn .btn,
.content .card-wrapper .drawbox .primary-cta .btn,
.content .card-wrapper .drawbox .section-action .btn {
  margin-bottom: 0;
}
.content .card-wrapper .formcore {
  position: relative;
  z-index: 1;
  width: 48%;
}
@media (max-width: 992px) {
  .content .card-wrapper .formcore {
    width: 100%;
  }
}
.content .card-wrapper .formcore img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .content .card-wrapper .formcore img {
    height: 300px;
  }
}
.content .sectionunit,
.content .domlayer {
  color: #1a0b54;
}.content .block-title,
.content .chapter-title,
.content .header-text,
.content .lead-h2,
.content .main-heading,
.content .page-h,
.content .section-h,
.content .section-heading,
.content .topic-title {
  color: #1a0b54;
}
.content .domwrap {
  color: #ffffff;
}.content .block-title,
.content .chapter-title,
.content .header-text,
.content .lead-h2,
.content .main-heading,
.content .page-h,
.content .section-h,
.content .section-heading,
.content .topic-title,
.content .block-action,
.content .cta-link,
.content .lead-btn,
.content .page-btn,
.content .primary-cta,
.content .section-action {
  color: #ffffff;
}
.coverwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f0f0f;
}
@media (max-width: 992px) {
  .coverwrap .pinbox {
    margin-bottom: 32px;
  }
}.coverwrap .pinbox .block-title,
.coverwrap .pinbox .chapter-title,
.coverwrap .pinbox .header-text,
.coverwrap .pinbox .lead-h2,
.coverwrap .pinbox .main-heading,
.coverwrap .pinbox .page-h,
.coverwrap .pinbox .section-h,
.coverwrap .pinbox .section-heading,
.coverwrap .pinbox .topic-title {
  margin-bottom: 0;
}.coverwrap .pinbox .block-action,
.coverwrap .pinbox .cta-link,
.coverwrap .pinbox .lead-btn,
.coverwrap .pinbox .page-btn,
.coverwrap .pinbox .primary-cta,
.coverwrap .pinbox .section-action {
  margin-top: 14px;
}.coverwrap .pinbox .block-action .btn,
.coverwrap .pinbox .cta-link .btn,
.coverwrap .pinbox .lead-btn .btn,
.coverwrap .pinbox .page-btn .btn,
.coverwrap .pinbox .primary-cta .btn,
.coverwrap .pinbox .section-action .btn {
  margin-bottom: 0;
}
.coverwrap .text-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.coverwrap .text-wrapper .domwrap {
  display: inline-block;
  margin-bottom: 0;
}
.coverwrap .text-wrapper .list-wrapper {
  margin-top: 24px;
}
.coverwrap .text-wrapper .list-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.coverwrap .text-wrapper .list-wrapper .list .item-wrap {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #00bf32;
}.coverwrap .block-title,
.coverwrap .chapter-title,
.coverwrap .header-text,
.coverwrap .lead-h2,
.coverwrap .main-heading,
.coverwrap .page-h,
.coverwrap .section-h,
.coverwrap .section-heading,
.coverwrap .topic-title {
  color: #000000;
}
.coverwrap .domwrap,
.coverwrap .text-wrapper {
  color: #4f4f4f;
}
.coverwrap .list {
  color: #000000;
}
.coverwrap .domwrap {
  color: #ffffff;
}.coverwrap .block-title,
.coverwrap .chapter-title,
.coverwrap .header-text,
.coverwrap .lead-h2,
.coverwrap .main-heading,
.coverwrap .page-h,
.coverwrap .section-h,
.coverwrap .section-heading,
.coverwrap .topic-title,
.coverwrap .block-action,
.coverwrap .cta-link,
.coverwrap .lead-btn,
.coverwrap .page-btn,
.coverwrap .primary-cta,
.coverwrap .section-action {
  color: #ffffff;
  text-align: center;
}
.partlayer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.partlayer .drawbox {
  position: relative;
  margin: 0;
}
.partlayer .drawbox .content {
  padding: 0;
}
.partlayer .pinbox {
  position: relative;
  z-index: 1;
  margin: 0;
}
.partlayer .pinbox .card {
  padding: 0;
}
.partlayer .stackunit {
  margin-bottom: 40px;
}
.partlayer .domlayer {
  margin-bottom: 20px;
}
.partlayer .domlayer .nodemap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #0f0f0f;
  padding: 7px 14px 6px;
}
.partlayer .domlayer .nodemap .docklayer {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #00bf32;
}
.partlayer .domlayer .nodemap .sectionunit {
  margin-bottom: 0;
}.partlayer .zone .block-title,
.partlayer .zone .chapter-title,
.partlayer .zone .header-text,
.partlayer .zone .lead-h2,
.partlayer .zone .main-heading,
.partlayer .zone .page-h,
.partlayer .zone .section-h,
.partlayer .zone .section-heading,
.partlayer .zone .topic-title {
  margin-bottom: 0;
}.partlayer .zone .block-subtitle,
.partlayer .zone .h-secondary,
.partlayer .zone .section-tag,
.partlayer .zone .sub-heading,
.partlayer .zone .tagline-h {
  margin-bottom: 0;
}
.partlayer .domcore {
  margin-right: -1px;
}
.partlayer .domcore .item {
  margin-bottom: 8px;
}
.partlayer .domcore .item:last-child {
  margin-bottom: 0;
}
.partlayer .domcore .item .item-wrapper {
  height: 100%;
}
.partlayer .domcore .item .item-wrapper .clipbox {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.partlayer .domcore .item .item-wrapper .clipbox .levelwrap {
  width: 24px;
  height: 24px;
}
.partlayer .domcore .item .item-wrapper .clipbox .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #0f0f0f 45%);
}
.partlayer .domcore .item .item-wrapper .clipbox .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #0f0f0f 45%);
}
.partlayer .domcore .item .item-wrapper .clipbox .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #0f0f0f 45%);
}
.partlayer .domcore .item .item-wrapper .clipbox .matrix {
  width: 100%;
  background-color: #0f0f0f;
  margin: 0 -1px;
}
.partlayer .domcore .item .item-wrapper .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.partlayer .domcore .item .item-wrapper .frame_2 .matrix {
  margin: 0 -1px 0 0;
}
.partlayer .domcore .item .item-wrapper .card-box {
  padding: 1px 24px;
  background-color: #0f0f0f;
  position: relative;
  z-index: 2;
  height: 100%;
  will-change: transform;
}
.partlayer .domcore .item .item-wrapper .card-box .viewbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.partlayer .domcore .item .item-wrapper .card-box .viewbox .part {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 7px 14px 6px;
  border: 1px dashed #00bf32;
}
.partlayer .domcore .item .item-wrapper .card-box .viewbox .part .docklayer {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #00bf32;
}
.partlayer .domcore .item .item-wrapper .card-box .viewbox .part .docklayer .nodeunit {
  background-color: #0f0f0f;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.partlayer .domcore .item .item-wrapper .card-box .viewbox .part .item-number {
  margin-bottom: 0;
  white-space: nowrap;
}
.partlayer .domcore .item .item-wrapper .card-box .viewbox::after {
  content: '';
  width: 100%;
  border-top: 1px dashed #00bf32;
}
@media (max-width: 992px) {
  .partlayer .domcore .item .item-wrapper .card-box .viewbox::after {
    content: none;
  }
}
.partlayer .domcore .item .item-wrapper .card-box .item-title {
  margin-bottom: 0;
  font-size: 150%;
}
@media (max-width: 992px) {
  .partlayer .domcore .item .item-wrapper .card-box .item-title {
    line-height: 1.5;
  }
}
.partlayer .sectionunit {
  color: #ffffff;
}.partlayer .block-title,
.partlayer .chapter-title,
.partlayer .header-text,
.partlayer .lead-h2,
.partlayer .main-heading,
.partlayer .page-h,
.partlayer .section-h,
.partlayer .section-heading,
.partlayer .topic-title {
  color: #ffffff;
}.partlayer .block-subtitle,
.partlayer .h-secondary,
.partlayer .section-tag,
.partlayer .sub-heading,
.partlayer .tagline-h {
  color: #ffffff;
}
.partlayer .item-number {
  color: #00bf32;
}
.partlayer .item-title {
  color: #ffffff;
}
.partlayer .sectionunit,
.partlayer .domlayer {
  color: #00bf32;
}
.tilegrid {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.tilegrid .container-fluid {
  padding: 0;
}
.tilegrid .domcore {
  margin: 0;
}
.tilegrid .domcore .card {
  padding: 0;
}
.tilegrid .ridge {
  width: 100%;
  height: 1px;
  background-color: #00bf32;
}
.tilegrid .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 60px 40px 60px 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .tilegrid .nav-wrapper {
    padding: 24px;
    gap: 48px;
  }
}
.tilegrid .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap {
  width: fit-content;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 16px;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #00bf32;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.tilegrid .drawbox {
  padding: 60px 40px 60px 40px;
  background-color: #001706;
  height: 100%;
  border-left: 1px solid #00bf32;
  border-right: 1px solid #00bf32;
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    border-left: none;
    border-right: none;
    border-top: 1px solid #00bf32;
    border-bottom: 1px solid #00bf32;
  }
}.tilegrid .drawbox .block-title,
.tilegrid .drawbox .chapter-title,
.tilegrid .drawbox .header-text,
.tilegrid .drawbox .lead-h2,
.tilegrid .drawbox .main-heading,
.tilegrid .drawbox .page-h,
.tilegrid .drawbox .section-h,
.tilegrid .drawbox .section-heading,
.tilegrid .drawbox .topic-title {
  margin-bottom: 12px;
}
.tilegrid .drawbox .domwrap {
  margin-bottom: 0;
}.tilegrid .drawbox .block-action,
.tilegrid .drawbox .cta-link,
.tilegrid .drawbox .lead-btn,
.tilegrid .drawbox .page-btn,
.tilegrid .drawbox .primary-cta,
.tilegrid .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.tilegrid .patternbox {
  height: 100%;
}
.tilegrid .patternbox .soc-item {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border-top: 1px solid #00bf32;
}
.tilegrid .patternbox .soc-item:first-child {
  border-top: none;
}
.tilegrid .patternbox .soc-item:hover,
.tilegrid .patternbox .soc-item:hover {
  background-color: #00bf32;
}
.tilegrid .patternbox .soc-item:hover .soc-item,
.tilegrid .patternbox .soc-item:hover .soc-item {
  color: #ffffff;
}
.tilegrid .patternbox .soc-item:hover .responsive-iconfont,
.tilegrid .patternbox .soc-item:hover .responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont,
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item .formwrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.tilegrid .patternbox .soc-item a {
  display: block;
}
.tilegrid .patternbox .soc-item a .responsive-iconfont {
  display: inline-flex;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.tilegrid .wrapperbox {
  padding: 40px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .tilegrid .wrapperbox {
    padding: 24px;
  }
}
.tilegrid .list {
  color: #333336;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title {
  color: #333336;
}
.tilegrid .domwrap {
  color: #ffffff;
}
.tilegrid .formwrap {
  color: #ffffff;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title,
.tilegrid .block-action,
.tilegrid .cta-link,
.tilegrid .lead-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-action {
  color: #00bf32;
}
.tilegrid .list,
.tilegrid .item-wrap {
  color: #ffffff;
}
.domcell {
  z-index: 1000;
  width: 100%;
}
.domcell nav.navbar {
  position: fixed;
}
.domcell .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.domcell .nav-link {
  position: relative;
}
.domcell .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .domcell .container {
    flex-wrap: nowrap;
  }
}
.domcell .nav-item:focus,
.domcell .nav-link:focus {
  outline: none;
}
.domcell .navbar {
  min-height: 60px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.domcell .navbar .corewrapbox {
  margin-right: 1rem;
}
.domcell .navbar .corewrapbox img {
  width: auto;
}
.domcell .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.domcell .navbar .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .domcell .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domcell .navbar .corewrapbox img {
    height: 3rem !important;
  }
  .domcell .navbar ul.navbar-nav li {
    margin: auto;
  }
  .domcell .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .domcell .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domcell .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.domcell .navbar-brand .alignbox {
  line-height: inherit !important;
  font-weight: 400;
}
.domcell .navbar-brand .alignbox:hover,
.domcell .navbar-brand .alignbox:focus {
  color: #ffffff !important;
}
.domcell .navbar-brand .corewrapbox a {
  outline: none;
}
.domcell .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domcell ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .domcell ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.domcell .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .domcell .navbar-buttons {
    text-align: left;
  }
}
.domcell .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 32px;
  clip-path: none;
}
@media (max-width: 575px) {
  .domcell .navbar-buttons .btn {
    width: auto !important;
  }
}
.domcell button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.domcell .main-menu {
  padding: 0 1rem;
  position: fixed;
}
.domcell a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domcell .navbar {
    height: 60px;
  }
  .domcell .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.domcell .nav-item {
  padding: 0;
  margin: 0;
}
.domcell .nav-item .nav-link {
  padding: 6px 20px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.domcell .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.domcell .nav-item .nav-link:hover,
.domcell .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.domcell .nav-item .nav-link:hover::after,
.domcell .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.domcell .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .domcell .navbar {
    justify-content: flex-start !important;
  }
  .domcell .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .domcell .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .domcell .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .domcell .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .domcell .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.domcell .pinbox {
  min-height: 60px;
}
.domcell .navbar.main-menu {
  border-bottom: 1px solid #2cc354 !important;
}
.layoutbase {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.layoutbase .domcore {
  margin: 0 -20px;
}
.layoutbase .domcore .card {
  padding: 0 20px;
  justify-content: center;
}
.layoutbase .drawbox {
  position: relative;
  padding: 100px 40px;
  min-height: 500px;
}
@media (max-width: 992px) {
  .layoutbase .drawbox {
    padding: 40px 24px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .layoutbase .drawbox {
    padding: 40px 12px;
  }
}
.layoutbase .drawbox .formcore img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layoutbase .drawbox .nestbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
  pointer-events: none;
}
.layoutbase .drawbox .pinbox {
  position: relative;
  z-index: 1;
}.layoutbase .drawbox .pinbox .block-title,
.layoutbase .drawbox .pinbox .chapter-title,
.layoutbase .drawbox .pinbox .header-text,
.layoutbase .drawbox .pinbox .lead-h2,
.layoutbase .drawbox .pinbox .main-heading,
.layoutbase .drawbox .pinbox .page-h,
.layoutbase .drawbox .pinbox .section-h,
.layoutbase .drawbox .pinbox .section-heading,
.layoutbase .drawbox .pinbox .topic-title {
  margin-bottom: 24px;
}
.layoutbase .drawbox .pinbox .text-wrapper .domwrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .layoutbase .drawbox .pinbox .text-wrapper .domwrap {
    width: 100%;
  }
}.layoutbase .drawbox .pinbox .block-action,
.layoutbase .drawbox .pinbox .cta-link,
.layoutbase .drawbox .pinbox .lead-btn,
.layoutbase .drawbox .pinbox .page-btn,
.layoutbase .drawbox .pinbox .primary-cta,
.layoutbase .drawbox .pinbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.layoutbase .tileunit img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .layoutbase .tileunit img {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .layoutbase .tileunit img {
    height: 300px;
  }
}
.layoutbase .image_1 {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .layoutbase .image_1 {
    margin-bottom: 24px;
  }
}
.layoutbase .image_2 {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.layoutbase .image_2 img {
  margin-bottom: -40px;
}
@media (max-width: 992px) {
  .layoutbase .image_2 img {
    margin-top: 24px;
  }
}.layoutbase .block-title,
.layoutbase .chapter-title,
.layoutbase .header-text,
.layoutbase .lead-h2,
.layoutbase .main-heading,
.layoutbase .page-h,
.layoutbase .section-h,
.layoutbase .section-heading,
.layoutbase .topic-title {
  color: #ffffff;
}
.layoutbase .domwrap,
.layoutbase .text-wrapper {
  color: #ffffff;
  text-align: center;
}.layoutbase .block-title,
.layoutbase .chapter-title,
.layoutbase .header-text,
.layoutbase .lead-h2,
.layoutbase .main-heading,
.layoutbase .page-h,
.layoutbase .section-h,
.layoutbase .section-heading,
.layoutbase .topic-title,
.layoutbase .block-action,
.layoutbase .cta-link,
.layoutbase .lead-btn,
.layoutbase .page-btn,
.layoutbase .primary-cta,
.layoutbase .section-action {
  text-align: center;
}
.wrapunitbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f0f0f;
}
.wrapunitbox .drawbox {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .wrapunitbox .drawbox {
    margin-bottom: 32px;
  }
}
.wrapunitbox .drawbox .domlayer {
  margin-bottom: 32px;
}
.wrapunitbox .drawbox .domlayer .nodemap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.wrapunitbox .drawbox .domlayer .nodemap .sectionunit {
  margin-bottom: 0;
}.wrapunitbox .drawbox .stackunit .block-title,
.wrapunitbox .drawbox .stackunit .chapter-title,
.wrapunitbox .drawbox .stackunit .header-text,
.wrapunitbox .drawbox .stackunit .lead-h2,
.wrapunitbox .drawbox .stackunit .main-heading,
.wrapunitbox .drawbox .stackunit .page-h,
.wrapunitbox .drawbox .stackunit .section-h,
.wrapunitbox .drawbox .stackunit .section-heading,
.wrapunitbox .drawbox .stackunit .topic-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
  position: relative;
  background-image: linear-gradient(-180deg, #ffffff, #ffffff 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {.wrapunitbox .drawbox .stackunit .block-title,
.wrapunitbox .drawbox .stackunit .chapter-title,
.wrapunitbox .drawbox .stackunit .header-text,
.wrapunitbox .drawbox .stackunit .lead-h2,
.wrapunitbox .drawbox .stackunit .main-heading,
.wrapunitbox .drawbox .stackunit .page-h,
.wrapunitbox .drawbox .stackunit .section-h,
.wrapunitbox .drawbox .stackunit .section-heading,
.wrapunitbox .drawbox .stackunit .topic-title {
    width: 100%;
  }
}
.wrapunitbox .domcore {
  margin: 0 -18px;
  justify-content: center;
}
.wrapunitbox .domcore .card {
  padding: 0 18px;
  justify-content: center;
}
.wrapunitbox .domcore .card .formcore {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .wrapunitbox .domcore .card .formcore {
    margin-bottom: 32px;
  }
}
.wrapunitbox .domcore .card .formcore img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #00bf32;
}
@media (max-width: 992px) {
  .wrapunitbox .domcore .card .formcore img {
    height: 300px;
  }
}
.wrapunitbox .domcore .card .text-wrapper .domwrap {
  margin-bottom: 0;
}.wrapunitbox .domcore .card .text-wrapper .block-action,
.wrapunitbox .domcore .card .text-wrapper .cta-link,
.wrapunitbox .domcore .card .text-wrapper .lead-btn,
.wrapunitbox .domcore .card .text-wrapper .page-btn,
.wrapunitbox .domcore .card .text-wrapper .primary-cta,
.wrapunitbox .domcore .card .text-wrapper .section-action {
  margin-top: 14px;
}.wrapunitbox .domcore .card .text-wrapper .block-action .btn,
.wrapunitbox .domcore .card .text-wrapper .cta-link .btn,
.wrapunitbox .domcore .card .text-wrapper .lead-btn .btn,
.wrapunitbox .domcore .card .text-wrapper .page-btn .btn,
.wrapunitbox .domcore .card .text-wrapper .primary-cta .btn,
.wrapunitbox .domcore .card .text-wrapper .section-action .btn {
  margin-bottom: 0;
}
.wrapunitbox .sectionunit,
.wrapunitbox .domlayer {
  color: #000000;
  text-align: center;
}.wrapunitbox .block-title,
.wrapunitbox .chapter-title,
.wrapunitbox .header-text,
.wrapunitbox .lead-h2,
.wrapunitbox .main-heading,
.wrapunitbox .page-h,
.wrapunitbox .section-h,
.wrapunitbox .section-heading,
.wrapunitbox .topic-title,
.wrapunitbox .stackunit {
  color: #000000;
  text-align: center;
}
.wrapunitbox .domwrap {
  color: #515151;
}.wrapunitbox .domwrap,
.wrapunitbox .block-action,
.wrapunitbox .cta-link,
.wrapunitbox .lead-btn,
.wrapunitbox .page-btn,
.wrapunitbox .primary-cta,
.wrapunitbox .section-action {
  color: #ffffff;
}
.gridtrack {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.gridtrack .row {
  justify-content: space-between;
}
.gridtrack .drawbox {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .gridtrack .drawbox {
    padding: 0;
  }
}.gridtrack .drawbox .block-title,
.gridtrack .drawbox .chapter-title,
.gridtrack .drawbox .header-text,
.gridtrack .drawbox .lead-h2,
.gridtrack .drawbox .main-heading,
.gridtrack .drawbox .page-h,
.gridtrack .drawbox .section-h,
.gridtrack .drawbox .section-heading,
.gridtrack .drawbox .topic-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {.gridtrack .drawbox .block-title,
.gridtrack .drawbox .chapter-title,
.gridtrack .drawbox .header-text,
.gridtrack .drawbox .lead-h2,
.gridtrack .drawbox .main-heading,
.gridtrack .drawbox .page-h,
.gridtrack .drawbox .section-h,
.gridtrack .drawbox .section-heading,
.gridtrack .drawbox .topic-title {
    margin-bottom: 20px;
  }
}
.gridtrack .drawbox .domwrap {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .gridtrack .drawbox .domwrap {
    margin-bottom: 20px;
  }
}
.gridtrack .drawbox .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.gridtrack .drawbox .logo-wrapper .logo-wrap .tileunit {
  margin-right: 12px;
}
.gridtrack .drawbox .logo-wrapper .logo-wrap .tileunit img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.gridtrack .drawbox .logo-wrapper .logo-wrap .viewnode {
  margin-bottom: 0;
}.gridtrack .block-title,
.gridtrack .chapter-title,
.gridtrack .header-text,
.gridtrack .lead-h2,
.gridtrack .main-heading,
.gridtrack .page-h,
.gridtrack .section-h,
.gridtrack .section-heading,
.gridtrack .topic-title {
  color: #000000;
}
.gridtrack .viewnode {
  color: #000000;
}
.gridtrack .domwrap {
  color: #ffffff;
}.gridtrack .block-title,
.gridtrack .chapter-title,
.gridtrack .header-text,
.gridtrack .lead-h2,
.gridtrack .main-heading,
.gridtrack .page-h,
.gridtrack .section-h,
.gridtrack .section-heading,
.gridtrack .topic-title,
.gridtrack .block-action,
.gridtrack .cta-link,
.gridtrack .lead-btn,
.gridtrack .page-btn,
.gridtrack .primary-cta,
.gridtrack .section-action {
  color: #ffffff;
}
.flexunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f0f0f;
}
.flexunit .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .flexunit .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .flexunit .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .flexunit .container {
    padding: 0 16px;
  }
}
.flexunit .row {
  justify-content: space-between;
}
.flexunit .row .card {
  justify-content: flex-end;
  padding-bottom: 64px;
}
@media (max-width: 992px) {
  .flexunit .row .card {
    padding-bottom: 32px;
  }
  .flexunit .row .card:last-child {
    padding-bottom: 0;
  }
}
.flexunit .card-wrapper {
  }
.flexunit .card-wrapper .card-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .flexunit .card-wrapper .card-title {
    margin-bottom: 16px;
  }
}
@media (max-width: 992px) {
  .flexunit .formcore {
    margin-bottom: 32px;
  }
}
.flexunit .formcore img {
  height: 820px;
  object-fit: cover;
}
.flexunit .card-title {
  color: #ffffff;
}
.flexunit .card-text {
  color: #ffffff;
}
.zonecore {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  position: relative;
}
.zonecore::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #0f0f0f, #001706);
}
.zonecore .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .zonecore .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .zonecore .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .zonecore .container {
    padding: 0 16px;
  }
}.zonecore .stackunit .block-title,
.zonecore .stackunit .chapter-title,
.zonecore .stackunit .header-text,
.zonecore .stackunit .lead-h2,
.zonecore .stackunit .main-heading,
.zonecore .stackunit .page-h,
.zonecore .stackunit .section-h,
.zonecore .stackunit .section-heading,
.zonecore .stackunit .topic-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {.zonecore .stackunit .block-title,
.zonecore .stackunit .chapter-title,
.zonecore .stackunit .header-text,
.zonecore .stackunit .lead-h2,
.zonecore .stackunit .main-heading,
.zonecore .stackunit .page-h,
.zonecore .stackunit .section-h,
.zonecore .stackunit .section-heading,
.zonecore .stackunit .topic-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .zonecore .drawbox {
    margin-bottom: 48px;
  }
}
.zonecore .drawbox .text-wrap .domwrap {
  display: inline-flex;
  width: 80%;
  margin-bottom: 48px;
}
@media (max-width: 1200px) {
  .zonecore .drawbox .text-wrap .domwrap {
    width: 100%;
  }
}
.zonecore .formcore {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .zonecore .formcore {
    margin-bottom: 32px;
  }
}
.zonecore .formcore .tileunit {
  position: relative;
  border: 2px solid #000000;
  border-radius: 3rem !important;
  width: 332px;
  height: 690px;
  display: flex;
  justify-content: center;
  background-color: #000000;
  box-shadow: -25px 32px 60px #00bf32;
}
.zonecore .formcore .tileunit::before {
  content: '';
  position: absolute;
  top: 16px;
  width: 98px;
  height: 28px;
  border-radius: 1rem;
  background-color: #000000;
}
@media (max-width: 1200px) {
  .zonecore .formcore .tileunit::before {
    top: 13px;
    width: 68px;
    height: 22px;
  }
}
@media (max-width: 1200px) {
  .zonecore .formcore .tileunit {
    width: 232px;
    height: 460px;
  }
}
.zonecore .formcore .tileunit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 7px solid #000000;
  background-color: #000000;
  border-radius: 3rem !important;
}.zonecore .block-title,
.zonecore .chapter-title,
.zonecore .header-text,
.zonecore .lead-h2,
.zonecore .main-heading,
.zonecore .page-h,
.zonecore .section-h,
.zonecore .section-heading,
.zonecore .topic-title {
  color: #ffffff;
}
.zonecore .domwrap {
  color: #f4f4f4;
}
.zonecore .domwrap,
.zonecore .text-wrap {
  color: #ffffff;
}
.tilegrid {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.tilegrid .container-fluid {
  padding: 0;
}
.tilegrid .domcore {
  margin: 0;
}
.tilegrid .domcore .card {
  padding: 0;
}
.tilegrid .ridge {
  width: 100%;
  height: 1px;
  background-color: #00bf32;
}
.tilegrid .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 60px 40px 60px 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .tilegrid .nav-wrapper {
    padding: 24px;
    gap: 48px;
  }
}
.tilegrid .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap {
  width: fit-content;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 16px;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #00bf32;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.tilegrid .drawbox {
  padding: 60px 40px 60px 40px;
  background-color: #001706;
  height: 100%;
  border-left: 1px solid #00bf32;
  border-right: 1px solid #00bf32;
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    border-left: none;
    border-right: none;
    border-top: 1px solid #00bf32;
    border-bottom: 1px solid #00bf32;
  }
}.tilegrid .drawbox .block-title,
.tilegrid .drawbox .chapter-title,
.tilegrid .drawbox .header-text,
.tilegrid .drawbox .lead-h2,
.tilegrid .drawbox .main-heading,
.tilegrid .drawbox .page-h,
.tilegrid .drawbox .section-h,
.tilegrid .drawbox .section-heading,
.tilegrid .drawbox .topic-title {
  margin-bottom: 12px;
}
.tilegrid .drawbox .domwrap {
  margin-bottom: 0;
}.tilegrid .drawbox .block-action,
.tilegrid .drawbox .cta-link,
.tilegrid .drawbox .lead-btn,
.tilegrid .drawbox .page-btn,
.tilegrid .drawbox .primary-cta,
.tilegrid .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.tilegrid .patternbox {
  height: 100%;
}
.tilegrid .patternbox .soc-item {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border-top: 1px solid #00bf32;
}
.tilegrid .patternbox .soc-item:first-child {
  border-top: none;
}
.tilegrid .patternbox .soc-item:hover,
.tilegrid .patternbox .soc-item:hover {
  background-color: #00bf32;
}
.tilegrid .patternbox .soc-item:hover .soc-item,
.tilegrid .patternbox .soc-item:hover .soc-item {
  color: #ffffff;
}
.tilegrid .patternbox .soc-item:hover .responsive-iconfont,
.tilegrid .patternbox .soc-item:hover .responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont,
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item .formwrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.tilegrid .patternbox .soc-item a {
  display: block;
}
.tilegrid .patternbox .soc-item a .responsive-iconfont {
  display: inline-flex;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.tilegrid .wrapperbox {
  padding: 40px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .tilegrid .wrapperbox {
    padding: 24px;
  }
}
.tilegrid .list {
  color: #333336;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title {
  color: #333336;
}
.tilegrid .domwrap {
  color: #ffffff;
}
.tilegrid .formwrap {
  color: #ffffff;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title,
.tilegrid .block-action,
.tilegrid .cta-link,
.tilegrid .lead-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-action {
  color: #00bf32;
}
.tilegrid .list,
.tilegrid .item-wrap {
  color: #ffffff;
}
.domcell {
  z-index: 1000;
  width: 100%;
}
.domcell nav.navbar {
  position: fixed;
}
.domcell .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.domcell .nav-link {
  position: relative;
}
.domcell .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .domcell .container {
    flex-wrap: nowrap;
  }
}
.domcell .nav-item:focus,
.domcell .nav-link:focus {
  outline: none;
}
.domcell .navbar {
  min-height: 60px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.domcell .navbar .corewrapbox {
  margin-right: 1rem;
}
.domcell .navbar .corewrapbox img {
  width: auto;
}
.domcell .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.domcell .navbar .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .domcell .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domcell .navbar .corewrapbox img {
    height: 3rem !important;
  }
  .domcell .navbar ul.navbar-nav li {
    margin: auto;
  }
  .domcell .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .domcell .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domcell .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.domcell .navbar-brand .alignbox {
  line-height: inherit !important;
  font-weight: 400;
}
.domcell .navbar-brand .alignbox:hover,
.domcell .navbar-brand .alignbox:focus {
  color: #ffffff !important;
}
.domcell .navbar-brand .corewrapbox a {
  outline: none;
}
.domcell .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domcell ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .domcell ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.domcell .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .domcell .navbar-buttons {
    text-align: left;
  }
}
.domcell .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 32px;
  clip-path: none;
}
@media (max-width: 575px) {
  .domcell .navbar-buttons .btn {
    width: auto !important;
  }
}
.domcell button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.domcell .main-menu {
  padding: 0 1rem;
  position: fixed;
}
.domcell a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domcell .navbar {
    height: 60px;
  }
  .domcell .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.domcell .nav-item {
  padding: 0;
  margin: 0;
}
.domcell .nav-item .nav-link {
  padding: 6px 20px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.domcell .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.domcell .nav-item .nav-link:hover,
.domcell .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.domcell .nav-item .nav-link:hover::after,
.domcell .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.domcell .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .domcell .navbar {
    justify-content: flex-start !important;
  }
  .domcell .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .domcell .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .domcell .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .domcell .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .domcell .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.domcell .pinbox {
  min-height: 60px;
}
.domcell .navbar.main-menu {
  border-bottom: 1px solid #2cc354 !important;
}
.dockunit {
  background-color: #000000;
}
.dockunit .drawbox {
  position: relative;
  margin: 0;
}
.dockunit .drawbox .card {
  position: relative;
  z-index: 1;
  padding: 0;
  justify-content: flex-end;
}
.dockunit .pinbox {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 750px;
  padding: 24px;
  margin-right: -1px;
  clip-path: polygon(38px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 38px);
}
@media (max-width: 1440px) {
  .dockunit .pinbox {
    min-height: 600px;
  }
}
@media (max-width: 1200px) {
  .dockunit .pinbox {
    min-height: 500px;
  }
}
.dockunit .pinbox .formcore img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dockunit .pinbox .boxareaunit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #080a10;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.dockunit .stackunit {
  position: relative;
  z-index: 1;
  width: 100%;
}.dockunit .stackunit .block-title,
.dockunit .stackunit .chapter-title,
.dockunit .stackunit .header-text,
.dockunit .stackunit .lead-h2,
.dockunit .stackunit .main-heading,
.dockunit .stackunit .page-h,
.dockunit .stackunit .section-h,
.dockunit .stackunit .section-heading,
.dockunit .stackunit .topic-title {
  margin-bottom: 20px;
}
.dockunit .stackunit .text-wrapper .domwrap {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .dockunit .stackunit .text-wrapper .domwrap {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .dockunit .stackunit .text-wrapper .domwrap {
    width: 100%;
  }
}.dockunit .stackunit .block-action,
.dockunit .stackunit .cta-link,
.dockunit .stackunit .lead-btn,
.dockunit .stackunit .page-btn,
.dockunit .stackunit .primary-cta,
.dockunit .stackunit .section-action {
  margin-top: 20px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {.dockunit .stackunit .block-action,
.dockunit .stackunit .cta-link,
.dockunit .stackunit .lead-btn,
.dockunit .stackunit .page-btn,
.dockunit .stackunit .primary-cta,
.dockunit .stackunit .section-action {
    margin-top: 10px;
  }
}.dockunit .block-title,
.dockunit .chapter-title,
.dockunit .header-text,
.dockunit .lead-h2,
.dockunit .main-heading,
.dockunit .page-h,
.dockunit .section-h,
.dockunit .section-heading,
.dockunit .topic-title {
  color: #ffffff;
}
.dockunit .domwrap,
.dockunit .text-wrapper {
  color: #ffffff;
  text-align: center;
}.dockunit .block-title,
.dockunit .chapter-title,
.dockunit .header-text,
.dockunit .lead-h2,
.dockunit .main-heading,
.dockunit .page-h,
.dockunit .section-h,
.dockunit .section-heading,
.dockunit .topic-title,
.dockunit .block-action,
.dockunit .cta-link,
.dockunit .lead-btn,
.dockunit .page-btn,
.dockunit .primary-cta,
.dockunit .section-action {
  text-align: center;
}
.body {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f0f0f;
}
.body .row {
  margin: 0 -20px;
}
.body .row .card {
  padding: 0 20px;
}
.body .drawbox {
  margin-bottom: 40px;
}
.body .drawbox .sectionunit {
  margin-bottom: 12px;
}.body .drawbox .block-title,
.body .drawbox .chapter-title,
.body .drawbox .header-text,
.body .drawbox .lead-h2,
.body .drawbox .main-heading,
.body .drawbox .page-h,
.body .drawbox .section-h,
.body .drawbox .section-heading,
.body .drawbox .topic-title {
  margin-bottom: 12px;
}
.body .drawbox .domwrap {
  margin-bottom: 0;
}.body .drawbox .block-action,
.body .drawbox .cta-link,
.body .drawbox .lead-btn,
.body .drawbox .page-btn,
.body .drawbox .primary-cta,
.body .drawbox .section-action {
  margin-top: 16px;
}.body .drawbox .block-action .btn,
.body .drawbox .cta-link .btn,
.body .drawbox .lead-btn .btn,
.body .drawbox .page-btn .btn,
.body .drawbox .primary-cta .btn,
.body .drawbox .section-action .btn {
  margin-bottom: 0;
}
.body .pinbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1200px) {
  .body .pinbox {
    grid-template-columns: 1fr;
  }
}
.body .pinbox .formcore img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.body .sectionunit {
  color: #00bf32;
}.body .block-title,
.body .chapter-title,
.body .header-text,
.body .lead-h2,
.body .main-heading,
.body .page-h,
.body .section-h,
.body .section-heading,
.body .topic-title {
  color: #ffffff;
}
.body .domwrap {
  color: #ffffff;
}
.inset {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.inset .card {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .inset .card {
    margin-bottom: 40px;
  }
}
.inset .stackunit .sectionunit {
  margin-bottom: 20px;
}.inset .stackunit .block-title,
.inset .stackunit .chapter-title,
.inset .stackunit .header-text,
.inset .stackunit .lead-h2,
.inset .stackunit .main-heading,
.inset .stackunit .page-h,
.inset .stackunit .section-h,
.inset .stackunit .section-heading,
.inset .stackunit .topic-title {
  margin-bottom: 20px;
}.inset .block-action .btn,
.inset .cta-link .btn,
.inset .lead-btn .btn,
.inset .page-btn .btn,
.inset .primary-cta .btn,
.inset .section-action .btn {
  margin-bottom: 0;
}
.inset .text-wrapper .domwrap {
  margin-bottom: 0;
}
.inset .sectionunit {
  color: #00bf32;
}.inset .block-title,
.inset .chapter-title,
.inset .header-text,
.inset .lead-h2,
.inset .main-heading,
.inset .page-h,
.inset .section-h,
.inset .section-heading,
.inset .topic-title {
  color: #ffffff;
}
.inset .domwrap {
  color: #ffffff;
}
.unitgrid {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0f0f0f;
}
@media (max-width: 992px) {
  .unitgrid .container {
    padding: 0 16px;
  }
}
.unitgrid .formcore {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .unitgrid .formcore {
    margin-bottom: 32px;
  }
}
.unitgrid .formcore .tileunit {
  position: relative;
  border: 2px solid #ffffff;
  border-radius: 3rem !important;
  width: 332px;
  height: 690px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 25px 32px 60px #009427;
}
.unitgrid .formcore .tileunit::before {
  content: '';
  position: absolute;
  top: 16px;
  width: 98px;
  height: 28px;
  border-radius: 1rem;
  background-color: #000000;
}
@media (max-width: 1200px) {
  .unitgrid .formcore .tileunit::before {
    top: 13px;
    width: 68px;
    height: 22px;
  }
}
@media (max-width: 1200px) {
  .unitgrid .formcore .tileunit {
    width: 232px;
    height: 460px;
  }
}
.unitgrid .formcore .tileunit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 7px solid #000000;
  background-color: #000000;
  border-radius: 3rem !important;
}.unitgrid .drawbox .block-title,
.unitgrid .drawbox .chapter-title,
.unitgrid .drawbox .header-text,
.unitgrid .drawbox .lead-h2,
.unitgrid .drawbox .main-heading,
.unitgrid .drawbox .page-h,
.unitgrid .drawbox .section-h,
.unitgrid .drawbox .section-heading,
.unitgrid .drawbox .topic-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {.unitgrid .drawbox .block-title,
.unitgrid .drawbox .chapter-title,
.unitgrid .drawbox .header-text,
.unitgrid .drawbox .lead-h2,
.unitgrid .drawbox .main-heading,
.unitgrid .drawbox .page-h,
.unitgrid .drawbox .section-h,
.unitgrid .drawbox .section-heading,
.unitgrid .drawbox .topic-title {
    margin-bottom: 16px;
  }
}
.unitgrid .drawbox .viewnode {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .unitgrid .drawbox .viewnode {
    margin-bottom: 16px;
  }
}
.unitgrid .drawbox .domwrap {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .unitgrid .drawbox .domwrap {
    margin-bottom: 16px;
  }
}.unitgrid .block-title,
.unitgrid .chapter-title,
.unitgrid .header-text,
.unitgrid .lead-h2,
.unitgrid .main-heading,
.unitgrid .page-h,
.unitgrid .section-h,
.unitgrid .section-heading,
.unitgrid .topic-title {
  color: #ffffff;
  text-align: center;
}
.unitgrid .viewnode {
  color: #00bf32;
  text-align: center;
}
.unitgrid .domwrap {
  color: #ffffff;
}
.zoneunit {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.zoneunit .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .zoneunit .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .zoneunit .container {
    padding: 0 20px;
  }
}
.zoneunit .drawbox {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .zoneunit .drawbox {
    padding: 46px 0;
  }
}
.zoneunit .drawbox .viewnode {
  margin-bottom: 32px;
}.zoneunit .drawbox .block-title,
.zoneunit .drawbox .chapter-title,
.zoneunit .drawbox .header-text,
.zoneunit .drawbox .lead-h2,
.zoneunit .drawbox .main-heading,
.zoneunit .drawbox .page-h,
.zoneunit .drawbox .section-h,
.zoneunit .drawbox .section-heading,
.zoneunit .drawbox .topic-title {
  margin-bottom: 32px;
}
.zoneunit .drawbox .text-wrapper .domwrap {
  display: inline-flex;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .zoneunit .drawbox .text-wrapper .domwrap {
    margin-bottom: 20px;
    width: 100%;
  }
}
.zoneunit .drawbox .formcore img {
  display: inline-flex;
  width: 50%;
  border-radius: 20px !important;
  object-fit: cover;
  height: 280px;
}
@media (max-width: 992px) {
  .zoneunit .drawbox .formcore img {
    width: 100%;
  }
}.zoneunit .drawbox .block-action,
.zoneunit .drawbox .cta-link,
.zoneunit .drawbox .lead-btn,
.zoneunit .drawbox .page-btn,
.zoneunit .drawbox .primary-cta,
.zoneunit .drawbox .section-action {
  margin-top: 60px;
}
@media (max-width: 992px) {.zoneunit .drawbox .block-action,
.zoneunit .drawbox .cta-link,
.zoneunit .drawbox .lead-btn,
.zoneunit .drawbox .page-btn,
.zoneunit .drawbox .primary-cta,
.zoneunit .drawbox .section-action {
    margin-top: 20px;
  }
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title {
  color: #000000;
}
.zoneunit .viewnode {
  color: #00bf32;
  text-align: center;
}
.zoneunit .domwrap,
.zoneunit .text-wrapper {
  color: #ffffff;
  text-align: center;
}.zoneunit .block-title,
.zoneunit .chapter-title,
.zoneunit .header-text,
.zoneunit .lead-h2,
.zoneunit .main-heading,
.zoneunit .page-h,
.zoneunit .section-h,
.zoneunit .section-heading,
.zoneunit .topic-title,
.zoneunit .block-action,
.zoneunit .cta-link,
.zoneunit .lead-btn,
.zoneunit .page-btn,
.zoneunit .primary-cta,
.zoneunit .section-action,
.zoneunit .formcore {
  text-align: center;
  color: #ffffff;
}
.tilegrid {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.tilegrid .container-fluid {
  padding: 0;
}
.tilegrid .domcore {
  margin: 0;
}
.tilegrid .domcore .card {
  padding: 0;
}
.tilegrid .ridge {
  width: 100%;
  height: 1px;
  background-color: #00bf32;
}
.tilegrid .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 60px 40px 60px 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .tilegrid .nav-wrapper {
    padding: 24px;
    gap: 48px;
  }
}
.tilegrid .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap {
  width: fit-content;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 16px;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #00bf32;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.tilegrid .drawbox {
  padding: 60px 40px 60px 40px;
  background-color: #001706;
  height: 100%;
  border-left: 1px solid #00bf32;
  border-right: 1px solid #00bf32;
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    border-left: none;
    border-right: none;
    border-top: 1px solid #00bf32;
    border-bottom: 1px solid #00bf32;
  }
}.tilegrid .drawbox .block-title,
.tilegrid .drawbox .chapter-title,
.tilegrid .drawbox .header-text,
.tilegrid .drawbox .lead-h2,
.tilegrid .drawbox .main-heading,
.tilegrid .drawbox .page-h,
.tilegrid .drawbox .section-h,
.tilegrid .drawbox .section-heading,
.tilegrid .drawbox .topic-title {
  margin-bottom: 12px;
}
.tilegrid .drawbox .domwrap {
  margin-bottom: 0;
}.tilegrid .drawbox .block-action,
.tilegrid .drawbox .cta-link,
.tilegrid .drawbox .lead-btn,
.tilegrid .drawbox .page-btn,
.tilegrid .drawbox .primary-cta,
.tilegrid .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.tilegrid .patternbox {
  height: 100%;
}
.tilegrid .patternbox .soc-item {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border-top: 1px solid #00bf32;
}
.tilegrid .patternbox .soc-item:first-child {
  border-top: none;
}
.tilegrid .patternbox .soc-item:hover,
.tilegrid .patternbox .soc-item:hover {
  background-color: #00bf32;
}
.tilegrid .patternbox .soc-item:hover .soc-item,
.tilegrid .patternbox .soc-item:hover .soc-item {
  color: #ffffff;
}
.tilegrid .patternbox .soc-item:hover .responsive-iconfont,
.tilegrid .patternbox .soc-item:hover .responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont,
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item .formwrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.tilegrid .patternbox .soc-item a {
  display: block;
}
.tilegrid .patternbox .soc-item a .responsive-iconfont {
  display: inline-flex;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.tilegrid .wrapperbox {
  padding: 40px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .tilegrid .wrapperbox {
    padding: 24px;
  }
}
.tilegrid .list {
  color: #333336;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title {
  color: #333336;
}
.tilegrid .domwrap {
  color: #ffffff;
}
.tilegrid .formwrap {
  color: #ffffff;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title,
.tilegrid .block-action,
.tilegrid .cta-link,
.tilegrid .lead-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-action {
  color: #00bf32;
}
.tilegrid .list,
.tilegrid .item-wrap {
  color: #ffffff;
}
.domcell {
  z-index: 1000;
  width: 100%;
}
.domcell nav.navbar {
  position: fixed;
}
.domcell .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.domcell .nav-link {
  position: relative;
}
.domcell .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .domcell .container {
    flex-wrap: nowrap;
  }
}
.domcell .nav-item:focus,
.domcell .nav-link:focus {
  outline: none;
}
.domcell .navbar {
  min-height: 60px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.domcell .navbar .corewrapbox {
  margin-right: 1rem;
}
.domcell .navbar .corewrapbox img {
  width: auto;
}
.domcell .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.domcell .navbar .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .domcell .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domcell .navbar .corewrapbox img {
    height: 3rem !important;
  }
  .domcell .navbar ul.navbar-nav li {
    margin: auto;
  }
  .domcell .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .domcell .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domcell .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.domcell .navbar-brand .alignbox {
  line-height: inherit !important;
  font-weight: 400;
}
.domcell .navbar-brand .alignbox:hover,
.domcell .navbar-brand .alignbox:focus {
  color: #ffffff !important;
}
.domcell .navbar-brand .corewrapbox a {
  outline: none;
}
.domcell .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domcell ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .domcell ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.domcell .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .domcell .navbar-buttons {
    text-align: left;
  }
}
.domcell .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 32px;
  clip-path: none;
}
@media (max-width: 575px) {
  .domcell .navbar-buttons .btn {
    width: auto !important;
  }
}
.domcell button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.domcell .main-menu {
  padding: 0 1rem;
  position: fixed;
}
.domcell a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domcell .navbar {
    height: 60px;
  }
  .domcell .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.domcell .nav-item {
  padding: 0;
  margin: 0;
}
.domcell .nav-item .nav-link {
  padding: 6px 20px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.domcell .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.domcell .nav-item .nav-link:hover,
.domcell .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.domcell .nav-item .nav-link:hover::after,
.domcell .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.domcell .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .domcell .navbar {
    justify-content: flex-start !important;
  }
  .domcell .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .domcell .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .domcell .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .domcell .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .domcell .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.domcell .pinbox {
  min-height: 60px;
}
.domcell .navbar.main-menu {
  border-bottom: 1px solid #2cc354 !important;
}
.netbox {
  border-bottom: 1px solid #00bf32;
  overflow: hidden;
  background-color: #000000;
}
.netbox .ridge {
  position: absolute;
  width: 1px;
  height: 1000vh;
  background-color: #00bf32;
}
.netbox .border_1 {
  left: 0;
}
.netbox .border_2 {
  right: 0;
}
.netbox .drawbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.netbox .drawbox .rootbox {
  position: absolute;
  width: 6px;
  height: 6px;
}
.netbox .drawbox .corner_1 {
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
}
.netbox .drawbox .corner_2 {
  position: absolute;
  top: 0;
  right: 0;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
}
.netbox .drawbox .corner_3 {
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
}
.netbox .drawbox .corner_4 {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #000000;
  border-left: 1px solid #000000;
}
.netbox .drawbox .stackunit {
  padding-left: 36px;
  padding-right: 36px;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media (max-width: 992px) {
  .netbox .drawbox .stackunit {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.netbox .drawbox .stackunit .domlayer .nodemap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding: 10px 0;
  border-top: 1px solid #524e46;
  border-bottom: 1px solid #524e46;
}
.netbox .drawbox .stackunit .domlayer .nodemap .docklayer {
  width: 9px;
  min-width: 9px;
  height: 9px;
  background-color: #d1c2a5;
  border-radius: 100%;
}
.netbox .drawbox .stackunit .domlayer .nodemap .sectionunit {
  margin-bottom: 0;
  white-space: nowrap;
}.netbox .drawbox .stackunit .zone .block-title,
.netbox .drawbox .stackunit .zone .chapter-title,
.netbox .drawbox .stackunit .zone .header-text,
.netbox .drawbox .stackunit .zone .lead-h2,
.netbox .drawbox .stackunit .zone .main-heading,
.netbox .drawbox .stackunit .zone .page-h,
.netbox .drawbox .stackunit .zone .section-h,
.netbox .drawbox .stackunit .zone .section-heading,
.netbox .drawbox .stackunit .zone .topic-title {
  margin-bottom: 0;
}.netbox .drawbox .stackunit .zone .block-subtitle,
.netbox .drawbox .stackunit .zone .h-secondary,
.netbox .drawbox .stackunit .zone .section-tag,
.netbox .drawbox .stackunit .zone .sub-heading,
.netbox .drawbox .stackunit .zone .tagline-h {
  margin-bottom: 0;
}
.netbox .drawbox .stackunit .text-wrapper .domwrap {
  display: inline-block;
  width: 45%;
  margin-top: 36px;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .netbox .drawbox .stackunit .text-wrapper .domwrap {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .netbox .drawbox .stackunit .text-wrapper .domwrap {
    width: 100%;
    margin-bottom: 24px;
  }
}.netbox .drawbox .stackunit .block-action,
.netbox .drawbox .stackunit .cta-link,
.netbox .drawbox .stackunit .lead-btn,
.netbox .drawbox .stackunit .page-btn,
.netbox .drawbox .stackunit .primary-cta,
.netbox .drawbox .stackunit .section-action {
  margin-top: 30px;
  margin-bottom: -9.6px;
}
.netbox .sectionunit,
.netbox .domlayer {
  color: #d1c2a5;
  text-align: center;
}.netbox .block-title,
.netbox .chapter-title,
.netbox .header-text,
.netbox .lead-h2,
.netbox .main-heading,
.netbox .page-h,
.netbox .section-h,
.netbox .section-heading,
.netbox .topic-title {
  color: #d1c2a5;
}.netbox .block-subtitle,
.netbox .h-secondary,
.netbox .section-tag,
.netbox .sub-heading,
.netbox .tagline-h {
  color: #00bf32;
  text-align: center;
}
.netbox .domwrap,
.netbox .text-wrapper {
  color: #ffffff;
  text-align: center;
}.netbox .block-title,
.netbox .chapter-title,
.netbox .header-text,
.netbox .lead-h2,
.netbox .main-heading,
.netbox .page-h,
.netbox .section-h,
.netbox .section-heading,
.netbox .topic-title,
.netbox .block-action,
.netbox .cta-link,
.netbox .lead-btn,
.netbox .page-btn,
.netbox .primary-cta,
.netbox .section-action {
  text-align: center;
  color: #ffffff;
}
.fieldlayer {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("images/smooth1.jpg");
}
.fieldlayer .navwrap {
  background-color: #000000;
  opacity: 0.8;
}

.fieldlayer img {
  height: 100%;
  object-fit: cover;
}
.fieldlayer .col-auto {
  width: 100%;
}
.fieldlayer .row {
  margin: 0;
}
.fieldlayer .btn {
  margin-top: 2rem;
}
.fieldlayer .btn:hover,
.fieldlayer .btn:focus {
  background: white !important;
  color: #51cf72 !important;
  border-color: white !important;
}
.fieldlayer .content {
  max-width: 500px;
  margin: 5rem auto;
}.fieldlayer .block-subtitle,
.fieldlayer .h-secondary,
.fieldlayer .section-tag,
.fieldlayer .sub-heading,
.fieldlayer .tagline-h {
  color: #00bf32;
  text-align: center;
}.fieldlayer .block-title,
.fieldlayer .chapter-title,
.fieldlayer .header-text,
.fieldlayer .lead-h2,
.fieldlayer .main-heading,
.fieldlayer .page-h,
.fieldlayer .section-h,
.fieldlayer .section-heading,
.fieldlayer .topic-title {
  text-align: center;
  color: #ffffff;
}
.gripbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.gripbox .drawbox {
  position: relative;
  margin: 0;
}
.gripbox .drawbox .content {
  padding: 0;
}
.gripbox .pinbox {
  position: relative;
  z-index: 1;
  margin: 0;
}
.gripbox .pinbox .card {
  padding: 0;
}
.gripbox .stackunit {
  margin-bottom: 40px;
}
.gripbox .domlayer {
  margin-bottom: 20px;
}
.gripbox .domlayer .nodemap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #0f0f0f;
  padding: 7px 14px 6px;
}
.gripbox .domlayer .nodemap .docklayer {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #00bf32;
}
.gripbox .domlayer .nodemap .sectionunit {
  margin-bottom: 0;
}.gripbox .zone .block-title,
.gripbox .zone .chapter-title,
.gripbox .zone .header-text,
.gripbox .zone .lead-h2,
.gripbox .zone .main-heading,
.gripbox .zone .page-h,
.gripbox .zone .section-h,
.gripbox .zone .section-heading,
.gripbox .zone .topic-title {
  margin-bottom: 0;
}.gripbox .zone .block-subtitle,
.gripbox .zone .h-secondary,
.gripbox .zone .section-tag,
.gripbox .zone .sub-heading,
.gripbox .zone .tagline-h {
  margin-bottom: 0;
}
.gripbox .domcore {
  margin-right: -1px;
}
.gripbox .domcore .item {
  margin-bottom: 8px;
}
.gripbox .domcore .item:last-child {
  margin-bottom: 0;
}
.gripbox .domcore .item .item-wrapper {
  height: 100%;
}
.gripbox .domcore .item .item-wrapper .clipbox {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.gripbox .domcore .item .item-wrapper .clipbox .levelwrap {
  width: 24px;
  height: 24px;
}
.gripbox .domcore .item .item-wrapper .clipbox .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #0f0f0f 45%);
}
.gripbox .domcore .item .item-wrapper .clipbox .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #0f0f0f 45%);
}
.gripbox .domcore .item .item-wrapper .clipbox .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #0f0f0f 45%);
}
.gripbox .domcore .item .item-wrapper .clipbox .matrix {
  width: 100%;
  background-color: #0f0f0f;
  margin: 0 -1px;
}
.gripbox .domcore .item .item-wrapper .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.gripbox .domcore .item .item-wrapper .frame_2 .matrix {
  margin: 0 -1px 0 0;
}
.gripbox .domcore .item .item-wrapper .card-box {
  padding: 1px 24px;
  background-color: #0f0f0f;
  position: relative;
  z-index: 2;
  height: 100%;
  will-change: transform;
}
.gripbox .domcore .item .item-wrapper .card-box .viewbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.gripbox .domcore .item .item-wrapper .card-box .viewbox .part {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 7px 14px 6px;
  border: 1px dashed #00bf32;
}
.gripbox .domcore .item .item-wrapper .card-box .viewbox .part .docklayer {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #00bf32;
}
.gripbox .domcore .item .item-wrapper .card-box .viewbox .part .docklayer .nodeunit {
  background-color: #0f0f0f;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.gripbox .domcore .item .item-wrapper .card-box .viewbox .part .item-number {
  margin-bottom: 0;
  white-space: nowrap;
}
.gripbox .domcore .item .item-wrapper .card-box .viewbox::after {
  content: '';
  width: 100%;
  border-top: 1px dashed #00bf32;
}
@media (max-width: 992px) {
  .gripbox .domcore .item .item-wrapper .card-box .viewbox::after {
    content: none;
  }
}
.gripbox .domcore .item .item-wrapper .card-box .item-title {
  margin-bottom: 0;
  font-size: 150%;
}
@media (max-width: 992px) {
  .gripbox .domcore .item .item-wrapper .card-box .item-title {
    line-height: 1.5;
  }
}
.gripbox .sectionunit {
  color: #ffffff;
}.gripbox .block-title,
.gripbox .chapter-title,
.gripbox .header-text,
.gripbox .lead-h2,
.gripbox .main-heading,
.gripbox .page-h,
.gripbox .section-h,
.gripbox .section-heading,
.gripbox .topic-title {
  color: #ffffff;
}.gripbox .block-subtitle,
.gripbox .h-secondary,
.gripbox .section-tag,
.gripbox .sub-heading,
.gripbox .tagline-h {
  color: #ffffff;
}
.gripbox .item-number {
  color: #00bf32;
}
.gripbox .item-title {
  color: #ffffff;
}
.gripbox .sectionunit,
.gripbox .domlayer {
  color: #00bf32;
}
.tilegrid {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.tilegrid .container-fluid {
  padding: 0;
}
.tilegrid .domcore {
  margin: 0;
}
.tilegrid .domcore .card {
  padding: 0;
}
.tilegrid .ridge {
  width: 100%;
  height: 1px;
  background-color: #00bf32;
}
.tilegrid .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 60px 40px 60px 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .tilegrid .nav-wrapper {
    padding: 24px;
    gap: 48px;
  }
}
.tilegrid .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap {
  width: fit-content;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 16px;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #00bf32;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.tilegrid .drawbox {
  padding: 60px 40px 60px 40px;
  background-color: #001706;
  height: 100%;
  border-left: 1px solid #00bf32;
  border-right: 1px solid #00bf32;
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    border-left: none;
    border-right: none;
    border-top: 1px solid #00bf32;
    border-bottom: 1px solid #00bf32;
  }
}.tilegrid .drawbox .block-title,
.tilegrid .drawbox .chapter-title,
.tilegrid .drawbox .header-text,
.tilegrid .drawbox .lead-h2,
.tilegrid .drawbox .main-heading,
.tilegrid .drawbox .page-h,
.tilegrid .drawbox .section-h,
.tilegrid .drawbox .section-heading,
.tilegrid .drawbox .topic-title {
  margin-bottom: 12px;
}
.tilegrid .drawbox .domwrap {
  margin-bottom: 0;
}.tilegrid .drawbox .block-action,
.tilegrid .drawbox .cta-link,
.tilegrid .drawbox .lead-btn,
.tilegrid .drawbox .page-btn,
.tilegrid .drawbox .primary-cta,
.tilegrid .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.tilegrid .patternbox {
  height: 100%;
}
.tilegrid .patternbox .soc-item {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border-top: 1px solid #00bf32;
}
.tilegrid .patternbox .soc-item:first-child {
  border-top: none;
}
.tilegrid .patternbox .soc-item:hover,
.tilegrid .patternbox .soc-item:hover {
  background-color: #00bf32;
}
.tilegrid .patternbox .soc-item:hover .soc-item,
.tilegrid .patternbox .soc-item:hover .soc-item {
  color: #ffffff;
}
.tilegrid .patternbox .soc-item:hover .responsive-iconfont,
.tilegrid .patternbox .soc-item:hover .responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont,
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item .formwrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.tilegrid .patternbox .soc-item a {
  display: block;
}
.tilegrid .patternbox .soc-item a .responsive-iconfont {
  display: inline-flex;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.tilegrid .wrapperbox {
  padding: 40px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .tilegrid .wrapperbox {
    padding: 24px;
  }
}
.tilegrid .list {
  color: #333336;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title {
  color: #333336;
}
.tilegrid .domwrap {
  color: #ffffff;
}
.tilegrid .formwrap {
  color: #ffffff;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title,
.tilegrid .block-action,
.tilegrid .cta-link,
.tilegrid .lead-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-action {
  color: #00bf32;
}
.tilegrid .list,
.tilegrid .item-wrap {
  color: #ffffff;
}
.domcell {
  z-index: 1000;
  width: 100%;
}
.domcell nav.navbar {
  position: fixed;
}
.domcell .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.domcell .nav-link {
  position: relative;
}
.domcell .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .domcell .container {
    flex-wrap: nowrap;
  }
}
.domcell .nav-item:focus,
.domcell .nav-link:focus {
  outline: none;
}
.domcell .navbar {
  min-height: 60px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.domcell .navbar .corewrapbox {
  margin-right: 1rem;
}
.domcell .navbar .corewrapbox img {
  width: auto;
}
.domcell .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.domcell .navbar .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .domcell .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domcell .navbar .corewrapbox img {
    height: 3rem !important;
  }
  .domcell .navbar ul.navbar-nav li {
    margin: auto;
  }
  .domcell .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .domcell .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domcell .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.domcell .navbar-brand .alignbox {
  line-height: inherit !important;
  font-weight: 400;
}
.domcell .navbar-brand .alignbox:hover,
.domcell .navbar-brand .alignbox:focus {
  color: #ffffff !important;
}
.domcell .navbar-brand .corewrapbox a {
  outline: none;
}
.domcell .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domcell ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .domcell ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.domcell .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .domcell .navbar-buttons {
    text-align: left;
  }
}
.domcell .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 32px;
  clip-path: none;
}
@media (max-width: 575px) {
  .domcell .navbar-buttons .btn {
    width: auto !important;
  }
}
.domcell button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.domcell .main-menu {
  padding: 0 1rem;
  position: fixed;
}
.domcell a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domcell .navbar {
    height: 60px;
  }
  .domcell .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.domcell .nav-item {
  padding: 0;
  margin: 0;
}
.domcell .nav-item .nav-link {
  padding: 6px 20px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.domcell .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.domcell .nav-item .nav-link:hover,
.domcell .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.domcell .nav-item .nav-link:hover::after,
.domcell .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.domcell .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .domcell .navbar {
    justify-content: flex-start !important;
  }
  .domcell .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .domcell .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .domcell .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .domcell .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .domcell .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.domcell .pinbox {
  min-height: 60px;
}
.domcell .navbar.main-menu {
  border-bottom: 1px solid #2cc354 !important;
}
.formunit {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("images/dry1.jpg");
  overflow: hidden;
}
.formunit .innerwrapunit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(315deg, #000000 -40%, transparent 50%, transparent 50%, #000000 100%);
}
.formunit .stackunit {
  position: relative;
  z-index: 1;
}.formunit .stackunit .block-title,
.formunit .stackunit .chapter-title,
.formunit .stackunit .header-text,
.formunit .stackunit .lead-h2,
.formunit .stackunit .main-heading,
.formunit .stackunit .page-h,
.formunit .stackunit .section-h,
.formunit .stackunit .section-heading,
.formunit .stackunit .topic-title {
  margin-bottom: 25px;
}
.formunit .stackunit .text-wrapper .domwrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .formunit .stackunit .text-wrapper .domwrap {
    width: 100%;
  }
}.formunit .stackunit .block-action,
.formunit .stackunit .cta-link,
.formunit .stackunit .lead-btn,
.formunit .stackunit .page-btn,
.formunit .stackunit .primary-cta,
.formunit .stackunit .section-action {
  margin-top: 15px;
}.formunit .block-title,
.formunit .chapter-title,
.formunit .header-text,
.formunit .lead-h2,
.formunit .main-heading,
.formunit .page-h,
.formunit .section-h,
.formunit .section-heading,
.formunit .topic-title {
  color: #ffffff;
}
.formunit .domwrap,
.formunit .text-wrapper {
  color: #ffffff;
  text-align: center;
}.formunit .block-action,
.formunit .cta-link,
.formunit .lead-btn,
.formunit .page-btn,
.formunit .primary-cta,
.formunit .section-action,
.formunit .block-title,
.formunit .chapter-title,
.formunit .header-text,
.formunit .lead-h2,
.formunit .main-heading,
.formunit .page-h,
.formunit .section-h,
.formunit .section-heading,
.formunit .topic-title {
  text-align: center;
}
.outerpad {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.outerpad .stackbox {
  margin-bottom: 2.3rem;
}
@media (max-width: 991px) {
  .outerpad .row {
    text-align: center;
  }
}
.outerpad .domwrap {
  color: #ffffff;
}
.tilegrid {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.tilegrid .container-fluid {
  padding: 0;
}
.tilegrid .domcore {
  margin: 0;
}
.tilegrid .domcore .card {
  padding: 0;
}
.tilegrid .ridge {
  width: 100%;
  height: 1px;
  background-color: #00bf32;
}
.tilegrid .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 60px 40px 60px 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .tilegrid .nav-wrapper {
    padding: 24px;
    gap: 48px;
  }
}
.tilegrid .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap {
  width: fit-content;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 16px;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #00bf32;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.tilegrid .drawbox {
  padding: 60px 40px 60px 40px;
  background-color: #001706;
  height: 100%;
  border-left: 1px solid #00bf32;
  border-right: 1px solid #00bf32;
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    border-left: none;
    border-right: none;
    border-top: 1px solid #00bf32;
    border-bottom: 1px solid #00bf32;
  }
}.tilegrid .drawbox .block-title,
.tilegrid .drawbox .chapter-title,
.tilegrid .drawbox .header-text,
.tilegrid .drawbox .lead-h2,
.tilegrid .drawbox .main-heading,
.tilegrid .drawbox .page-h,
.tilegrid .drawbox .section-h,
.tilegrid .drawbox .section-heading,
.tilegrid .drawbox .topic-title {
  margin-bottom: 12px;
}
.tilegrid .drawbox .domwrap {
  margin-bottom: 0;
}.tilegrid .drawbox .block-action,
.tilegrid .drawbox .cta-link,
.tilegrid .drawbox .lead-btn,
.tilegrid .drawbox .page-btn,
.tilegrid .drawbox .primary-cta,
.tilegrid .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.tilegrid .patternbox {
  height: 100%;
}
.tilegrid .patternbox .soc-item {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border-top: 1px solid #00bf32;
}
.tilegrid .patternbox .soc-item:first-child {
  border-top: none;
}
.tilegrid .patternbox .soc-item:hover,
.tilegrid .patternbox .soc-item:hover {
  background-color: #00bf32;
}
.tilegrid .patternbox .soc-item:hover .soc-item,
.tilegrid .patternbox .soc-item:hover .soc-item {
  color: #ffffff;
}
.tilegrid .patternbox .soc-item:hover .responsive-iconfont,
.tilegrid .patternbox .soc-item:hover .responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont,
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item .formwrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.tilegrid .patternbox .soc-item a {
  display: block;
}
.tilegrid .patternbox .soc-item a .responsive-iconfont {
  display: inline-flex;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.tilegrid .wrapperbox {
  padding: 40px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .tilegrid .wrapperbox {
    padding: 24px;
  }
}
.tilegrid .list {
  color: #333336;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title {
  color: #333336;
}
.tilegrid .domwrap {
  color: #ffffff;
}
.tilegrid .formwrap {
  color: #ffffff;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title,
.tilegrid .block-action,
.tilegrid .cta-link,
.tilegrid .lead-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-action {
  color: #00bf32;
}
.tilegrid .list,
.tilegrid .item-wrap {
  color: #ffffff;
}
.domcell {
  z-index: 1000;
  width: 100%;
}
.domcell nav.navbar {
  position: fixed;
}
.domcell .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.domcell .nav-link {
  position: relative;
}
.domcell .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .domcell .container {
    flex-wrap: nowrap;
  }
}
.domcell .nav-item:focus,
.domcell .nav-link:focus {
  outline: none;
}
.domcell .navbar {
  min-height: 60px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.domcell .navbar .corewrapbox {
  margin-right: 1rem;
}
.domcell .navbar .corewrapbox img {
  width: auto;
}
.domcell .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.domcell .navbar .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .domcell .navbar .nav-item .nav-link::before {
    display: none;
  }
  .domcell .navbar .corewrapbox img {
    height: 3rem !important;
  }
  .domcell .navbar ul.navbar-nav li {
    margin: auto;
  }
  .domcell .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .domcell .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.domcell .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.domcell .navbar-brand .alignbox {
  line-height: inherit !important;
  font-weight: 400;
}
.domcell .navbar-brand .alignbox:hover,
.domcell .navbar-brand .alignbox:focus {
  color: #ffffff !important;
}
.domcell .navbar-brand .corewrapbox a {
  outline: none;
}
.domcell .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.domcell ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .domcell ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.domcell .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .domcell .navbar-buttons {
    text-align: left;
  }
}
.domcell .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 32px;
  clip-path: none;
}
@media (max-width: 575px) {
  .domcell .navbar-buttons .btn {
    width: auto !important;
  }
}
.domcell button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.domcell .main-menu {
  padding: 0 1rem;
  position: fixed;
}
.domcell a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .domcell .navbar {
    height: 60px;
  }
  .domcell .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.domcell .nav-item {
  padding: 0;
  margin: 0;
}
.domcell .nav-item .nav-link {
  padding: 6px 20px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.domcell .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.domcell .nav-item .nav-link:hover,
.domcell .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.domcell .nav-item .nav-link:hover::after,
.domcell .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.domcell .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .domcell .navbar {
    justify-content: flex-start !important;
  }
  .domcell .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .domcell .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .domcell .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .domcell .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .domcell .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.domcell .pinbox {
  min-height: 60px;
}
.domcell .navbar.main-menu {
  border-bottom: 1px solid #2cc354 !important;
}
.layoutnode {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("images/yellowpattern1.jpg");
}
.layoutnode .tilewrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #000000 0%, transparent 50%, #000000 65%);
  pointer-events: none;
}
.layoutnode .card {
  justify-content: flex-end;
}
.layoutnode .drawbox {
  position: relative;
  z-index: 1;
}
.layoutnode .drawbox .stackunit {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .layoutnode .drawbox .stackunit {
    margin-bottom: 40px;
  }
}.layoutnode .drawbox .stackunit .block-title,
.layoutnode .drawbox .stackunit .chapter-title,
.layoutnode .drawbox .stackunit .header-text,
.layoutnode .drawbox .stackunit .lead-h2,
.layoutnode .drawbox .stackunit .main-heading,
.layoutnode .drawbox .stackunit .page-h,
.layoutnode .drawbox .stackunit .section-h,
.layoutnode .drawbox .stackunit .section-heading,
.layoutnode .drawbox .stackunit .topic-title {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(0deg, #ffffff 0%, #00bf32 100%);
  margin-bottom: 0;
}.layoutnode .drawbox .stackunit .block-subtitle,
.layoutnode .drawbox .stackunit .h-secondary,
.layoutnode .drawbox .stackunit .section-tag,
.layoutnode .drawbox .stackunit .sub-heading,
.layoutnode .drawbox .stackunit .tagline-h {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .layoutnode .drawbox .name-wrapper {
    margin-bottom: 40px;
  }
}
.layoutnode .drawbox .name-wrapper .name-wrap {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  width: 65%;
}
@media (max-width: 1440px) {
  .layoutnode .drawbox .name-wrapper .name-wrap {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .layoutnode .drawbox .name-wrapper .name-wrap {
    width: 100%;
  }
}
.layoutnode .drawbox .name-wrapper .name-wrap .pack .viewnode {
  margin-bottom: 8px;
}
.layoutnode .pinbox {
  position: relative;
  z-index: 1;
}
.layoutnode .pinbox .domwrap {
  margin-bottom: 0;
}
.layoutnode .pinbox .tags-wrapper {
  margin-top: 24px;
}
.layoutnode .pinbox .tags-wrapper .tags-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: fit-content;
  gap: 16px;
}
@media (max-width: 992px) {
  .layoutnode .pinbox .tags-wrapper .tags-wrap {
    justify-content: flex-start;
  }
}
.layoutnode .pinbox .tags-wrapper .tags-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .layoutnode .pinbox .tags-wrapper .tags-wrap .list {
    justify-content: flex-start;
  }
}
.layoutnode .pinbox .tags-wrapper .tags-wrap .list .item-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 10px 24px 10px 48px;
  border: 1px solid #00bf32;
  background-color: #000000;
}
.layoutnode .pinbox .tags-wrapper .tags-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #00bf32;
  box-shadow: 0 0 15px -2px #00bf32, 0 0 20px 0 #00bf32;
}.layoutnode .pinbox .tags-wrapper .tags-wrap .block-action,
.layoutnode .pinbox .tags-wrapper .tags-wrap .cta-link,
.layoutnode .pinbox .tags-wrapper .tags-wrap .lead-btn,
.layoutnode .pinbox .tags-wrapper .tags-wrap .page-btn,
.layoutnode .pinbox .tags-wrapper .tags-wrap .primary-cta,
.layoutnode .pinbox .tags-wrapper .tags-wrap .section-action {
  margin-top: -9.6px;
  margin-bottom: -9.6px;
}.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: #ffffff;
}.layoutnode .block-subtitle,
.layoutnode .h-secondary,
.layoutnode .section-tag,
.layoutnode .sub-heading,
.layoutnode .tagline-h {
  color: #ffffff;
}
.layoutnode .viewnode {
  color: #ffffff;
}
.layoutnode .domwrap {
  color: #ffffff;
  text-align: right;
}
@media (max-width: 992px) {
  .layoutnode .domwrap {
    text-align: left;
  }
}
.layoutnode .list {
  color: #8c8c8c;
}.layoutnode .tags-wrapper,
.layoutnode .list,
.layoutnode .block-action,
.layoutnode .cta-link,
.layoutnode .lead-btn,
.layoutnode .page-btn,
.layoutnode .primary-cta,
.layoutnode .section-action {
  text-align: right;
}
@media (max-width: 992px) {.layoutnode .tags-wrapper,
.layoutnode .list,
.layoutnode .block-action,
.layoutnode .cta-link,
.layoutnode .lead-btn,
.layoutnode .page-btn,
.layoutnode .primary-cta,
.layoutnode .section-action {
    text-align: left;
  }
}
.layoutnode .list,
.layoutnode .item-wrap,
.layoutnode .tags-wrapper {
  color: #00bf32;
}
.inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f0f0f;
}
.inner .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .inner .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .inner .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .inner .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .inner .container {
    padding: 0 16px;
  }
}
.inner .row {
  justify-content: center;
}.inner .drawbox .block-subtitle,
.inner .drawbox .h-secondary,
.inner .drawbox .section-tag,
.inner .drawbox .sub-heading,
.inner .drawbox .tagline-h {
  margin-bottom: 32px;
}.inner .drawbox .block-title,
.inner .drawbox .chapter-title,
.inner .drawbox .header-text,
.inner .drawbox .lead-h2,
.inner .drawbox .main-heading,
.inner .drawbox .page-h,
.inner .drawbox .section-h,
.inner .drawbox .section-heading,
.inner .drawbox .topic-title {
  margin-bottom: 16px;
}
.inner .drawbox .domwrap {
  margin-bottom: 0;
}.inner .block-title,
.inner .chapter-title,
.inner .header-text,
.inner .lead-h2,
.inner .main-heading,
.inner .page-h,
.inner .section-h,
.inner .section-heading,
.inner .topic-title {
  color: #ffffff;
  text-align: center;
}.inner .block-subtitle,
.inner .h-secondary,
.inner .section-tag,
.inner .sub-heading,
.inner .tagline-h {
  color: #00bf32;
  text-align: center;
}
.inner .domwrap {
  color: #ffffff;
  text-align: center;
}
.treebox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.treebox .domcore {
  margin: 0 -24px;
}
.treebox .domcore .card {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .treebox .drawbox {
    margin-bottom: 48px;
  }
}
.treebox .drawbox .sectionunit {
  margin-bottom: 12px;
}.treebox .drawbox .zone .block-title,
.treebox .drawbox .zone .chapter-title,
.treebox .drawbox .zone .header-text,
.treebox .drawbox .zone .lead-h2,
.treebox .drawbox .zone .main-heading,
.treebox .drawbox .zone .page-h,
.treebox .drawbox .zone .section-h,
.treebox .drawbox .zone .section-heading,
.treebox .drawbox .zone .topic-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {.treebox .drawbox .zone .block-title,
.treebox .drawbox .zone .chapter-title,
.treebox .drawbox .zone .header-text,
.treebox .drawbox .zone .lead-h2,
.treebox .drawbox .zone .main-heading,
.treebox .drawbox .zone .page-h,
.treebox .drawbox .zone .section-h,
.treebox .drawbox .zone .section-heading,
.treebox .drawbox .zone .topic-title {
    width: 100%;
  }
}
.treebox .drawbox .text-wrapper .domwrap {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .treebox .drawbox .text-wrapper .domwrap {
    width: 100%;
  }
}.treebox .drawbox .block-action,
.treebox .drawbox .cta-link,
.treebox .drawbox .lead-btn,
.treebox .drawbox .page-btn,
.treebox .drawbox .primary-cta,
.treebox .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.treebox .formcore {
  border: 1px solid #00bf32;
  padding: 12px;
}
.treebox .formcore img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .treebox .formcore img {
    height: 300px;
  }
}
.treebox .sectionunit {
  color: #00bf32;
}.treebox .block-title,
.treebox .chapter-title,
.treebox .header-text,
.treebox .lead-h2,
.treebox .main-heading,
.treebox .page-h,
.treebox .section-h,
.treebox .section-heading,
.treebox .topic-title {
  color: #ff5500;
}
.treebox .domwrap {
  color: #14334b;
}.treebox .block-title,
.treebox .chapter-title,
.treebox .header-text,
.treebox .lead-h2,
.treebox .main-heading,
.treebox .page-h,
.treebox .section-h,
.treebox .section-heading,
.treebox .topic-title,
.treebox .block-action,
.treebox .cta-link,
.treebox .lead-btn,
.treebox .page-btn,
.treebox .primary-cta,
.treebox .section-action,
.treebox .zone {
  color: #ffffff;
}
.treebox .domwrap,
.treebox .text-wrapper {
  color: #ffffff;
}
.docksegment {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0f0f0f;
}
.docksegment .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .docksegment .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .docksegment .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .docksegment .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .docksegment .container {
    padding: 0 16px;
  }
}
.docksegment .row {
  justify-content: center;
}.docksegment .drawbox .block-subtitle,
.docksegment .drawbox .h-secondary,
.docksegment .drawbox .section-tag,
.docksegment .drawbox .sub-heading,
.docksegment .drawbox .tagline-h {
  margin-bottom: 32px;
}.docksegment .drawbox .block-title,
.docksegment .drawbox .chapter-title,
.docksegment .drawbox .header-text,
.docksegment .drawbox .lead-h2,
.docksegment .drawbox .main-heading,
.docksegment .drawbox .page-h,
.docksegment .drawbox .section-h,
.docksegment .drawbox .section-heading,
.docksegment .drawbox .topic-title {
  margin-bottom: 16px;
}
.docksegment .drawbox .domwrap {
  margin-bottom: 0;
}.docksegment .block-title,
.docksegment .chapter-title,
.docksegment .header-text,
.docksegment .lead-h2,
.docksegment .main-heading,
.docksegment .page-h,
.docksegment .section-h,
.docksegment .section-heading,
.docksegment .topic-title {
  color: #ffffff;
  text-align: center;
}.docksegment .block-subtitle,
.docksegment .h-secondary,
.docksegment .section-tag,
.docksegment .sub-heading,
.docksegment .tagline-h {
  color: #00bf32;
  text-align: center;
}
.docksegment .domwrap {
  color: #ffffff;
  text-align: center;
}
.gridunitbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("images/still1.jpeg");
}.gridunitbox .drawbox .stackunit .block-title,
.gridunitbox .drawbox .stackunit .chapter-title,
.gridunitbox .drawbox .stackunit .header-text,
.gridunitbox .drawbox .stackunit .lead-h2,
.gridunitbox .drawbox .stackunit .main-heading,
.gridunitbox .drawbox .stackunit .page-h,
.gridunitbox .drawbox .stackunit .section-h,
.gridunitbox .drawbox .stackunit .section-heading,
.gridunitbox .drawbox .stackunit .topic-title {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {.gridunitbox .drawbox .stackunit .block-title,
.gridunitbox .drawbox .stackunit .chapter-title,
.gridunitbox .drawbox .stackunit .header-text,
.gridunitbox .drawbox .stackunit .lead-h2,
.gridunitbox .drawbox .stackunit .main-heading,
.gridunitbox .drawbox .stackunit .page-h,
.gridunitbox .drawbox .stackunit .section-h,
.gridunitbox .drawbox .stackunit .section-heading,
.gridunitbox .drawbox .stackunit .topic-title {
    width: 50%;
  }
}
@media (max-width: 992px) {.gridunitbox .drawbox .stackunit .block-title,
.gridunitbox .drawbox .stackunit .chapter-title,
.gridunitbox .drawbox .stackunit .header-text,
.gridunitbox .drawbox .stackunit .lead-h2,
.gridunitbox .drawbox .stackunit .main-heading,
.gridunitbox .drawbox .stackunit .page-h,
.gridunitbox .drawbox .stackunit .section-h,
.gridunitbox .drawbox .stackunit .section-heading,
.gridunitbox .drawbox .stackunit .topic-title {
    width: 100%;
  }
}
.gridunitbox .drawbox .text-wrap .domwrap {
  display: inline-flex;
  width: 30%;
  margin-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 1440px) {
  .gridunitbox .drawbox .text-wrap .domwrap {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .gridunitbox .drawbox .text-wrap .domwrap {
    width: 100%;
  }
}.gridunitbox .drawbox .block-action,
.gridunitbox .drawbox .cta-link,
.gridunitbox .drawbox .lead-btn,
.gridunitbox .drawbox .page-btn,
.gridunitbox .drawbox .primary-cta,
.gridunitbox .drawbox .section-action {
  margin-top: 20px;
}.gridunitbox .block-title,
.gridunitbox .chapter-title,
.gridunitbox .header-text,
.gridunitbox .lead-h2,
.gridunitbox .main-heading,
.gridunitbox .page-h,
.gridunitbox .section-h,
.gridunitbox .section-heading,
.gridunitbox .topic-title {
  color: #ffffff;
}
.gridunitbox .domwrap {
  color: #ffffff;
}
.tilegrid {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.tilegrid .container-fluid {
  padding: 0;
}
.tilegrid .domcore {
  margin: 0;
}
.tilegrid .domcore .card {
  padding: 0;
}
.tilegrid .ridge {
  width: 100%;
  height: 1px;
  background-color: #00bf32;
}
.tilegrid .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 60px 40px 60px 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .tilegrid .nav-wrapper {
    padding: 24px;
    gap: 48px;
  }
}
.tilegrid .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap {
  width: fit-content;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 16px;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #00bf32;
}
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.tilegrid .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.tilegrid .drawbox {
  padding: 60px 40px 60px 40px;
  background-color: #001706;
  height: 100%;
  border-left: 1px solid #00bf32;
  border-right: 1px solid #00bf32;
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .tilegrid .drawbox {
    border-left: none;
    border-right: none;
    border-top: 1px solid #00bf32;
    border-bottom: 1px solid #00bf32;
  }
}.tilegrid .drawbox .block-title,
.tilegrid .drawbox .chapter-title,
.tilegrid .drawbox .header-text,
.tilegrid .drawbox .lead-h2,
.tilegrid .drawbox .main-heading,
.tilegrid .drawbox .page-h,
.tilegrid .drawbox .section-h,
.tilegrid .drawbox .section-heading,
.tilegrid .drawbox .topic-title {
  margin-bottom: 12px;
}
.tilegrid .drawbox .domwrap {
  margin-bottom: 0;
}.tilegrid .drawbox .block-action,
.tilegrid .drawbox .cta-link,
.tilegrid .drawbox .lead-btn,
.tilegrid .drawbox .page-btn,
.tilegrid .drawbox .primary-cta,
.tilegrid .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.tilegrid .patternbox {
  height: 100%;
}
.tilegrid .patternbox .soc-item {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border-top: 1px solid #00bf32;
}
.tilegrid .patternbox .soc-item:first-child {
  border-top: none;
}
.tilegrid .patternbox .soc-item:hover,
.tilegrid .patternbox .soc-item:hover {
  background-color: #00bf32;
}
.tilegrid .patternbox .soc-item:hover .soc-item,
.tilegrid .patternbox .soc-item:hover .soc-item {
  color: #ffffff;
}
.tilegrid .patternbox .soc-item:hover .responsive-iconfont,
.tilegrid .patternbox .soc-item:hover .responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont,
.tilegrid .patternbox .soc-item:hover a.responsive-iconfont {
  color: #ffffff !important;
}
.tilegrid .patternbox .soc-item .formwrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.tilegrid .patternbox .soc-item a {
  display: block;
}
.tilegrid .patternbox .soc-item a .responsive-iconfont {
  display: inline-flex;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.tilegrid .wrapperbox {
  padding: 40px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .tilegrid .wrapperbox {
    padding: 24px;
  }
}
.tilegrid .list {
  color: #333336;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title {
  color: #333336;
}
.tilegrid .domwrap {
  color: #ffffff;
}
.tilegrid .formwrap {
  color: #ffffff;
}.tilegrid .block-title,
.tilegrid .chapter-title,
.tilegrid .header-text,
.tilegrid .lead-h2,
.tilegrid .main-heading,
.tilegrid .page-h,
.tilegrid .section-h,
.tilegrid .section-heading,
.tilegrid .topic-title,
.tilegrid .block-action,
.tilegrid .cta-link,
.tilegrid .lead-btn,
.tilegrid .page-btn,
.tilegrid .primary-cta,
.tilegrid .section-action {
  color: #00bf32;
}
.tilegrid .list,
.tilegrid .item-wrap {
  color: #ffffff;
}
.cellunit {
  z-index: 1000;
  width: 100%;
}
.cellunit nav.navbar {
  position: fixed;
}
.cellunit .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cellunit .nav-link {
  position: relative;
}
.cellunit .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .cellunit .container {
    flex-wrap: nowrap;
  }
}
.cellunit .nav-item:focus,
.cellunit .nav-link:focus {
  outline: none;
}
.cellunit .navbar {
  min-height: 60px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.cellunit .navbar .corewrapbox {
  margin-right: 1rem;
}
.cellunit .navbar .corewrapbox img {
  width: auto;
}
.cellunit .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cellunit .navbar .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cellunit .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cellunit .navbar .corewrapbox img {
    height: 3rem !important;
  }
  .cellunit .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cellunit .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cellunit .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cellunit .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cellunit .navbar-brand .alignbox {
  line-height: inherit !important;
  font-weight: 400;
}
.cellunit .navbar-brand .alignbox:hover,
.cellunit .navbar-brand .alignbox:focus {
  color: #ffffff !important;
}
.cellunit .navbar-brand .corewrapbox a {
  outline: none;
}
.cellunit .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cellunit ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cellunit ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cellunit .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cellunit .navbar-buttons {
    text-align: left;
  }
}
.cellunit .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 32px;
  clip-path: none;
}
@media (max-width: 575px) {
  .cellunit .navbar-buttons .btn {
    width: auto !important;
  }
}
.cellunit button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.cellunit .main-menu {
  padding: 0 1rem;
  position: fixed;
}
.cellunit a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cellunit .navbar {
    height: 60px;
  }
  .cellunit .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cellunit .nav-item {
  padding: 0;
  margin: 0;
}
.cellunit .nav-item .nav-link {
  padding: 6px 20px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.cellunit .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cellunit .nav-item .nav-link:hover,
.cellunit .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.cellunit .nav-item .nav-link:hover::after,
.cellunit .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cellunit .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .cellunit .navbar {
    justify-content: flex-start !important;
  }
  .cellunit .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cellunit .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cellunit .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cellunit .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cellunit .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cellunit .pinbox {
  min-height: 60px;
}
.cellunit .navbar.main-menu {
  border-bottom: 1px solid #2cc354 !important;
}
.containbox {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("images/dry1.jpg");
  overflow: hidden;
}
.containbox .innerwrapunit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(315deg, #000000 -40%, transparent 50%, transparent 50%, #000000 100%);
}
.containbox .stackunit {
  position: relative;
  z-index: 1;
}.containbox .stackunit .block-title,
.containbox .stackunit .chapter-title,
.containbox .stackunit .header-text,
.containbox .stackunit .lead-h2,
.containbox .stackunit .main-heading,
.containbox .stackunit .page-h,
.containbox .stackunit .section-h,
.containbox .stackunit .section-heading,
.containbox .stackunit .topic-title {
  margin-bottom: 25px;
}
.containbox .stackunit .text-wrapper .domwrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .containbox .stackunit .text-wrapper .domwrap {
    width: 100%;
  }
}.containbox .stackunit .block-action,
.containbox .stackunit .cta-link,
.containbox .stackunit .lead-btn,
.containbox .stackunit .page-btn,
.containbox .stackunit .primary-cta,
.containbox .stackunit .section-action {
  margin-top: 15px;
}.containbox .block-title,
.containbox .chapter-title,
.containbox .header-text,
.containbox .lead-h2,
.containbox .main-heading,
.containbox .page-h,
.containbox .section-h,
.containbox .section-heading,
.containbox .topic-title {
  color: #ffffff;
}
.containbox .domwrap,
.containbox .text-wrapper {
  color: #ffffff;
  text-align: center;
}.containbox .block-action,
.containbox .cta-link,
.containbox .lead-btn,
.containbox .page-btn,
.containbox .primary-cta,
.containbox .section-action,
.containbox .block-title,
.containbox .chapter-title,
.containbox .header-text,
.containbox .lead-h2,
.containbox .main-heading,
.containbox .page-h,
.containbox .section-h,
.containbox .section-heading,
.containbox .topic-title {
  text-align: center;
}
.segment {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.segment .stackbox {
  margin-bottom: 2.3rem;
}
@media (max-width: 991px) {
  .segment .row {
    text-align: center;
  }
}
.segment .domwrap {
  color: #ffffff;
}
.shellcore {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.shellcore .container-fluid {
  padding: 0;
}
.shellcore .domcore {
  margin: 0;
}
.shellcore .domcore .card {
  padding: 0;
}
.shellcore .ridge {
  width: 100%;
  height: 1px;
  background-color: #00bf32;
}
.shellcore .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 60px 40px 60px 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .shellcore .nav-wrapper {
    padding: 24px;
    gap: 48px;
  }
}
.shellcore .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
}
.shellcore .nav-wrapper .nav-wrap .list .item-wrap {
  width: fit-content;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 16px;
}
.shellcore .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.shellcore .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.shellcore .nav-wrapper .nav-wrap .list .item-wrap:hover,
.shellcore .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #00bf32;
}
.shellcore .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.shellcore .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.shellcore .drawbox {
  padding: 60px 40px 60px 40px;
  background-color: #001706;
  height: 100%;
  border-left: 1px solid #00bf32;
  border-right: 1px solid #00bf32;
}
@media (max-width: 992px) {
  .shellcore .drawbox {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .shellcore .drawbox {
    border-left: none;
    border-right: none;
    border-top: 1px solid #00bf32;
    border-bottom: 1px solid #00bf32;
  }
}.shellcore .drawbox .block-title,
.shellcore .drawbox .chapter-title,
.shellcore .drawbox .header-text,
.shellcore .drawbox .lead-h2,
.shellcore .drawbox .main-heading,
.shellcore .drawbox .page-h,
.shellcore .drawbox .section-h,
.shellcore .drawbox .section-heading,
.shellcore .drawbox .topic-title {
  margin-bottom: 12px;
}
.shellcore .drawbox .domwrap {
  margin-bottom: 0;
}.shellcore .drawbox .block-action,
.shellcore .drawbox .cta-link,
.shellcore .drawbox .lead-btn,
.shellcore .drawbox .page-btn,
.shellcore .drawbox .primary-cta,
.shellcore .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.shellcore .patternbox {
  height: 100%;
}
.shellcore .patternbox .soc-item {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border-top: 1px solid #00bf32;
}
.shellcore .patternbox .soc-item:first-child {
  border-top: none;
}
.shellcore .patternbox .soc-item:hover,
.shellcore .patternbox .soc-item:hover {
  background-color: #00bf32;
}
.shellcore .patternbox .soc-item:hover .soc-item,
.shellcore .patternbox .soc-item:hover .soc-item {
  color: #ffffff;
}
.shellcore .patternbox .soc-item:hover .responsive-iconfont,
.shellcore .patternbox .soc-item:hover .responsive-iconfont {
  color: #ffffff !important;
}
.shellcore .patternbox .soc-item:hover a.responsive-iconfont,
.shellcore .patternbox .soc-item:hover a.responsive-iconfont {
  color: #ffffff !important;
}
.shellcore .patternbox .soc-item .formwrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.shellcore .patternbox .soc-item a {
  display: block;
}
.shellcore .patternbox .soc-item a .responsive-iconfont {
  display: inline-flex;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.shellcore .wrapperbox {
  padding: 40px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .shellcore .wrapperbox {
    padding: 24px;
  }
}
.shellcore .list {
  color: #333336;
}.shellcore .block-title,
.shellcore .chapter-title,
.shellcore .header-text,
.shellcore .lead-h2,
.shellcore .main-heading,
.shellcore .page-h,
.shellcore .section-h,
.shellcore .section-heading,
.shellcore .topic-title {
  color: #333336;
}
.shellcore .domwrap {
  color: #ffffff;
}
.shellcore .formwrap {
  color: #ffffff;
}.shellcore .block-title,
.shellcore .chapter-title,
.shellcore .header-text,
.shellcore .lead-h2,
.shellcore .main-heading,
.shellcore .page-h,
.shellcore .section-h,
.shellcore .section-heading,
.shellcore .topic-title,
.shellcore .block-action,
.shellcore .cta-link,
.shellcore .lead-btn,
.shellcore .page-btn,
.shellcore .primary-cta,
.shellcore .section-action {
  color: #00bf32;
}
.shellcore .list,
.shellcore .item-wrap {
  color: #ffffff;
}
.bar {
  z-index: 1000;
  width: 100%;
}
.bar nav.navbar {
  position: fixed;
}
.bar .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.bar .nav-link {
  position: relative;
}
.bar .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .bar .container {
    flex-wrap: nowrap;
  }
}
.bar .nav-item:focus,
.bar .nav-link:focus {
  outline: none;
}
.bar .navbar {
  min-height: 60px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.bar .navbar .corewrapbox {
  margin-right: 1rem;
}
.bar .navbar .corewrapbox img {
  width: auto;
}
.bar .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.bar .navbar .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .bar .navbar .nav-item .nav-link::before {
    display: none;
  }
  .bar .navbar .corewrapbox img {
    height: 3rem !important;
  }
  .bar .navbar ul.navbar-nav li {
    margin: auto;
  }
  .bar .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .bar .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.bar .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.bar .navbar-brand .alignbox {
  line-height: inherit !important;
  font-weight: 400;
}
.bar .navbar-brand .alignbox:hover,
.bar .navbar-brand .alignbox:focus {
  color: #ffffff !important;
}
.bar .navbar-brand .corewrapbox a {
  outline: none;
}
.bar .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.bar ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .bar ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.bar .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .bar .navbar-buttons {
    text-align: left;
  }
}
.bar .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 32px;
  clip-path: none;
}
@media (max-width: 575px) {
  .bar .navbar-buttons .btn {
    width: auto !important;
  }
}
.bar button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.bar .main-menu {
  padding: 0 1rem;
  position: fixed;
}
.bar a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .bar .navbar {
    height: 60px;
  }
  .bar .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.bar .nav-item {
  padding: 0;
  margin: 0;
}
.bar .nav-item .nav-link {
  padding: 6px 20px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.bar .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.bar .nav-item .nav-link:hover,
.bar .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.bar .nav-item .nav-link:hover::after,
.bar .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.bar .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .bar .navbar {
    justify-content: flex-start !important;
  }
  .bar .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .bar .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .bar .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .bar .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .bar .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.bar .pinbox {
  min-height: 60px;
}
.bar .navbar.main-menu {
  border-bottom: 1px solid #2cc354 !important;
}
.cellbox {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("images/dry1.jpg");
  overflow: hidden;
}
.cellbox .innerwrapunit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(315deg, #000000 -40%, transparent 50%, transparent 50%, #000000 100%);
}
.cellbox .stackunit {
  position: relative;
  z-index: 1;
}.cellbox .stackunit .block-title,
.cellbox .stackunit .chapter-title,
.cellbox .stackunit .header-text,
.cellbox .stackunit .lead-h2,
.cellbox .stackunit .main-heading,
.cellbox .stackunit .page-h,
.cellbox .stackunit .section-h,
.cellbox .stackunit .section-heading,
.cellbox .stackunit .topic-title {
  margin-bottom: 25px;
}
.cellbox .stackunit .text-wrapper .domwrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cellbox .stackunit .text-wrapper .domwrap {
    width: 100%;
  }
}.cellbox .stackunit .block-action,
.cellbox .stackunit .cta-link,
.cellbox .stackunit .lead-btn,
.cellbox .stackunit .page-btn,
.cellbox .stackunit .primary-cta,
.cellbox .stackunit .section-action {
  margin-top: 15px;
}.cellbox .block-title,
.cellbox .chapter-title,
.cellbox .header-text,
.cellbox .lead-h2,
.cellbox .main-heading,
.cellbox .page-h,
.cellbox .section-h,
.cellbox .section-heading,
.cellbox .topic-title {
  color: #ffffff;
}
.cellbox .domwrap,
.cellbox .text-wrapper {
  color: #ffffff;
  text-align: center;
}.cellbox .block-action,
.cellbox .cta-link,
.cellbox .lead-btn,
.cellbox .page-btn,
.cellbox .primary-cta,
.cellbox .section-action,
.cellbox .block-title,
.cellbox .chapter-title,
.cellbox .header-text,
.cellbox .lead-h2,
.cellbox .main-heading,
.cellbox .page-h,
.cellbox .section-h,
.cellbox .section-heading,
.cellbox .topic-title {
  text-align: center;
}
.area {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.area .stackbox {
  margin-bottom: 2.3rem;
}
@media (max-width: 991px) {
  .area .row {
    text-align: center;
  }
}
.area .domwrap {
  color: #ffffff;
}
.nodecol {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.nodecol .container-fluid {
  padding: 0;
}
.nodecol .domcore {
  margin: 0;
}
.nodecol .domcore .card {
  padding: 0;
}
.nodecol .ridge {
  width: 100%;
  height: 1px;
  background-color: #00bf32;
}
.nodecol .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 60px 40px 60px 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .nodecol .nav-wrapper {
    padding: 24px;
    gap: 48px;
  }
}
.nodecol .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
}
.nodecol .nav-wrapper .nav-wrap .list .item-wrap {
  width: fit-content;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 16px;
}
.nodecol .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.nodecol .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.nodecol .nav-wrapper .nav-wrap .list .item-wrap:hover,
.nodecol .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #00bf32;
}
.nodecol .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.nodecol .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.nodecol .drawbox {
  padding: 60px 40px 60px 40px;
  background-color: #001706;
  height: 100%;
  border-left: 1px solid #00bf32;
  border-right: 1px solid #00bf32;
}
@media (max-width: 992px) {
  .nodecol .drawbox {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .nodecol .drawbox {
    border-left: none;
    border-right: none;
    border-top: 1px solid #00bf32;
    border-bottom: 1px solid #00bf32;
  }
}.nodecol .drawbox .block-title,
.nodecol .drawbox .chapter-title,
.nodecol .drawbox .header-text,
.nodecol .drawbox .lead-h2,
.nodecol .drawbox .main-heading,
.nodecol .drawbox .page-h,
.nodecol .drawbox .section-h,
.nodecol .drawbox .section-heading,
.nodecol .drawbox .topic-title {
  margin-bottom: 12px;
}
.nodecol .drawbox .domwrap {
  margin-bottom: 0;
}.nodecol .drawbox .block-action,
.nodecol .drawbox .cta-link,
.nodecol .drawbox .lead-btn,
.nodecol .drawbox .page-btn,
.nodecol .drawbox .primary-cta,
.nodecol .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.nodecol .patternbox {
  height: 100%;
}
.nodecol .patternbox .soc-item {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border-top: 1px solid #00bf32;
}
.nodecol .patternbox .soc-item:first-child {
  border-top: none;
}
.nodecol .patternbox .soc-item:hover,
.nodecol .patternbox .soc-item:hover {
  background-color: #00bf32;
}
.nodecol .patternbox .soc-item:hover .soc-item,
.nodecol .patternbox .soc-item:hover .soc-item {
  color: #ffffff;
}
.nodecol .patternbox .soc-item:hover .responsive-iconfont,
.nodecol .patternbox .soc-item:hover .responsive-iconfont {
  color: #ffffff !important;
}
.nodecol .patternbox .soc-item:hover a.responsive-iconfont,
.nodecol .patternbox .soc-item:hover a.responsive-iconfont {
  color: #ffffff !important;
}
.nodecol .patternbox .soc-item .formwrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.nodecol .patternbox .soc-item a {
  display: block;
}
.nodecol .patternbox .soc-item a .responsive-iconfont {
  display: inline-flex;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.nodecol .wrapperbox {
  padding: 40px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .nodecol .wrapperbox {
    padding: 24px;
  }
}
.nodecol .list {
  color: #333336;
}.nodecol .block-title,
.nodecol .chapter-title,
.nodecol .header-text,
.nodecol .lead-h2,
.nodecol .main-heading,
.nodecol .page-h,
.nodecol .section-h,
.nodecol .section-heading,
.nodecol .topic-title {
  color: #333336;
}
.nodecol .domwrap {
  color: #ffffff;
}
.nodecol .formwrap {
  color: #ffffff;
}.nodecol .block-title,
.nodecol .chapter-title,
.nodecol .header-text,
.nodecol .lead-h2,
.nodecol .main-heading,
.nodecol .page-h,
.nodecol .section-h,
.nodecol .section-heading,
.nodecol .topic-title,
.nodecol .block-action,
.nodecol .cta-link,
.nodecol .lead-btn,
.nodecol .page-btn,
.nodecol .primary-cta,
.nodecol .section-action {
  color: #00bf32;
}
.nodecol .list,
.nodecol .item-wrap {
  color: #ffffff;
}
.gridcell {
  z-index: 1000;
  width: 100%;
}
.gridcell nav.navbar {
  position: fixed;
}
.gridcell .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.gridcell .nav-link {
  position: relative;
}
.gridcell .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .gridcell .container {
    flex-wrap: nowrap;
  }
}
.gridcell .nav-item:focus,
.gridcell .nav-link:focus {
  outline: none;
}
.gridcell .navbar {
  min-height: 60px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}
.gridcell .navbar .corewrapbox {
  margin-right: 1rem;
}
.gridcell .navbar .corewrapbox img {
  width: auto;
}
.gridcell .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.gridcell .navbar .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .gridcell .navbar .nav-item .nav-link::before {
    display: none;
  }
  .gridcell .navbar .corewrapbox img {
    height: 3rem !important;
  }
  .gridcell .navbar ul.navbar-nav li {
    margin: auto;
  }
  .gridcell .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .gridcell .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.gridcell .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.gridcell .navbar-brand .alignbox {
  line-height: inherit !important;
  font-weight: 400;
}
.gridcell .navbar-brand .alignbox:hover,
.gridcell .navbar-brand .alignbox:focus {
  color: #ffffff !important;
}
.gridcell .navbar-brand .corewrapbox a {
  outline: none;
}
.gridcell .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.gridcell ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .gridcell ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.gridcell .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .gridcell .navbar-buttons {
    text-align: left;
  }
}
.gridcell .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 32px;
  clip-path: none;
}
@media (max-width: 575px) {
  .gridcell .navbar-buttons .btn {
    width: auto !important;
  }
}
.gridcell button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}

.gridcell .main-menu {
  padding: 0 1rem;
  position: fixed;
}
.gridcell a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .gridcell .navbar {
    height: 60px;
  }
  .gridcell .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.gridcell .nav-item {
  padding: 0;
  margin: 0;
}
.gridcell .nav-item .nav-link {
  padding: 6px 20px 5px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  z-index: 1;
}
.gridcell .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.gridcell .nav-item .nav-link:hover,
.gridcell .nav-item .nav-link:focus {
  background-color: transparent;
  color: #ffffff !important;
}
.gridcell .nav-item .nav-link:hover::after,
.gridcell .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.gridcell .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .gridcell .navbar {
    justify-content: flex-start !important;
  }
  .gridcell .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .gridcell .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .gridcell .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .gridcell .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .gridcell .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.gridcell .pinbox {
  min-height: 60px;
}
.gridcell .navbar.main-menu {
  border-bottom: 1px solid #2cc354 !important;
}
.layoutrow {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("images/dry1.jpg");
  overflow: hidden;
}
.layoutrow .innerwrapunit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(315deg, #000000 -40%, transparent 50%, transparent 50%, #000000 100%);
}
.layoutrow .stackunit {
  position: relative;
  z-index: 1;
}.layoutrow .stackunit .block-title,
.layoutrow .stackunit .chapter-title,
.layoutrow .stackunit .header-text,
.layoutrow .stackunit .lead-h2,
.layoutrow .stackunit .main-heading,
.layoutrow .stackunit .page-h,
.layoutrow .stackunit .section-h,
.layoutrow .stackunit .section-heading,
.layoutrow .stackunit .topic-title {
  margin-bottom: 25px;
}
.layoutrow .stackunit .text-wrapper .domwrap {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .layoutrow .stackunit .text-wrapper .domwrap {
    width: 100%;
  }
}.layoutrow .stackunit .block-action,
.layoutrow .stackunit .cta-link,
.layoutrow .stackunit .lead-btn,
.layoutrow .stackunit .page-btn,
.layoutrow .stackunit .primary-cta,
.layoutrow .stackunit .section-action {
  margin-top: 15px;
}.layoutrow .block-title,
.layoutrow .chapter-title,
.layoutrow .header-text,
.layoutrow .lead-h2,
.layoutrow .main-heading,
.layoutrow .page-h,
.layoutrow .section-h,
.layoutrow .section-heading,
.layoutrow .topic-title {
  color: #ffffff;
}
.layoutrow .domwrap,
.layoutrow .text-wrapper {
  color: #ffffff;
  text-align: center;
}.layoutrow .block-action,
.layoutrow .cta-link,
.layoutrow .lead-btn,
.layoutrow .page-btn,
.layoutrow .primary-cta,
.layoutrow .section-action,
.layoutrow .block-title,
.layoutrow .chapter-title,
.layoutrow .header-text,
.layoutrow .lead-h2,
.layoutrow .main-heading,
.layoutrow .page-h,
.layoutrow .section-h,
.layoutrow .section-heading,
.layoutrow .topic-title {
  text-align: center;
}
.stacklayer {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.stacklayer .stackbox {
  margin-bottom: 2.3rem;
}
@media (max-width: 991px) {
  .stacklayer .row {
    text-align: center;
  }
}
.stacklayer .domwrap {
  color: #ffffff;
}
.framepad {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.framepad .container-fluid {
  padding: 0;
}
.framepad .domcore {
  margin: 0;
}
.framepad .domcore .card {
  padding: 0;
}
.framepad .ridge {
  width: 100%;
  height: 1px;
  background-color: #00bf32;
}
.framepad .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 60px 40px 60px 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .framepad .nav-wrapper {
    padding: 24px;
    gap: 48px;
  }
}
.framepad .nav-wrapper .nav-wrap .list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
}
.framepad .nav-wrapper .nav-wrap .list .item-wrap {
  width: fit-content;
  position: relative;
  transition: all .3s ease;
  margin-bottom: 16px;
}
.framepad .nav-wrapper .nav-wrap .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 12px;
  height: 2px;
  background-color: #00bf32;
  transition: all .3s ease;
}
.framepad .nav-wrapper .nav-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.framepad .nav-wrapper .nav-wrap .list .item-wrap:hover,
.framepad .nav-wrapper .nav-wrap .list .item-wrap:focus {
  color: #00bf32;
}
.framepad .nav-wrapper .nav-wrap .list .item-wrap:hover::before,
.framepad .nav-wrapper .nav-wrap .list .item-wrap:focus::before {
  width: 100%;
}
.framepad .drawbox {
  padding: 60px 40px 60px 40px;
  background-color: #001706;
  height: 100%;
  border-left: 1px solid #00bf32;
  border-right: 1px solid #00bf32;
}
@media (max-width: 992px) {
  .framepad .drawbox {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .framepad .drawbox {
    border-left: none;
    border-right: none;
    border-top: 1px solid #00bf32;
    border-bottom: 1px solid #00bf32;
  }
}.framepad .drawbox .block-title,
.framepad .drawbox .chapter-title,
.framepad .drawbox .header-text,
.framepad .drawbox .lead-h2,
.framepad .drawbox .main-heading,
.framepad .drawbox .page-h,
.framepad .drawbox .section-h,
.framepad .drawbox .section-heading,
.framepad .drawbox .topic-title {
  margin-bottom: 12px;
}
.framepad .drawbox .domwrap {
  margin-bottom: 0;
}.framepad .drawbox .block-action,
.framepad .drawbox .cta-link,
.framepad .drawbox .lead-btn,
.framepad .drawbox .page-btn,
.framepad .drawbox .primary-cta,
.framepad .drawbox .section-action {
  margin-top: 14px;
  margin-bottom: -9.6px;
}
.framepad .patternbox {
  height: 100%;
}
.framepad .patternbox .soc-item {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s ease;
  border-top: 1px solid #00bf32;
}
.framepad .patternbox .soc-item:first-child {
  border-top: none;
}
.framepad .patternbox .soc-item:hover,
.framepad .patternbox .soc-item:hover {
  background-color: #00bf32;
}
.framepad .patternbox .soc-item:hover .soc-item,
.framepad .patternbox .soc-item:hover .soc-item {
  color: #ffffff;
}
.framepad .patternbox .soc-item:hover .responsive-iconfont,
.framepad .patternbox .soc-item:hover .responsive-iconfont {
  color: #ffffff !important;
}
.framepad .patternbox .soc-item:hover a.responsive-iconfont,
.framepad .patternbox .soc-item:hover a.responsive-iconfont {
  color: #ffffff !important;
}
.framepad .patternbox .soc-item .formwrap {
  margin-bottom: 0;
  transition: all .3s ease;
}
.framepad .patternbox .soc-item a {
  display: block;
}
.framepad .patternbox .soc-item a .responsive-iconfont {
  display: inline-flex;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.framepad .wrapperbox {
  padding: 40px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .framepad .wrapperbox {
    padding: 24px;
  }
}
.framepad .list {
  color: #333336;
}.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: #333336;
}
.framepad .domwrap {
  color: #ffffff;
}
.framepad .formwrap {
  color: #ffffff;
}.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,
.framepad .block-action,
.framepad .cta-link,
.framepad .lead-btn,
.framepad .page-btn,
.framepad .primary-cta,
.framepad .section-action {
  color: #00bf32;
}
.framepad .list,
.framepad .item-wrap {
  color: #ffffff;
}

.fieldwrap {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: auto;
  width: min(780px, calc(100vw - 32px));
  max-width: 780px;
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.fieldwrap *,
.fieldwrap *::before,
.fieldwrap *::after {
  box-sizing: border-box;
}

.colwrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 18px;
  width: 100%;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffefb 0%, #f8faf5 100%);
  border: 1px solid #dbe4d6;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.colwrap::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7fbf4d 0%, #49a764 50%, #8bcf6b 100%);
}

.colwrap::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 191, 77, 0.12) 0%, rgba(127, 191, 77, 0) 72%);
  pointer-events: none;
}

.floatunit {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nest {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.dialog-icon-wrap {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dfe7da;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(73, 167, 100, 0.10);
}

.outer {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.formpad {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flow {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef8eb;
  border: 1px solid #d8ecd1;
  color: #3d7e48;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wrap {
  margin: 0;
  color: #203126;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 600;
}

.gridcore {
  margin: 0;
  color: #34443a;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.partunit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.doc-links-note {
  display: block;
  color: #6a7d70;
  font-size: 12px;
  line-height: 1.4;
}

.legal-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.legal-links-row a {
  display: inline-block;
  color: #2f8a57;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(47, 138, 87, 0.36);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-links-row a:hover {
  color: #236843;
  border-bottom-color: #236843;
}

.legal-links-row span {
  display: inline-block;
  color: #6a7d70;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.structurebox {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  justify-content: center;
}

#overlayClose {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #8cc84b 0%, #53b46c 100%);
  color: #163120;
  box-shadow: 0 12px 24px rgba(83, 180, 108, 0.18);
}

#overlayClose:hover {
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .fieldwrap {
    width: min(680px, calc(100vw - 28px));
    max-width: 680px;
  }

  .colwrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .structurebox {
    flex-direction: row;
  }

  #overlayClose {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .fieldwrap {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
  }

  .colwrap {
    padding: 16px;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nest {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .formpad {
    align-items: center;
    text-align: center;
  }

  .flow {
    align-self: center;
  }

  .wrap {
    text-align: center;
    font-size: 18px;
  }

  .gridcore {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .partunit {
    align-items: center;
    text-align: center;
  }

  .legal-links-row {
    justify-content: center;
  }

  .structurebox {
    flex-direction: column;
    width: 100%;
  }

  #overlayClose {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .fieldwrap {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .colwrap {
    padding: 14px;
    border-radius: 18px;
  }

  .dialog-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .outer {
    width: 38px;
    height: 38px;
  }

  .wrap {
    font-size: 17px;
  }

  .doc-links-note,
  .legal-links-row a,
  .legal-links-row span {
    font-size: 12px;
  }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.navbar-brand {
    animation: slideInFromLeft 1s ease-out;
}

.block-single-layout {
  padding: 0 !important;
  background: transparent;
}
.block-single-layout .light-left-body {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 42px;
  background: #f7fff9;
  border: 1px solid #d7f0de;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.10);
  box-sizing: border-box;
}
.block-single-layout #calmBigItem {
  width: 100%;
  color: #123524;
  font-size: 16px;
  display: grid;
  grid-template-columns: 1fr;
}
.block-single-layout #calmBigItem *,
.block-single-layout #calmBigItem *::before,
.block-single-layout #calmBigItem *::after {
  box-sizing: border-box;
}
.block-single-layout #calmBigItem [hidden] {
  display: none !important;
}
.block-single-layout #calmBigItem .view-base-row {
  margin: 0 0 24px;
  padding: 16px 18px;
  background: #ecfdf3;
  border: 1px solid #c7ead3;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #2f5f45;
  text-align: center;
}
.block-single-layout #calmBigItem .label-hidden-field {
  margin-bottom: 20px;
}
.block-single-layout #calmBigItem .fresh-outer-head {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #123524;
  text-align: center;
}
.block-single-layout #calmBigItem .site-wide-head {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #bfe3cb !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  color: #123524 !important;
  font-size: 15px;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}
.block-single-layout #calmBigItem textarea.site-wide-head {
  min-height: 185px;
  resize: vertical;
  text-align: left;
}
.block-single-layout #calmBigItem .site-wide-head::placeholder {
  color: #7aa18a;
  opacity: 1;
}
.block-single-layout #calmBigItem .site-wide-head:focus {
  outline: none;
  border-color: #10b981 !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14) !important;
  background: #ffffff !important;
}
.block-single-layout #calmBigItem .shell-visible-row {
  width: 100%;
  padding: 18px;
  border: 1px solid #cfe8d7;
  border-radius: 16px !important;
  background: #f3fcf6;
  text-align: left;
}
.block-single-layout #calmBigItem .plate-flat-outer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0;
}
.block-single-layout #calmBigItem .form-live-tag {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #10b981;
}
.block-single-layout #calmBigItem .list-secondary-hint {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: #2f5f45;
  cursor: pointer;
}
.block-single-layout #calmBigItem a {
  color: #0f9f6e;
  text-decoration: none;
  font-weight: 600;
}
.block-single-layout #calmBigItem a:hover,
.block-single-layout #calmBigItem a:focus {
  text-decoration: underline;
}
.block-single-layout #calmBigItem .bright-ready-shell {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.block-single-layout #calmBigItem .text-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 15px 30px;
  border: 1px solid #1e5900;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #009a00 0%, #1e5900 100%);
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.22);
}
.block-single-layout #calmBigItem .text-frame:hover,
.block-single-layout #calmBigItem .text-frame:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(16, 185, 129, 0.26);
}
.block-single-layout #calmBigItem .fieldbox {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 16px !important;
  font-size: 14px;
  line-height: 1.6;
}
.block-single-layout #calmBigItem .site-active-grid {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #166534;
}
.block-single-layout #calmBigItem .prime-lite-grid {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.block-single-layout #calmBigItem .calm-thin-layout {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: #5d826a;
  text-align: center;
}
@media (max-width: 767px) {
  .block-single-layout {
    padding: 0 16px !important;
  }
  .block-single-layout .light-left-body {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .block-single-layout #calmBigItem .view-base-row {
    padding: 14px 15px;
    margin-bottom: 18px;
    font-size: 14px;
    border-radius: 14px;
  }
  .block-single-layout #calmBigItem .fresh-outer-head {
    font-size: 13px;
    margin-bottom: 7px;
  }
  .block-single-layout #calmBigItem .site-wide-head {
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 14px !important;
  }
  .block-single-layout #calmBigItem textarea.site-wide-head {
    min-height: 160px;
  }
  .block-single-layout #calmBigItem .shell-visible-row {
    padding: 15px;
    border-radius: 14px !important;
  }
  .block-single-layout #calmBigItem .list-secondary-hint {
    font-size: 13px;
  }
  .block-single-layout #calmBigItem .text-frame {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 14px !important;
  }
}

.fieldwrap {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: auto;
  width: min(780px, calc(100vw - 32px));
  max-width: 780px;
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.fieldwrap *,
.fieldwrap *::before,
.fieldwrap *::after {
  box-sizing: border-box;
}

.fieldwrap.expanded {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fieldwrap.off {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.985);
}

.colwrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 18px;
  width: 100%;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffefb 0%, #f8faf5 100%);
  border: 1px solid #dbe4d6;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.colwrap::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7fbf4d 0%, #49a764 50%, #8bcf6b 100%);
}

.colwrap::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 191, 77, 0.12) 0%, rgba(127, 191, 77, 0) 72%);
  pointer-events: none;
}

.floatunit {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nest {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.dialog-icon-wrap {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dfe7da;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(73, 167, 100, 0.10);
}

.outer {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.formpad {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flow {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef8eb;
  border: 1px solid #d8ecd1;
  color: #3d7e48;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wrap {
  margin: 0;
  color: #203126;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 600;
}

.gridcore {
  margin: 0;
  color: #34443a;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.68;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.partunit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.doc-links-note {
  display: block;
  color: #6a7d70;
  font-size: 12px;
  line-height: 1.4;
}

.legal-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.legal-links-row a {
  display: inline-block;
  color: #2f8a57;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(47, 138, 87, 0.36);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-links-row a:hover {
  color: #236843;
  border-bottom-color: #236843;
}

.legal-links-row span {
  display: inline-block;
  color: #6a7d70;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.structurebox {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  justify-content: center;
}

#overlayClose {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #8cc84b 0%, #53b46c 100%);
  color: #163120;
  box-shadow: 0 12px 24px rgba(83, 180, 108, 0.18);
}

#overlayClose:hover {
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .fieldwrap {
    width: min(680px, calc(100vw - 28px));
    max-width: 680px;
  }

  .colwrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .structurebox {
    flex-direction: row;
  }

  #overlayClose {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .fieldwrap {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
  }

  .colwrap {
    padding: 16px;
    border-radius: 20px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nest {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .formpad {
    align-items: center;
    text-align: center;
  }

  .flow {
    align-self: center;
  }

  .wrap {
    text-align: center;
    font-size: 18px;
  }

  .gridcore {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .partunit {
    align-items: center;
    text-align: center;
  }

  .legal-links-row {
    justify-content: center;
  }

  .structurebox {
    flex-direction: column;
    width: 100%;
  }

  #overlayClose {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .fieldwrap {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .colwrap {
    padding: 14px;
    border-radius: 18px;
  }

  .dialog-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .outer {
    width: 38px;
    height: 38px;
  }

  .wrap {
    font-size: 17px;
  }

  .doc-links-note,
  .legal-links-row a,
  .legal-links-row span {
    font-size: 12px;
  }
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='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%;
}
