@charset "UTF-8";

:root {

  --bs-primary-rgb: 13, 110, 253;
  --bs-info-rgb: 13, 202, 240;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-border-width: 1px;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-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(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-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(--bs-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;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.rowsegment {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .rowsegment {
    font-size: 5rem;
  }
}

.navbox {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .navbox {
    font-size: 4.5rem;
  }
}

.cellunit {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .cellunit {
    font-size: 3rem;
  }
}

.container,
.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-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 {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-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(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-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 {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-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(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-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(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.collapse:not(.show) {
  display: none;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-group {
  border-radius: var(--bs-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--bs-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(--bs-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 {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-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(--bs-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(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-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(--bs-navbar-padding-y) var(--bs-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(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.formwrap {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
 .formwrap .nav-link.show {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-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(--bs-navbar-toggler-focus-width);
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .formwrap {
    flex-direction: row;
  }
  .navbar-expand-lg .formwrap .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-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");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  filter: var(--bs-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root {
  --bs-btn-close-filter: ;
}

:root {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-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%;
  }
}

.d-flex {
  display: flex !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.m-0 {
  margin: 0 !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.navbar-dropdown {
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: #282828; }
  .navbar-dropdown .nestedbox {
    margin-right: 0.8rem;
    transition: margin 0.3s ease-in-out;
    vertical-align: middle; }
    .navbar-dropdown .nestedbox img {
      height: 3.125rem;
      transition: all 0.3s ease-in-out; }
    .navbar-dropdown .nestedbox.contrast-iconfont {
      font-size: 3.125rem;
      line-height: 3.125rem; }
  .navbar-dropdown .pathwrap {
    font-weight: 700;
    white-space: normal;
    vertical-align: -4px;
    line-height: 3.125rem !important; }
    .navbar-dropdown .pathwrap, .navbar-dropdown .pathwrap:hover {
      color: inherit;
      text-decoration: none; }
  .navbar-dropdown .contrast-iconfont + .pathwrap {
    vertical-align: -1px; }
  .navbar-dropdown .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; }

@charset "UTF-8";

@font-face {
  font-family: 'Socicon';
  src:  url('fonts/socicon.eot');
  src:  url('fonts/socicon.eot') format('embedded-opentype'),
    url('fonts/socicon.woff2') format('woff2'),
    url('fonts/socicon.ttf') format('truetype'),
    url('fonts/socicon.woff') format('woff'),
    url('fonts/socicon.svg#socicon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@charset "UTF-8";
section {
  background-color: #ffffff;
}

body {
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  color: #232323;
  position: relative;
}

button {
  background-color: transparent;
  border-color: transparent;
}

section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}

a.contrast-iconfont:hover {
  text-decoration: none;
}

a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}

.contrast-section-title {
  font-style: normal;
  line-height: 1.3;
}

.contrast-section-subtitle {
  line-height: 1.3;
}

.item {
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.rowsegment,
.navbox,
.cellunit,
.inner,
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;
  -webkit-transition-property: background-color, color;
  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;
}

.tilewrap {
  text-align: center;
}

img {
  display: block;
  width: 100%;
}

.card {
  background-color: transparent;
  border: none;
}

.card-box {
  width: 100%;
}

.contrast-section-btn {
  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 .contrast-section-btn {
  margin-left: 0rem;
  margin-right: 0rem;
}

.btn .contrast-iconfont,
.btn.btn-sm .contrast-iconfont {
  order: 1;
  cursor: pointer;
  margin-left: 0.5rem;
  vertical-align: sub;
}

.btn.btn-md .contrast-iconfont,
.btn.btn-md .contrast-iconfont {
  margin-left: 0.8rem;
}

.routebox .nodewrapunit {
  min-height: 100vh;
}

.routebox {
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.map {
  height: 25rem;
  position: relative;
}

@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: -webkit-flex;
}
.menu .navbar-brand span {
  display: flex;
  display: -webkit-flex;
}
.menu .navbar-brand .navbar-brand {
  display: -webkit-flex;
}
.menu .navbar-brand .nestedbox img {
  display: -webkit-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 .formwrap.nav-dropdown {
    display: -webkit-flex;
  }
}
@media (max-width: 767px) {
  .menu .navbar-collapse {
    max-height: 80vh;
  }
}

.nav-link .contrast-iconfont {
  margin-right: 0.5rem;
}

.navbar {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
}

.navbar-collapse {
  -webkit-flex-basis: 100%;
  -webkit-flex-grow: 1;
  -webkit-align-items: center;
}

.nav-dropdown .link {
  padding: 0.667em 1.667em !important;
  margin: 0 !important;
}

.nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
}

.row {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
}

.justify-content-center {
  -webkit-justify-content: center;
}

.card-wrapper {
  -webkit-flex: 1;
}

.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 .contrast-section-btn {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

form .btn {
  min-height: 48px;
}

.nodewrapunit {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

ul {
  margin-bottom: 2.3125rem;
}

.container,
.container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > [class*=col] {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 72px;
    padding-right: 72px;
  }
}
@media (max-width: 1440px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 992px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@font-face {
  font-family: 'usability2';
  font-display: swap;
  src:  url('fonts/alignment2.eot');
  src:  url('fonts/alignment2.eot') format('embedded-opentype'),
    url('fonts/alignment2.woff2') format('woff2'),
    url('fonts/alignment2.woff') format('woff'),
    url('fonts/alignment2.ttf') format('truetype'),
    url('fonts/alignment2.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="mobile-"], [class*=" mobile-"] {
  
  font-family: 'usability2' !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;
}
.mobile-mockup-info:before {
  content: "\e93e";
}
.mobile-mockup-letter:before {
  content: "\e945";
}

.btn {
  border-width: 2px;
}
body {
  font-family: Hubot Sans;
}
.rowsegment {
  font-family: 'Hubot Sans', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
}
.rowsegment > .contrast-iconfont {
  font-size: 4.375rem;
}
.navbox {
  font-family: 'Hubot Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}
.navbox > .contrast-iconfont {
  font-size: 3.125rem;
}
.cellunit {
  font-family: 'Hubot Sans', sans-serif;
  font-size: 2.21rem;
  line-height: 1.3;
}
.cellunit > .contrast-iconfont {
  font-size: 2.7625rem;
}
.inner {
  font-family: 'Hubot Sans', sans-serif;
  font-size: 1.19rem;
  line-height: 1.5;
}
.inner > .contrast-iconfont {
  font-size: 1.4875rem;
}

@media (max-width: 992px) {
  .rowsegment {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .rowsegment {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .navbox {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .cellunit {
    font-size: 1.768rem;
    font-size: calc( 1.4235rem + (2.21 - 1.4235) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4235rem + (2.21 - 1.4235) * ((100vw - 20rem) / (48 - 20))));
  }
  .inner {
    font-size: 0.952rem;
    font-size: calc( 1.0665rem + (1.19 - 1.0665) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0665rem + (1.19 - 1.0665) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .rowsegment {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 62rem) / (87 - 62))));
  }
  .navbox {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 62rem) / (87 - 62))));
  }
  .cellunit {
    font-size: 1.768rem;
    font-size: calc( 1.4235rem + (2.21 - 1.4235) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.4235rem + (2.21 - 1.4235) * ((100vw - 62rem) / (87 - 62))));
  }
  .inner {
    font-size: 0.952rem;
    font-size: calc( 1.0665rem + (1.19 - 1.0665) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.0665rem + (1.19 - 1.0665) * ((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: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus {
  color: inherit;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: none;
}

.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e36a3d !important;
  border-color: #e36a3d !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus {
  color: inherit;
  background-color: #e98c6a !important;
  border-color: #e98c6a !important;
  box-shadow: none;
}

.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e98c6a !important;
  border-color: #e98c6a !important;
}
.btn-info,
.btn-info:active {
  background-color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
  color: #727272 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-info:disabled {
  color: #727272 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #1f2a44 !important;
  border-color: #1f2a44 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus {
  color: inherit;
  background-color: #2f4067 !important;
  border-color: #2f4067 !important;
  box-shadow: none;
}

.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2f4067 !important;
  border-color: #2f4067 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e36a3d !important;
  border-color: #e36a3d !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus {
  color: inherit;
  background-color: #e98c6a !important;
  border-color: #e98c6a !important;
  box-shadow: none;
}

.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #e98c6a !important;
  border-color: #e98c6a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e3696a !important;
  border-color: #e3696a !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus {
  color: inherit;
  background-color: #eb9495 !important;
  border-color: #eb9495 !important;
  box-shadow: none;
}

.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #eb9495 !important;
  border-color: #eb9495 !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}

.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e36a3d;
  color: #e36a3d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  color: #b04219 !important;
  background-color: transparent !important;
  border-color: #b04219 !important;
  box-shadow: none !important;
}

.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e36a3d !important;
  border-color: #e36a3d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #f2f2f2;
  color: #f2f2f2;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  color: #c7c7c7 !important;
  background-color: transparent !important;
  border-color: #c7c7c7 !important;
  box-shadow: none !important;
}

.btn-info-outline:disabled {
  color: #727272 !important;
  background-color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #1f2a44;
  color: #1f2a44;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  color: #040508 !important;
  background-color: transparent !important;
  border-color: #040508 !important;
  box-shadow: none !important;
}

.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1f2a44 !important;
  border-color: #1f2a44 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #e36a3d;
  color: #e36a3d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  color: #b04219 !important;
  background-color: transparent !important;
  border-color: #b04219 !important;
  box-shadow: none !important;
}

.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e36a3d !important;
  border-color: #e36a3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e3696a;
  color: #e3696a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  color: #cf2728 !important;
  background-color: transparent !important;
  border-color: #cf2728 !important;
  box-shadow: none !important;
}

.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e3696a !important;
  border-color: #e3696a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}

.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-info {
  color: #f2f2f2 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #bfbfbf !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.contrast-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
a,
a:hover {
  color: #000000;
}

body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.contrast-section-btn .btn {
  font-weight: 400;
  flex-direction: row-reverse;
  padding: 10px 20px;
}
.contrast-section-btn .btn .contrast-iconfont {
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s ease;
}
.contrast-section-btn .btn:hover .contrast-iconfont,
.contrast-section-btn .btn:focus .contrast-iconfont {
  transform: rotate(-45deg);
}
.contrast-section-btn .btn-primary:hover,
.contrast-section-btn .btn-secondary:hover,
.contrast-section-btn .btn-success:hover,
.contrast-section-btn .btn-info:hover,
.contrast-section-btn .btn-warning:hover,
.contrast-section-btn .btn-danger:hover,
.contrast-section-btn .btn-primary:focus,
.contrast-section-btn .btn-secondary:focus,
.contrast-section-btn .btn-success:focus,
.contrast-section-btn .btn-info:focus,
.contrast-section-btn .btn-warning:focus,
.contrast-section-btn .btn-danger:focus {
  background-color: #232323 !important;
  color: #ffffff !important;
  border-color: #232323 !important;
}
.contrast-section-btn .btn-black:hover,
.contrast-section-btn .btn-black:focus {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}
img,
.card-wrapper,
.card {
  border-radius: 0 !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.hold .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.hold .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .hold .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hold .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.hold .navbar-dropdown {
  position: relative !important;
}
.hold .btn {
  min-height: auto;
}
@media (min-width: 992px) {
  .hold ul.formwrap {
    padding-bottom: 1.5rem;
  }
  .hold li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .hold .formwrap.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.hold .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .hold .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .hold .nav-item {
    margin: 0 !important;
  }
}
.hold .nav-item .nav-link {
  position: relative;
}
.hold .nav-item .nav-link:hover::before,
.hold .nav-item .nav-link:focus::before {
  width: 100%;
}
.hold .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #e36a3d;
}
.hold .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hold .container {
  display: flex;
  margin: auto;
}
.hold .pathwrap {
  color: #111111;
}
.hold .formwrap {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .hold .formwrap {
    margin: 0;
  }
}
.hold .nav-item:focus,
.hold .nav-link:focus {
  outline: none;
}
.hold .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .hold .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.hold .navbar .nestedbox img {
  object-fit: contain;
  border-radius: 50% !important;
}
.hold .navbar .navbar-collapse {
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .hold .navbar .nav-item {
    padding: .5rem 0;
  }
  .hold .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .hold .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hold .navbar .nestedbox img {
    height: 3rem !important;
  }
  .hold .navbar ul.formwrap {
    overflow: hidden;
  }
  .hold .navbar ul.formwrap li {
    margin: 0;
  }
  .hold .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .hold .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.hold .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.hold .navbar-brand .pathwrap {
  line-height: inherit !important;
  font-weight: 400;
}
.hold .navbar-brand .nestedbox a {
  outline: none;
}
.hold .navbar-expand-lg .formwrap .nav-link {
  padding: 0;
}
.hold ul.formwrap {
  flex-wrap: wrap;
  padding: 0;
}
.hold button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f2f2f2;
}

.hold a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hold .navbar {
    height: 70px;
  }
  .hold .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hold .navbar-dropdown .nestedbox {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .hold .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.hold .contrast-section-btn-main .btn {
  width: fit-content;
  white-space: nowrap;
}
.hold .pathwrap:hover {
  color: #000000;
}
.hold .contrast-section-subtitle {
  color: #f4efe8;
}
.hold .item {
  color: #f4efe8;
  text-align: left;
}
.hold .contrast-section-subtitle {
  text-align: left;
}
.hold a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.tileunit {
  background-image: url("images/dark1.jpg");
  overflow: hidden;
}
.tileunit .layoutrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(315deg, #333333 -40%, transparent 50%, transparent 50%, #333333 100%);
}
.tileunit .flexwrap {
  position: relative;
  z-index: 1;
}
.tileunit .flexwrap .contrast-section-title {
  margin-bottom: 25px;
}
.tileunit .flexwrap .text-wrapper .item {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .tileunit .flexwrap .text-wrapper .item {
    width: 100%;
  }
}
.tileunit .flexwrap .contrast-section-btn {
  margin-top: 15px;
}
.tileunit .contrast-section-title {
  color: #ffffff;
}
.tileunit .item,
.tileunit .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.tileunit .contrast-section-btn,
.tileunit .contrast-section-title {
  text-align: center;
}
.cluster {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cluster .row {
  position: relative;
}
.cluster .row .blur-circle {
  position: absolute;
  top: 0;
  left: 10%;
  width: 30%;
  height: 100%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #bbbbbb 50%, #e36a3d);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cluster .row .blur-circle {
    display: none;
  }
}
.cluster .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cluster .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cluster .row {
    padding: 0 24px;
  }
}
.cluster .title {
  display: flex;
  align-items: center;
}
.cluster .flexwrap {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cluster .flexwrap {
    margin-bottom: 32px;
  }
}
.cluster .flexwrap .contrast-section-title {
  margin-bottom: 32px;
}
.cluster .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.cluster .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #addaff;
  z-index: -1;
}
.cluster .flexwrap .item {
  margin: 0;
}
.cluster .rowunit {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cluster .rowunit {
    margin-bottom: 32px;
  }
}
.cluster .rowunit img {
  max-height: 500px;
  width: 70%;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .cluster .rowunit img {
    width: 100%;
  }
}
.cluster .contrast-section-title {
  color: #000000;
  text-align: center;
}
.cluster .item {
  color: #000000;
  text-align: center;
}
.netbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #1f2a44;
}
.netbox .row {
  position: relative;
}
.netbox .row .blur-circle {
  position: absolute;
  top: 25%;
  left: 34%;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #e36a3d 50%, #e36a3d);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .netbox .row .blur-circle {
    display: none;
  }
}
.netbox .row {
  justify-content: center;
}
.netbox .flexwrap {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .netbox .flexwrap {
    margin-bottom: 32px;
  }
}
.netbox .flexwrap .contrast-section-title {
  margin-bottom: 10px;
}
.netbox .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.netbox .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #434a51;
  z-index: -1;
}
.netbox .flexwrap .item {
  margin-bottom: 0;
}
.netbox .card {
  position: relative;
  z-index: 1;
  padding: 64px;
  border-radius: 0;
}
.netbox .card .contrast-card-title {
  margin-bottom: 30px;
}
.netbox .card .contrast-card-text {
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .netbox .card {
    padding: 32px;
  }
}
.netbox .card.first {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-bottom-right-radius: 16px;
}
.netbox .card.last {
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  border-top-left-radius: 16px;
}
.netbox .contrast-section-title {
  color: #ffffff;
  text-align: center;
}
.netbox .item {
  color: #ffffff;
  text-align: center;
}
.netbox .contrast-card-title {
  color: #111111;
}
.netbox .contrast-card-text {
  color: #ffffff;
}
.netbox .contrast-card-title,
.netbox .contrast-section-btn {
  color: #ffffff;
}
.group {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.group .row {
  position: relative;
}
.group .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #e9eefa 50%, #e9eefa);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .group .row .blur-circle {
    display: none;
  }
}
.group .row {
  justify-content: center;
}
.group .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .group .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .group .row {
    padding: 0 24px;
  }
}
.group .mount {
  padding-right: 40px;
}
@media (max-width: 992px) {
  .group .mount {
    padding: 0 12px;
    margin-bottom: 3rem;
  }
}
.group .text-card {
  padding-left: 40px;
}
@media (max-width: 992px) {
  .group .text-card {
    padding: 0 12px;
  }
}
.group .row.row-wrapper {
  padding: 64px;
  background-color: #1f2a44;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.group .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #e36a3d;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .group .row.row-wrapper {
    padding: 32px;
  }
}
.group .row.row-wrapper .rowunit img {
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.group .row.row-wrapper .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .group .row.row-wrapper .text-wrapper {
    margin-bottom: 42px;
  }
}
.group .row.row-wrapper .text-wrapper .contrast-section-title {
  margin-bottom: 0;
}
.group .row.row-wrapper .text-wrapper .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.group .row.row-wrapper .text-wrapper .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #e9eefa;
  z-index: -1;
}
.group .row.row-wrapper .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.group .row.row-wrapper .text-wrapper .link-wrapper:hover {
  opacity: .75;
}
.group .row.row-wrapper .text-wrapper .item {
  margin: 30px 0 0 0;
}
.group .contrast-section-title {
  color: #ffffff;
}
.group .item {
  color: #ffffff;
}
.coverbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.coverbox .outline {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coverbox .outline .padbox {
  margin: 0;
}
.coverbox .outline .borderbox {
  align-items: flex-end;
}
.coverbox .outline .card {
  position: relative;
  z-index: 1;
  padding: 0;
}
.coverbox .outline .flexwrap {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .coverbox .outline .flexwrap {
    margin-bottom: 32px;
  }
}
.coverbox .outline .flexwrap .contrast-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .coverbox .outline .rowunit {
    margin-bottom: 32px;
  }
}
.coverbox .outline .rowunit img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .coverbox .outline .rowunit img {
    height: 300px;
  }
}
.coverbox .outline .text-wrapper .contrast-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .coverbox .outline .text-wrapper .contrast-section-title {
    margin-bottom: 24px;
  }
}
.coverbox .outline .text-wrapper .item {
  margin-bottom: 0;
}
.coverbox .outline .text-wrapper .contrast-section-btn {
  margin-top: 16px;
}
.coverbox .contrast-section-title {
  color: #fafafa;
}
.coverbox .contrast-section-subtitle {
  color: #e36a3d;
  text-align: center;
}
.coverbox .item {
  color: #000000;
  text-align: center;
}
.coverbox .contrast-section-title,
.coverbox .contrast-section-btn {
  text-align: center;
  color: #000000;
}
.structurebox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #1f2a44;
}
.structurebox .row {
  position: relative;
}
.structurebox .row .blur-circle {
  position: absolute;
  top: 0;
  left: 3rem;
  width: 430px;
  height: 410px;
  border-radius: 100%;
  background-image: linear-gradient(110deg, #1f2a44 30%, #333333);
  filter: blur(64px) blur(64px);
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .structurebox .row .blur-circle {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .structurebox .row .blur-circle {
    display: none;
  }
}
.structurebox .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .structurebox .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .structurebox .row {
    padding: 0 24px;
  }
}
.structurebox .flexwrap {
  position: relative;
  z-index: 1;
}
.structurebox .flexwrap .contrast-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .structurebox .flexwrap .contrast-section-title {
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .structurebox .flexwrap .contrast-section-title {
    margin-bottom: 24px;
  }
}
.structurebox .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.structurebox .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #eed5af;
  z-index: -1;
}
.structurebox .flexwrap .item {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .structurebox .flexwrap .item {
    margin-bottom: 15px;
  }
}
.structurebox .flexwrap .contrast-section-btn .btn {
  width: 90%;
}
@media (max-width: 992px) {
  .structurebox .flexwrap .contrast-section-btn .btn {
    width: auto;
  }
}
.structurebox .icon-wrapper {
  position: relative;
  z-index: 1;
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 992px) {
  .structurebox .icon-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .structurebox .icon-wrapper {
    margin-right: 0;
    margin-bottom: 96px;
    text-align: center;
  }
}
.structurebox .icon-wrapper .contrast-iconfont {
  display: block;
  color: #e36a3d;
  font-size: 350px;
  transform: rotate(-10deg);
}
@media (max-width: 992px) {
  .structurebox .icon-wrapper .contrast-iconfont {
    font-size: 250px;
  }
}
@media (max-width: 768px) {
  .structurebox .icon-wrapper .contrast-iconfont {
    font-size: 150px;
  }
}
.structurebox .contrast-section-title {
  color: #f4efe8;
}
.structurebox .item {
  color: #ffffff;
}
.structurebox .contrast-section-title,
.structurebox .contrast-section-btn {
  color: #ffffff;
}
.nodemap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.nodemap .text-wrapper {
  padding: 0 10%;
  position: relative;
}
@media (max-width: 768px) {
  .nodemap .text-wrapper {
    padding: 0 32px;
  }
}
.nodemap .text-wrapper .contrast-iconfont {
  position: absolute;
  top: 0;
  left: 7%;
  color: #e36a3d;
  font-size: 48px;
  z-index: 1;
}
@media (max-width: 768px) {
  .nodemap .text-wrapper .contrast-iconfont {
    left: 0;
  }
}
.nodemap .text-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #333333;
}
.nodemap .text-wrapper .item {
  position: relative;
  z-index: 2;
  margin: 0;
}
.nodemap .item {
  color: #e8e8e8;
}
.gridlayer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.gridlayer .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .gridlayer .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .gridlayer .container {
    padding: 0 6px;
  }
}
.gridlayer .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #1f2a44;
}
@media (max-width: 1440px) {
  .gridlayer .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .gridlayer .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .gridlayer .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .gridlayer .row {
    padding: 50px 30px;
  }
}
.gridlayer .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.gridlayer .flexwrap {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .gridlayer .flexwrap {
    padding: 0;
  }
}
.gridlayer .flexwrap .contrast-section-title {
  margin-bottom: 50px;
}
.gridlayer .flexwrap .contrast-section-title span {
  color: #01004c;
}
.gridlayer .flexwrap .contrast-section-btn .btn {
  margin-bottom: 0;
}
.gridlayer .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .gridlayer .list-wrapper {
    padding: 0;
  }
}
.gridlayer .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gridlayer .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.gridlayer .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.gridlayer .list-wrapper .list .item-wrap:hover,
.gridlayer .list-wrapper .list .item-wrap:focus {
  color: #e36a3d;
}
.gridlayer .bodybox {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #01004c;
}
.gridlayer .copyright {
  opacity: .9;
  margin-bottom: 0;
  color: #ffffff;
}
.gridlayer .contrast-section-title {
  color: #ffffff;
}
.gridlayer .list {
  color: #ffffff;
}
.hold .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.hold .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .hold .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hold .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.hold .navbar-dropdown {
  position: relative !important;
}
.hold .btn {
  min-height: auto;
}
@media (min-width: 992px) {
  .hold ul.formwrap {
    padding-bottom: 1.5rem;
  }
  .hold li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .hold .formwrap.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.hold .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .hold .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .hold .nav-item {
    margin: 0 !important;
  }
}
.hold .nav-item .nav-link {
  position: relative;
}
.hold .nav-item .nav-link:hover::before,
.hold .nav-item .nav-link:focus::before {
  width: 100%;
}
.hold .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #e36a3d;
}
.hold .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hold .container {
  display: flex;
  margin: auto;
}
.hold .pathwrap {
  color: #111111;
}
.hold .formwrap {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .hold .formwrap {
    margin: 0;
  }
}
.hold .nav-item:focus,
.hold .nav-link:focus {
  outline: none;
}
.hold .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .hold .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.hold .navbar .nestedbox img {
  object-fit: contain;
  border-radius: 50% !important;
}
.hold .navbar .navbar-collapse {
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .hold .navbar .nav-item {
    padding: .5rem 0;
  }
  .hold .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .hold .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hold .navbar .nestedbox img {
    height: 3rem !important;
  }
  .hold .navbar ul.formwrap {
    overflow: hidden;
  }
  .hold .navbar ul.formwrap li {
    margin: 0;
  }
  .hold .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .hold .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.hold .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.hold .navbar-brand .pathwrap {
  line-height: inherit !important;
  font-weight: 400;
}
.hold .navbar-brand .nestedbox a {
  outline: none;
}
.hold .navbar-expand-lg .formwrap .nav-link {
  padding: 0;
}
.hold ul.formwrap {
  flex-wrap: wrap;
  padding: 0;
}
.hold button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f2f2f2;
}

.hold a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hold .navbar {
    height: 70px;
  }
  .hold .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hold .navbar-dropdown .nestedbox {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .hold .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.hold .contrast-section-btn-main .btn {
  width: fit-content;
  white-space: nowrap;
}
.hold .pathwrap:hover {
  color: #000000;
}
.hold .contrast-section-subtitle {
  color: #f4efe8;
}
.hold .item {
  color: #f4efe8;
  text-align: left;
}
.hold .contrast-section-subtitle {
  text-align: left;
}
.hold a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.zoneunit {
  overflow: hidden;
  background-color: #1f2a44;
}
.zoneunit .row {
  position: relative;
}
.zoneunit .row .blur-circle {
  position: absolute;
  top: 0;
  left: 28%;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #2d3a58 50%, #ee5116);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .zoneunit .row .blur-circle {
    display: none;
  }
}
.zoneunit .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .zoneunit .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .zoneunit .row {
    padding: 0 24px;
  }
}
.zoneunit .text-wrapper {
  position: relative;
  z-index: 2;
}
.zoneunit .text-wrapper .contrast-section-title {
  margin: 40px 0;
  transform: rotate(-5deg);
}
.zoneunit .text-wrapper .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.zoneunit .text-wrapper .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #ffb639;
  z-index: -1;
}
.zoneunit .text-wrapper .contentgrid {
  margin: 0 auto;
  width: 80%;
}
.zoneunit .text-wrapper .item {
  margin-bottom: 32px;
}
.zoneunit .text-wrapper .contrast-section-btn {
  margin-bottom: 32px;
}
.zoneunit .contrast-section-title {
  color: #111111;
}
.zoneunit .item,
.zoneunit .contrast-iconfont {
  color: #111111;
  text-align: center;
}
.zoneunit .contentgrid {
  color: #111111;
}
.zoneunit .contrast-section-title,
.zoneunit .contrast-section-btn {
  text-align: center;
  color: #ffffff;
}
.zoneunit .item {
  color: #ffffff;
}
.footwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.footwrap .row {
  position: relative;
}
.footwrap .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #475a84 50%, #cae2e5);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .footwrap .row .blur-circle {
    display: none;
  }
}
.footwrap .row {
  justify-content: center;
}
.footwrap .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .footwrap .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .footwrap .row {
    padding: 0 24px;
  }
}
.footwrap .mount {
  padding-right: 40px;
  padding-right: 16px;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .footwrap .mount {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .footwrap .mount {
    padding: 0 12px;
    margin-bottom: 3rem;
  }
}
.footwrap .text-card {
  padding-left: 40px;
  padding-left: 16px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .footwrap .text-card {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .footwrap .text-card {
    padding: 0 12px;
  }
}
.footwrap .row.row-wrapper {
  padding: 64px;
  background-color: #2d3a58;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.footwrap .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #ee5116;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .footwrap .row.row-wrapper {
    padding: 32px;
  }
}
.footwrap .row.row-wrapper .rowunit img {
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.footwrap .row.row-wrapper .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .footwrap .row.row-wrapper .text-wrapper {
    margin-bottom: 42px;
  }
}
.footwrap .row.row-wrapper .text-wrapper .contrast-section-title {
  margin-bottom: 0;
}
.footwrap .row.row-wrapper .text-wrapper .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.footwrap .row.row-wrapper .text-wrapper .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffb639;
  z-index: -1;
}
.footwrap .row.row-wrapper .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.footwrap .row.row-wrapper .text-wrapper .link-wrapper:hover {
  opacity: .75;
}
.footwrap .row.row-wrapper .text-wrapper .item {
  margin: 30px 0 0 0;
}
.footwrap .contrast-section-title {
  color: #ffffff;
  text-align: center;
}
.footwrap .item {
  color: #ffffff;
  text-align: center;
}
.flexlayer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f9fafb;
}
.flexlayer .row {
  position: relative;
}
.flexlayer .row .blur-circle {
  position: absolute;
  top: 0;
  left: 10%;
  width: 30%;
  height: 100%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #bbbbbb 50%, #e36a3d);
  filter: blur(64px) blur(64px);
  z-index: 1;
  left: auto;
  right: 10%;
}
@media (max-width: 768px) {
  .flexlayer .row .blur-circle {
    display: none;
  }
}
.flexlayer .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .flexlayer .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .flexlayer .row {
    padding: 0 24px;
  }
}
.flexlayer .title {
  display: flex;
  align-items: center;
}
.flexlayer .flexwrap {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .flexlayer .flexwrap {
    margin-bottom: 32px;
  }
}
.flexlayer .flexwrap .contrast-section-title {
  margin-bottom: 32px;
}
.flexlayer .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.flexlayer .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffb639;
  z-index: -1;
}
.flexlayer .flexwrap .item {
  margin: 0;
}
.flexlayer .rowunit {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .flexlayer .rowunit {
    margin-bottom: 32px;
  }
}
.flexlayer .rowunit img {
  max-height: 500px;
  width: 70%;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .flexlayer .rowunit img {
    width: 100%;
  }
}
.flexlayer .contrast-section-title {
  color: #000000;
  text-align: center;
}
.flexlayer .item {
  color: #000000;
  text-align: center;
}
.element {
  padding-top: 1rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.element .rowunit img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .element .rowunit img {
    height: 350px;
  }
}
.element .card-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 40px;
  background-color: #1f2a44;
  margin-top: -10%;
}
@media (max-width: 1440px) {
  .element .card-wrapper {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .element .card-wrapper {
    display: block;
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .element .card-wrapper {
    margin-top: -20%;
  }
}
.element .card-wrapper .contrast-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .element .card-wrapper .contrast-section-title {
    margin-bottom: 16px;
  }
}
.element .card-wrapper .text-wrapper .item {
  margin-bottom: 0;
}
.element .card-wrapper .text-wrapper .contrast-section-btn {
  margin-top: 16px;
}
.element .card-wrapper .text-wrapper .contrast-section-btn .btn {
  margin-bottom: 0;
}
.element .contrast-section-title {
  color: #ffffff;
  text-align: center;
}
.element .item {
  color: #808080;
}
.element .item,
.element .contrast-section-btn {
  color: #ffffff;
  text-align: center;
}
.nodecol {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1f2a44;
}
.nodecol .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .nodecol .container-fluid {
    padding: 0 12px;
  }
}
.nodecol .container-fluid .row {
  padding: 0;
}
.nodecol .row {
  border: 3px solid #ee5116;
  margin-top: -3px;
  border-radius: 5px;
}
.nodecol .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .nodecol .card {
    border-left: 1px solid #ee5116;
  }
}
@media (max-width: 992px) {
  .nodecol .card {
    padding: 48px 20px;
  }
}
.nodecol .card:last-child {
  padding: 0;
}
@media (min-width: 992px) {
  .nodecol .card:last-child {
    border-left: none;
    border-right: 2px solid #ee5116;
  }
}
.nodecol .card .flexwrap {
  margin-bottom: 0;
}
.nodecol .card .flexwrap .contrast-section-title {
  margin-bottom: 28px;
}
.nodecol .card .flexwrap .item {
  margin-bottom: 0;
}
.nodecol .card .rowunit {
  overflow: hidden;
}
.nodecol .card .rowunit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nodecol .card .text-wrapper .item {
  margin-bottom: 0;
}
.nodecol .contrast-section-title {
  color: #ffffff;
  text-align: center;
}
.nodecol .item {
  color: #ffffff;
  text-align: center;
}
.flowbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.flowbox .text-wrapper {
  padding: 0 10%;
  position: relative;
}
@media (max-width: 768px) {
  .flowbox .text-wrapper {
    padding: 0 32px;
  }
}
.flowbox .text-wrapper .contrast-iconfont {
  position: absolute;
  top: 0;
  left: 7%;
  color: #e36a3d;
  font-size: 48px;
  z-index: 1;
}
@media (max-width: 768px) {
  .flowbox .text-wrapper .contrast-iconfont {
    left: 0;
  }
}
.flowbox .text-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #333333;
}
.flowbox .text-wrapper .item {
  position: relative;
  z-index: 2;
  margin: 0;
}
.flowbox .item {
  color: #e8e8e8;
}
.gridlayer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.gridlayer .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .gridlayer .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .gridlayer .container {
    padding: 0 6px;
  }
}
.gridlayer .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #1f2a44;
}
@media (max-width: 1440px) {
  .gridlayer .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .gridlayer .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .gridlayer .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .gridlayer .row {
    padding: 50px 30px;
  }
}
.gridlayer .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.gridlayer .flexwrap {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .gridlayer .flexwrap {
    padding: 0;
  }
}
.gridlayer .flexwrap .contrast-section-title {
  margin-bottom: 50px;
}
.gridlayer .flexwrap .contrast-section-title span {
  color: #01004c;
}
.gridlayer .flexwrap .contrast-section-btn .btn {
  margin-bottom: 0;
}
.gridlayer .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .gridlayer .list-wrapper {
    padding: 0;
  }
}
.gridlayer .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gridlayer .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.gridlayer .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.gridlayer .list-wrapper .list .item-wrap:hover,
.gridlayer .list-wrapper .list .item-wrap:focus {
  color: #e36a3d;
}
.gridlayer .bodybox {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #01004c;
}
.gridlayer .copyright {
  opacity: .9;
  margin-bottom: 0;
  color: #ffffff;
}
.gridlayer .contrast-section-title {
  color: #ffffff;
}
.gridlayer .list {
  color: #ffffff;
}
.hold .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.hold .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .hold .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hold .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.hold .navbar-dropdown {
  position: relative !important;
}
.hold .btn {
  min-height: auto;
}
@media (min-width: 992px) {
  .hold ul.formwrap {
    padding-bottom: 1.5rem;
  }
  .hold li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .hold .formwrap.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.hold .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .hold .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .hold .nav-item {
    margin: 0 !important;
  }
}
.hold .nav-item .nav-link {
  position: relative;
}
.hold .nav-item .nav-link:hover::before,
.hold .nav-item .nav-link:focus::before {
  width: 100%;
}
.hold .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #e36a3d;
}
.hold .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hold .container {
  display: flex;
  margin: auto;
}
.hold .pathwrap {
  color: #111111;
}
.hold .formwrap {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .hold .formwrap {
    margin: 0;
  }
}
.hold .nav-item:focus,
.hold .nav-link:focus {
  outline: none;
}
.hold .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .hold .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.hold .navbar .nestedbox img {
  object-fit: contain;
  border-radius: 50% !important;
}
.hold .navbar .navbar-collapse {
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .hold .navbar .nav-item {
    padding: .5rem 0;
  }
  .hold .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .hold .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hold .navbar .nestedbox img {
    height: 3rem !important;
  }
  .hold .navbar ul.formwrap {
    overflow: hidden;
  }
  .hold .navbar ul.formwrap li {
    margin: 0;
  }
  .hold .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .hold .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.hold .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.hold .navbar-brand .pathwrap {
  line-height: inherit !important;
  font-weight: 400;
}
.hold .navbar-brand .nestedbox a {
  outline: none;
}
.hold .navbar-expand-lg .formwrap .nav-link {
  padding: 0;
}
.hold ul.formwrap {
  flex-wrap: wrap;
  padding: 0;
}
.hold button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f2f2f2;
}

.hold a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hold .navbar {
    height: 70px;
  }
  .hold .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hold .navbar-dropdown .nestedbox {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .hold .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.hold .contrast-section-btn-main .btn {
  width: fit-content;
  white-space: nowrap;
}
.hold .pathwrap:hover {
  color: #000000;
}
.hold .contrast-section-subtitle {
  color: #f4efe8;
}
.hold .item {
  color: #f4efe8;
  text-align: left;
}
.hold .contrast-section-subtitle {
  text-align: left;
}
.hold a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.nest {
  overflow: hidden;
  background-image: url("images/yellow1.jpg");
}
.nest .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .nest .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .nest .row {
    padding: 0 24px;
  }
}
.nest .text-wrapper {
  position: relative;
  z-index: 2;
}
.nest .text-wrapper .contrast-section-title {
  margin: 40px 0;
  transform: rotate(-5deg);
}
.nest .text-wrapper .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.nest .text-wrapper .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #1f2a44;
  z-index: -1;
}
.nest .text-wrapper .contentgrid {
  margin: 0 auto;
  width: 80%;
}
.nest .text-wrapper .item {
  margin-bottom: 32px;
}
.nest .text-wrapper .contrast-section-btn {
  margin-bottom: 32px;
}
.nest .contrast-section-title {
  color: #111111;
}
.nest .item,
.nest .contrast-iconfont {
  color: #111111;
  text-align: center;
}
.nest .contentgrid {
  color: #ffffff;
}
.nest .contrast-section-title,
.nest .contrast-section-btn {
  text-align: center;
  color: #ffffff;
}
.nest .item {
  color: #ffffff;
}
.treebox {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.treebox .row {
  position: relative;
}
.treebox .row .blur-circle {
  position: absolute;
  top: 25%;
  left: 34%;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #bbbbbb 50%, #e36a3d);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .treebox .row .blur-circle {
    display: none;
  }
}
.treebox .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .treebox .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .treebox .row {
    padding: 0 24px;
  }
}
.treebox .row {
  justify-content: center;
}
.treebox .flexwrap {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .treebox .flexwrap {
    margin-bottom: 32px;
  }
}
.treebox .flexwrap .contrast-section-title {
  margin-bottom: 10px;
}
.treebox .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.treebox .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffb639;
  z-index: -1;
}
.treebox .flexwrap .item {
  margin-bottom: 0;
}
.treebox .card {
  position: relative;
  z-index: 1;
  padding: 64px;
  border-radius: 0;
}
.treebox .card .contrast-card-title {
  margin-bottom: 30px;
}
.treebox .card .contrast-card-text {
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .treebox .card {
    padding: 32px;
  }
}
.treebox .card.first {
  border-right: 2px solid #d98f2b;
  border-bottom: 2px solid #d98f2b;
  border-bottom-right-radius: 16px;
}
.treebox .card.last {
  border-left: 2px solid #d98f2b;
  border-top: 2px solid #d98f2b;
  border-top-left-radius: 16px;
}
.treebox .contrast-section-title {
  color: #000000;
  text-align: center;
}
.treebox .item {
  color: #111111;
  text-align: center;
}
.treebox .contrast-card-title {
  color: #111111;
}
.treebox .contrast-card-text {
  color: #000000;
  text-align: left;
}
.treebox .contrast-card-title,
.treebox .contrast-section-btn {
  color: #000000;
  text-align: center;
}
.domtrack {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.domtrack .row {
  position: relative;
}
.domtrack .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #bbbbbb 50%, #e36a3d);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .domtrack .row .blur-circle {
    display: none;
  }
}
.domtrack .row {
  justify-content: center;
}
.domtrack .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .domtrack .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .domtrack .row {
    padding: 0 24px;
  }
}
.domtrack .row.row-wrapper {
  padding: 64px;
  background-color: #1f2a44;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.domtrack .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #ee5116;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .domtrack .row.row-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .domtrack .row.row-wrapper .card {
    margin-bottom: 32px;
  }
}
.domtrack .row.row-wrapper .card .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .domtrack .row.row-wrapper .card .text-wrapper {
    margin-bottom: 42px;
  }
}
.domtrack .row.row-wrapper .card .text-wrapper .contrast-section-title {
  margin-bottom: 0;
}
.domtrack .row.row-wrapper .card .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.domtrack .row.row-wrapper .card .text-wrapper .link-wrapper:hover {
  opacity: .75;
}
.domtrack .row.row-wrapper .card .text-wrapper .item {
  margin: 30px 0 0 0;
}
.domtrack .contrast-section-title {
  color: #f7f7f7;
  text-align: center;
}
.domtrack .item {
  color: #f7f7f7;
  text-align: center;
}
.base {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1f2a44;
}
.base .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .base .container-fluid {
    padding: 0 25px;
  }
}
.base .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .base .container {
    padding: 0 25px;
  }
}
.base .row {
  border: 1px solid #2d3a58;
}
.base .card {
  padding: 0;
}
.base .card .rowunit {
  height: 100%;
  display: flex;
  align-items: center;
}
.base .card .rowunit img {
  height: 100%;
  object-fit: cover;
  max-height: 610px;
}
@media (max-width: 992px) {
  .base .card .rowunit img {
    max-height: 100%;
    height: 300px;
  }
}
.base .flexwrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 70px 60px;
  height: 100%;
  background-color: #2d3a58;
}
@media (max-width: 992px) {
  .base .flexwrap {
    padding: 60px 25px;
  }
}
.base .flexwrap .borderbox {
  width: 100%;
}
.base .flexwrap .borderbox .contrast-section-title {
  margin-bottom: 20px;
}
.base .flexwrap .borderbox .item {
  margin-bottom: 20px;
}
.base .flexwrap .borderbox .contrast-section-btn {
  margin-top: 35px;
}
.base .contrast-section-title {
  color: #ffffff;
}
.base .item {
  color: #ffffff;
  text-align: center;
}
.base .contrast-section-title,
.base .contrast-section-btn {
  color: #ffffff;
  text-align: center;
}
.alignbox {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.alignbox .container,
.alignbox .container-fluid {
  padding: 0 !important;
}
.alignbox .container {
  max-width: 1440px;
}
.alignbox .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #1f2a44;
}
@media (max-width: 991px) {
  .alignbox .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .alignbox .text-box {
    padding: 50px 10px;
  }
}
.alignbox .contrast-section-title {
  color: #ffffff;
}
.alignbox .contrast-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.alignbox .item {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .alignbox .item {
    margin-top: 20px;
  }
}
.alignbox .item a {
  text-decoration: underline;
}
.alignbox .contrast-section-btn {
  margin-top: 34px;
}
.alignbox .contrast-section-subtitle,
.alignbox .contrast-section-btn {
  color: #ffffff;
}
.nodewrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.nodewrap .text-wrapper {
  padding: 0 10%;
  position: relative;
}
@media (max-width: 768px) {
  .nodewrap .text-wrapper {
    padding: 0 32px;
  }
}
.nodewrap .text-wrapper .contrast-iconfont {
  position: absolute;
  top: 0;
  left: 7%;
  color: #e36a3d;
  font-size: 48px;
  z-index: 1;
}
@media (max-width: 768px) {
  .nodewrap .text-wrapper .contrast-iconfont {
    left: 0;
  }
}
.nodewrap .text-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #333333;
}
.nodewrap .text-wrapper .item {
  position: relative;
  z-index: 2;
  margin: 0;
}
.nodewrap .item {
  color: #e8e8e8;
}
.gridlayer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.gridlayer .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .gridlayer .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .gridlayer .container {
    padding: 0 6px;
  }
}
.gridlayer .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #1f2a44;
}
@media (max-width: 1440px) {
  .gridlayer .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .gridlayer .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .gridlayer .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .gridlayer .row {
    padding: 50px 30px;
  }
}
.gridlayer .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.gridlayer .flexwrap {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .gridlayer .flexwrap {
    padding: 0;
  }
}
.gridlayer .flexwrap .contrast-section-title {
  margin-bottom: 50px;
}
.gridlayer .flexwrap .contrast-section-title span {
  color: #01004c;
}
.gridlayer .flexwrap .contrast-section-btn .btn {
  margin-bottom: 0;
}
.gridlayer .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .gridlayer .list-wrapper {
    padding: 0;
  }
}
.gridlayer .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gridlayer .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.gridlayer .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.gridlayer .list-wrapper .list .item-wrap:hover,
.gridlayer .list-wrapper .list .item-wrap:focus {
  color: #e36a3d;
}
.gridlayer .bodybox {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #01004c;
}
.gridlayer .copyright {
  opacity: .9;
  margin-bottom: 0;
  color: #ffffff;
}
.gridlayer .contrast-section-title {
  color: #ffffff;
}
.gridlayer .list {
  color: #ffffff;
}
.hold .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.hold .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .hold .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hold .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.hold .navbar-dropdown {
  position: relative !important;
}
.hold .btn {
  min-height: auto;
}
@media (min-width: 992px) {
  .hold ul.formwrap {
    padding-bottom: 1.5rem;
  }
  .hold li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .hold .formwrap.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.hold .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .hold .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .hold .nav-item {
    margin: 0 !important;
  }
}
.hold .nav-item .nav-link {
  position: relative;
}
.hold .nav-item .nav-link:hover::before,
.hold .nav-item .nav-link:focus::before {
  width: 100%;
}
.hold .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #e36a3d;
}
.hold .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hold .container {
  display: flex;
  margin: auto;
}
.hold .pathwrap {
  color: #111111;
}
.hold .formwrap {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .hold .formwrap {
    margin: 0;
  }
}
.hold .nav-item:focus,
.hold .nav-link:focus {
  outline: none;
}
.hold .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .hold .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.hold .navbar .nestedbox img {
  object-fit: contain;
  border-radius: 50% !important;
}
.hold .navbar .navbar-collapse {
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .hold .navbar .nav-item {
    padding: .5rem 0;
  }
  .hold .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .hold .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hold .navbar .nestedbox img {
    height: 3rem !important;
  }
  .hold .navbar ul.formwrap {
    overflow: hidden;
  }
  .hold .navbar ul.formwrap li {
    margin: 0;
  }
  .hold .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .hold .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.hold .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.hold .navbar-brand .pathwrap {
  line-height: inherit !important;
  font-weight: 400;
}
.hold .navbar-brand .nestedbox a {
  outline: none;
}
.hold .navbar-expand-lg .formwrap .nav-link {
  padding: 0;
}
.hold ul.formwrap {
  flex-wrap: wrap;
  padding: 0;
}
.hold button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f2f2f2;
}

.hold a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hold .navbar {
    height: 70px;
  }
  .hold .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hold .navbar-dropdown .nestedbox {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .hold .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.hold .contrast-section-btn-main .btn {
  width: fit-content;
  white-space: nowrap;
}
.hold .pathwrap:hover {
  color: #000000;
}
.hold .contrast-section-subtitle {
  color: #f4efe8;
}
.hold .item {
  color: #f4efe8;
  text-align: left;
}
.hold .contrast-section-subtitle {
  text-align: left;
}
.hold a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.fieldlayer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
  overflow: hidden;
}
.fieldlayer .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .fieldlayer .col-text {
    padding-right: 28px;
  }
}
@media (max-width: 991px) {
  .fieldlayer .col-text {
    order: 2;
  }
}
.fieldlayer .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .fieldlayer .col-img {
    padding-left: 28px;
  }
}
@media (max-width: 991px) {
  .fieldlayer .col-img {
    order: 1;
  }
}
.fieldlayer .card-title {
  color: #161616;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .fieldlayer .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.fieldlayer .item {
  color: #161616;
  margin-top: 2rem;
  margin-bottom: 0 !important;
  width: 100%;
  max-width: 480px;
}
@media (max-width: 991px) {
  .fieldlayer .item {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.fieldlayer .contrast-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .fieldlayer .contrast-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .fieldlayer .contrast-section-btn {
    width: 100%;
  }
}
.fieldlayer .rowunit {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 510px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .fieldlayer .rowunit {
    height: 360px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .fieldlayer .rowunit {
    height: auto;
  }
}
.fieldlayer .rowunit img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.fieldlayer .strip {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: block;
  width: 560px;
  height: 560px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #bbbbbb 27%, #2d3a58 50%, #e36a3d 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 991px) {
  .fieldlayer .strip {
    width: 320px;
    height: 320px;
    top: -10%;
    right: -5%;
    transform: translate(0, 0);
  }
}
.fieldlayer .card-title,
.fieldlayer .contrast-section-btn {
  color: #ffffff;
}
.fieldlayer .item {
  color: #ffffff;
}
.node {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.node .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .node .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .node .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .node .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .node .container {
    padding: 0 12px;
  }
}
.node .outline {
  display: flex;
  border-radius: 32px;
  padding: 16px;
  background-color: #1f2a44;
}
@media (max-width: 992px) {
  .node .outline {
    display: block;
  }
}
.node .outline .flexwrap {
  width: 50%;
  padding: 48px;
  margin-right: 32px;
}
@media (max-width: 992px) {
  .node .outline .flexwrap {
    width: 100%;
    padding: 32px;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .node .outline .flexwrap {
    padding: 24px;
  }
}
.node .outline .flexwrap .contrast-section-title {
  margin-bottom: 16px;
}
.node .outline .flexwrap .item {
  margin-bottom: 0;
}
.node .contrast-section-title {
  color: #ffffff;
}
.node .item {
  color: #ffffff;
  text-align: center;
}
.node label {
  color: #ffffff;
}
.node .contrast-section-title,
.node .contrast-section-btn {
  text-align: center;
}
.containwrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #1f2a44;
}
.containwrap .row {
  position: relative;
}
.containwrap .row .blur-circle {
  position: absolute;
  top: 0;
  left: 3rem;
  width: 430px;
  height: 410px;
  border-radius: 100%;
  background-image: linear-gradient(110deg, #1f2a44 30%, #333333);
  filter: blur(64px) blur(64px);
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .containwrap .row .blur-circle {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .containwrap .row .blur-circle {
    display: none;
  }
}
.containwrap .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .containwrap .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .containwrap .row {
    padding: 0 24px;
  }
}
.containwrap .flexwrap {
  position: relative;
  z-index: 1;
}
.containwrap .flexwrap .contrast-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .containwrap .flexwrap .contrast-section-title {
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .containwrap .flexwrap .contrast-section-title {
    margin-bottom: 24px;
  }
}
.containwrap .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.containwrap .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #eed5af;
  z-index: -1;
}
.containwrap .flexwrap .item {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .containwrap .flexwrap .item {
    margin-bottom: 15px;
  }
}
.containwrap .flexwrap .contrast-section-btn .btn {
  width: 90%;
}
@media (max-width: 992px) {
  .containwrap .flexwrap .contrast-section-btn .btn {
    width: auto;
  }
}
.containwrap .icon-wrapper {
  position: relative;
  z-index: 1;
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 992px) {
  .containwrap .icon-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .containwrap .icon-wrapper {
    margin-right: 0;
    margin-bottom: 96px;
    text-align: center;
  }
}
.containwrap .icon-wrapper .contrast-iconfont {
  display: block;
  color: #e36a3d;
  font-size: 350px;
  transform: rotate(-10deg);
}
@media (max-width: 992px) {
  .containwrap .icon-wrapper .contrast-iconfont {
    font-size: 250px;
  }
}
@media (max-width: 768px) {
  .containwrap .icon-wrapper .contrast-iconfont {
    font-size: 150px;
  }
}
.containwrap .contrast-section-title {
  color: #f4efe8;
}
.containwrap .item {
  color: #ffffff;
}
.containwrap .contrast-section-title,
.containwrap .contrast-section-btn {
  color: #ffffff;
}
.tilebox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.tilebox .text-wrapper {
  padding: 0 10%;
  position: relative;
}
@media (max-width: 768px) {
  .tilebox .text-wrapper {
    padding: 0 32px;
  }
}
.tilebox .text-wrapper .contrast-iconfont {
  position: absolute;
  top: 0;
  left: 7%;
  color: #e36a3d;
  font-size: 48px;
  z-index: 1;
}
@media (max-width: 768px) {
  .tilebox .text-wrapper .contrast-iconfont {
    left: 0;
  }
}
.tilebox .text-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #333333;
}
.tilebox .text-wrapper .item {
  position: relative;
  z-index: 2;
  margin: 0;
}
.tilebox .item {
  color: #e8e8e8;
}
.gridlayer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.gridlayer .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .gridlayer .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .gridlayer .container {
    padding: 0 6px;
  }
}
.gridlayer .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #1f2a44;
}
@media (max-width: 1440px) {
  .gridlayer .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .gridlayer .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .gridlayer .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .gridlayer .row {
    padding: 50px 30px;
  }
}
.gridlayer .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.gridlayer .flexwrap {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .gridlayer .flexwrap {
    padding: 0;
  }
}
.gridlayer .flexwrap .contrast-section-title {
  margin-bottom: 50px;
}
.gridlayer .flexwrap .contrast-section-title span {
  color: #01004c;
}
.gridlayer .flexwrap .contrast-section-btn .btn {
  margin-bottom: 0;
}
.gridlayer .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .gridlayer .list-wrapper {
    padding: 0;
  }
}
.gridlayer .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gridlayer .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.gridlayer .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.gridlayer .list-wrapper .list .item-wrap:hover,
.gridlayer .list-wrapper .list .item-wrap:focus {
  color: #e36a3d;
}
.gridlayer .bodybox {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #01004c;
}
.gridlayer .copyright {
  opacity: .9;
  margin-bottom: 0;
  color: #ffffff;
}
.gridlayer .contrast-section-title {
  color: #ffffff;
}
.gridlayer .list {
  color: #ffffff;
}
.hold .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.hold .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .hold .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hold .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.hold .navbar-dropdown {
  position: relative !important;
}
.hold .btn {
  min-height: auto;
}
@media (min-width: 992px) {
  .hold ul.formwrap {
    padding-bottom: 1.5rem;
  }
  .hold li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .hold .formwrap.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.hold .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .hold .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .hold .nav-item {
    margin: 0 !important;
  }
}
.hold .nav-item .nav-link {
  position: relative;
}
.hold .nav-item .nav-link:hover::before,
.hold .nav-item .nav-link:focus::before {
  width: 100%;
}
.hold .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #e36a3d;
}
.hold .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hold .container {
  display: flex;
  margin: auto;
}
.hold .pathwrap {
  color: #111111;
}
.hold .formwrap {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .hold .formwrap {
    margin: 0;
  }
}
.hold .nav-item:focus,
.hold .nav-link:focus {
  outline: none;
}
.hold .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .hold .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.hold .navbar .nestedbox img {
  object-fit: contain;
  border-radius: 50% !important;
}
.hold .navbar .navbar-collapse {
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .hold .navbar .nav-item {
    padding: .5rem 0;
  }
  .hold .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .hold .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hold .navbar .nestedbox img {
    height: 3rem !important;
  }
  .hold .navbar ul.formwrap {
    overflow: hidden;
  }
  .hold .navbar ul.formwrap li {
    margin: 0;
  }
  .hold .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .hold .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.hold .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.hold .navbar-brand .pathwrap {
  line-height: inherit !important;
  font-weight: 400;
}
.hold .navbar-brand .nestedbox a {
  outline: none;
}
.hold .navbar-expand-lg .formwrap .nav-link {
  padding: 0;
}
.hold ul.formwrap {
  flex-wrap: wrap;
  padding: 0;
}
.hold button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f2f2f2;
}

.hold a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hold .navbar {
    height: 70px;
  }
  .hold .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hold .navbar-dropdown .nestedbox {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .hold .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.hold .contrast-section-btn-main .btn {
  width: fit-content;
  white-space: nowrap;
}
.hold .pathwrap:hover {
  color: #000000;
}
.hold .contrast-section-subtitle {
  color: #f4efe8;
}
.hold .item {
  color: #f4efe8;
  text-align: left;
}
.hold .contrast-section-subtitle {
  text-align: left;
}
.hold a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.subbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.subbox .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .subbox .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .subbox .row {
    padding: 0 24px;
  }
}
.subbox .flexwrap {
  margin-bottom: 20px;
}
.subbox .flexwrap .contrast-section-title {
  margin-bottom: 0;
}
.subbox .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.subbox .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ffffff;
  z-index: -1;
}
.subbox .blur-circle {
  height: 100px;
  margin-bottom: 48px;
  position: relative;
}
.subbox .text-wrapper .item {
  margin-bottom: 0;
  line-height: 1.8;
}
@media (max-width: 992px) {
  .subbox .text-wrapper .item {
    text-align: left;
  }
}
.subbox .contrast-section-title {
  color: #ffffff;
  text-align: center;
}
.subbox .item {
  color: #ffffff;
  text-align: left;
}
.bridge {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.bridge .text-wrapper {
  padding: 0 10%;
  position: relative;
}
@media (max-width: 768px) {
  .bridge .text-wrapper {
    padding: 0 32px;
  }
}
.bridge .text-wrapper .contrast-iconfont {
  position: absolute;
  top: 0;
  left: 7%;
  color: #e36a3d;
  font-size: 48px;
  z-index: 1;
}
@media (max-width: 768px) {
  .bridge .text-wrapper .contrast-iconfont {
    left: 0;
  }
}
.bridge .text-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #333333;
}
.bridge .text-wrapper .item {
  position: relative;
  z-index: 2;
  margin: 0;
}
.bridge .item {
  color: #e8e8e8;
}
.gridlayer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.gridlayer .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .gridlayer .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .gridlayer .container {
    padding: 0 6px;
  }
}
.gridlayer .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #1f2a44;
}
@media (max-width: 1440px) {
  .gridlayer .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .gridlayer .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .gridlayer .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .gridlayer .row {
    padding: 50px 30px;
  }
}
.gridlayer .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.gridlayer .flexwrap {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .gridlayer .flexwrap {
    padding: 0;
  }
}
.gridlayer .flexwrap .contrast-section-title {
  margin-bottom: 50px;
}
.gridlayer .flexwrap .contrast-section-title span {
  color: #01004c;
}
.gridlayer .flexwrap .contrast-section-btn .btn {
  margin-bottom: 0;
}
.gridlayer .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .gridlayer .list-wrapper {
    padding: 0;
  }
}
.gridlayer .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gridlayer .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.gridlayer .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.gridlayer .list-wrapper .list .item-wrap:hover,
.gridlayer .list-wrapper .list .item-wrap:focus {
  color: #e36a3d;
}
.gridlayer .bodybox {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #01004c;
}
.gridlayer .copyright {
  opacity: .9;
  margin-bottom: 0;
  color: #ffffff;
}
.gridlayer .contrast-section-title {
  color: #ffffff;
}
.gridlayer .list {
  color: #ffffff;
}
.hold .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.hold .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .hold .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hold .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.hold .navbar-dropdown {
  position: relative !important;
}
.hold .btn {
  min-height: auto;
}
@media (min-width: 992px) {
  .hold ul.formwrap {
    padding-bottom: 1.5rem;
  }
  .hold li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .hold .formwrap.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.hold .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .hold .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .hold .nav-item {
    margin: 0 !important;
  }
}
.hold .nav-item .nav-link {
  position: relative;
}
.hold .nav-item .nav-link:hover::before,
.hold .nav-item .nav-link:focus::before {
  width: 100%;
}
.hold .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #e36a3d;
}
.hold .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hold .container {
  display: flex;
  margin: auto;
}
.hold .pathwrap {
  color: #111111;
}
.hold .formwrap {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .hold .formwrap {
    margin: 0;
  }
}
.hold .nav-item:focus,
.hold .nav-link:focus {
  outline: none;
}
.hold .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .hold .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.hold .navbar .nestedbox img {
  object-fit: contain;
  border-radius: 50% !important;
}
.hold .navbar .navbar-collapse {
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .hold .navbar .nav-item {
    padding: .5rem 0;
  }
  .hold .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .hold .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hold .navbar .nestedbox img {
    height: 3rem !important;
  }
  .hold .navbar ul.formwrap {
    overflow: hidden;
  }
  .hold .navbar ul.formwrap li {
    margin: 0;
  }
  .hold .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .hold .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.hold .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.hold .navbar-brand .pathwrap {
  line-height: inherit !important;
  font-weight: 400;
}
.hold .navbar-brand .nestedbox a {
  outline: none;
}
.hold .navbar-expand-lg .formwrap .nav-link {
  padding: 0;
}
.hold ul.formwrap {
  flex-wrap: wrap;
  padding: 0;
}
.hold button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f2f2f2;
}

.hold a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hold .navbar {
    height: 70px;
  }
  .hold .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hold .navbar-dropdown .nestedbox {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .hold .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.hold .contrast-section-btn-main .btn {
  width: fit-content;
  white-space: nowrap;
}
.hold .pathwrap:hover {
  color: #000000;
}
.hold .contrast-section-subtitle {
  color: #f4efe8;
}
.hold .item {
  color: #f4efe8;
  text-align: left;
}
.hold .contrast-section-subtitle {
  text-align: left;
}
.hold a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.buildbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.buildbox .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .buildbox .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .buildbox .row {
    padding: 0 24px;
  }
}
.buildbox .flexwrap {
  margin-bottom: 20px;
}
.buildbox .flexwrap .contrast-section-title {
  margin-bottom: 0;
}
.buildbox .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.buildbox .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ffffff;
  z-index: -1;
}
.buildbox .blur-circle {
  height: 100px;
  margin-bottom: 48px;
  position: relative;
}
.buildbox .text-wrapper .item {
  margin-bottom: 0;
  line-height: 1.8;
}
@media (max-width: 992px) {
  .buildbox .text-wrapper .item {
    text-align: left;
  }
}
.buildbox .contrast-section-title {
  color: #ffffff;
  text-align: center;
}
.buildbox .item {
  color: #ffffff;
  text-align: left;
}
.formpad {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.formpad .text-wrapper {
  padding: 0 10%;
  position: relative;
}
@media (max-width: 768px) {
  .formpad .text-wrapper {
    padding: 0 32px;
  }
}
.formpad .text-wrapper .contrast-iconfont {
  position: absolute;
  top: 0;
  left: 7%;
  color: #e36a3d;
  font-size: 48px;
  z-index: 1;
}
@media (max-width: 768px) {
  .formpad .text-wrapper .contrast-iconfont {
    left: 0;
  }
}
.formpad .text-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #333333;
}
.formpad .text-wrapper .item {
  position: relative;
  z-index: 2;
  margin: 0;
}
.formpad .item {
  color: #e8e8e8;
}
.gridlayer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.gridlayer .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .gridlayer .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .gridlayer .container {
    padding: 0 6px;
  }
}
.gridlayer .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #1f2a44;
}
@media (max-width: 1440px) {
  .gridlayer .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .gridlayer .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .gridlayer .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .gridlayer .row {
    padding: 50px 30px;
  }
}
.gridlayer .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.gridlayer .flexwrap {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .gridlayer .flexwrap {
    padding: 0;
  }
}
.gridlayer .flexwrap .contrast-section-title {
  margin-bottom: 50px;
}
.gridlayer .flexwrap .contrast-section-title span {
  color: #01004c;
}
.gridlayer .flexwrap .contrast-section-btn .btn {
  margin-bottom: 0;
}
.gridlayer .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .gridlayer .list-wrapper {
    padding: 0;
  }
}
.gridlayer .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gridlayer .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.gridlayer .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.gridlayer .list-wrapper .list .item-wrap:hover,
.gridlayer .list-wrapper .list .item-wrap:focus {
  color: #e36a3d;
}
.gridlayer .bodybox {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #01004c;
}
.gridlayer .copyright {
  opacity: .9;
  margin-bottom: 0;
  color: #ffffff;
}
.gridlayer .contrast-section-title {
  color: #ffffff;
}
.gridlayer .list {
  color: #ffffff;
}
.hold .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.hold .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .hold .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hold .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.hold .navbar-dropdown {
  position: relative !important;
}
.hold .btn {
  min-height: auto;
}
@media (min-width: 992px) {
  .hold ul.formwrap {
    padding-bottom: 1.5rem;
  }
  .hold li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .hold .formwrap.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.hold .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .hold .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .hold .nav-item {
    margin: 0 !important;
  }
}
.hold .nav-item .nav-link {
  position: relative;
}
.hold .nav-item .nav-link:hover::before,
.hold .nav-item .nav-link:focus::before {
  width: 100%;
}
.hold .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #e36a3d;
}
.hold .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hold .container {
  display: flex;
  margin: auto;
}
.hold .pathwrap {
  color: #111111;
}
.hold .formwrap {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .hold .formwrap {
    margin: 0;
  }
}
.hold .nav-item:focus,
.hold .nav-link:focus {
  outline: none;
}
.hold .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .hold .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.hold .navbar .nestedbox img {
  object-fit: contain;
  border-radius: 50% !important;
}
.hold .navbar .navbar-collapse {
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .hold .navbar .nav-item {
    padding: .5rem 0;
  }
  .hold .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .hold .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hold .navbar .nestedbox img {
    height: 3rem !important;
  }
  .hold .navbar ul.formwrap {
    overflow: hidden;
  }
  .hold .navbar ul.formwrap li {
    margin: 0;
  }
  .hold .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .hold .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.hold .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.hold .navbar-brand .pathwrap {
  line-height: inherit !important;
  font-weight: 400;
}
.hold .navbar-brand .nestedbox a {
  outline: none;
}
.hold .navbar-expand-lg .formwrap .nav-link {
  padding: 0;
}
.hold ul.formwrap {
  flex-wrap: wrap;
  padding: 0;
}
.hold button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f2f2f2;
}

.hold a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hold .navbar {
    height: 70px;
  }
  .hold .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hold .navbar-dropdown .nestedbox {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .hold .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.hold .contrast-section-btn-main .btn {
  width: fit-content;
  white-space: nowrap;
}
.hold .pathwrap:hover {
  color: #000000;
}
.hold .contrast-section-subtitle {
  color: #f4efe8;
}
.hold .item {
  color: #f4efe8;
  text-align: left;
}
.hold .contrast-section-subtitle {
  text-align: left;
}
.hold a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.mainfield {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.mainfield .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .mainfield .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .mainfield .row {
    padding: 0 24px;
  }
}
.mainfield .flexwrap {
  margin-bottom: 20px;
}
.mainfield .flexwrap .contrast-section-title {
  margin-bottom: 0;
}
.mainfield .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.mainfield .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ffffff;
  z-index: -1;
}
.mainfield .blur-circle {
  height: 100px;
  margin-bottom: 48px;
  position: relative;
}
.mainfield .text-wrapper .item {
  margin-bottom: 0;
  line-height: 1.8;
}
@media (max-width: 992px) {
  .mainfield .text-wrapper .item {
    text-align: left;
  }
}
.mainfield .contrast-section-title {
  color: #ffffff;
  text-align: center;
}
.mainfield .item {
  color: #ffffff;
  text-align: left;
}
.subunit {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.subunit .text-wrapper {
  padding: 0 10%;
  position: relative;
}
@media (max-width: 768px) {
  .subunit .text-wrapper {
    padding: 0 32px;
  }
}
.subunit .text-wrapper .contrast-iconfont {
  position: absolute;
  top: 0;
  left: 7%;
  color: #e36a3d;
  font-size: 48px;
  z-index: 1;
}
@media (max-width: 768px) {
  .subunit .text-wrapper .contrast-iconfont {
    left: 0;
  }
}
.subunit .text-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #333333;
}
.subunit .text-wrapper .item {
  position: relative;
  z-index: 2;
  margin: 0;
}
.subunit .item {
  color: #e8e8e8;
}
.gridlayer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.gridlayer .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .gridlayer .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .gridlayer .container {
    padding: 0 6px;
  }
}
.gridlayer .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #1f2a44;
}
@media (max-width: 1440px) {
  .gridlayer .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .gridlayer .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .gridlayer .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .gridlayer .row {
    padding: 50px 30px;
  }
}
.gridlayer .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.gridlayer .flexwrap {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .gridlayer .flexwrap {
    padding: 0;
  }
}
.gridlayer .flexwrap .contrast-section-title {
  margin-bottom: 50px;
}
.gridlayer .flexwrap .contrast-section-title span {
  color: #01004c;
}
.gridlayer .flexwrap .contrast-section-btn .btn {
  margin-bottom: 0;
}
.gridlayer .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .gridlayer .list-wrapper {
    padding: 0;
  }
}
.gridlayer .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gridlayer .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.gridlayer .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.gridlayer .list-wrapper .list .item-wrap:hover,
.gridlayer .list-wrapper .list .item-wrap:focus {
  color: #e36a3d;
}
.gridlayer .bodybox {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #01004c;
}
.gridlayer .copyright {
  opacity: .9;
  margin-bottom: 0;
  color: #ffffff;
}
.gridlayer .contrast-section-title {
  color: #ffffff;
}
.gridlayer .list {
  color: #ffffff;
}
.hold .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.hold .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .hold .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hold .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.hold .navbar-dropdown {
  position: relative !important;
}
.hold .btn {
  min-height: auto;
}
@media (min-width: 992px) {
  .hold ul.formwrap {
    padding-bottom: 1.5rem;
  }
  .hold li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .hold .formwrap.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.hold .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .hold .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .hold .nav-item {
    margin: 0 !important;
  }
}
.hold .nav-item .nav-link {
  position: relative;
}
.hold .nav-item .nav-link:hover::before,
.hold .nav-item .nav-link:focus::before {
  width: 100%;
}
.hold .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #e36a3d;
}
.hold .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hold .container {
  display: flex;
  margin: auto;
}
.hold .pathwrap {
  color: #111111;
}
.hold .formwrap {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .hold .formwrap {
    margin: 0;
  }
}
.hold .nav-item:focus,
.hold .nav-link:focus {
  outline: none;
}
.hold .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .hold .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.hold .navbar .nestedbox img {
  object-fit: contain;
  border-radius: 50% !important;
}
.hold .navbar .navbar-collapse {
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .hold .navbar .nav-item {
    padding: .5rem 0;
  }
  .hold .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .hold .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hold .navbar .nestedbox img {
    height: 3rem !important;
  }
  .hold .navbar ul.formwrap {
    overflow: hidden;
  }
  .hold .navbar ul.formwrap li {
    margin: 0;
  }
  .hold .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .hold .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.hold .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.hold .navbar-brand .pathwrap {
  line-height: inherit !important;
  font-weight: 400;
}
.hold .navbar-brand .nestedbox a {
  outline: none;
}
.hold .navbar-expand-lg .formwrap .nav-link {
  padding: 0;
}
.hold ul.formwrap {
  flex-wrap: wrap;
  padding: 0;
}
.hold button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f2f2f2;
}

.hold a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hold .navbar {
    height: 70px;
  }
  .hold .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hold .navbar-dropdown .nestedbox {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .hold .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.hold .contrast-section-btn-main .btn {
  width: fit-content;
  white-space: nowrap;
}
.hold .pathwrap:hover {
  color: #000000;
}
.hold .contrast-section-subtitle {
  color: #f4efe8;
}
.hold .item {
  color: #f4efe8;
  text-align: left;
}
.hold .contrast-section-subtitle {
  text-align: left;
}
.hold a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.spanlayer {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.spanlayer .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .spanlayer .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .spanlayer .row {
    padding: 0 24px;
  }
}
.spanlayer .flexwrap {
  margin-bottom: 20px;
}
.spanlayer .flexwrap .contrast-section-title {
  margin-bottom: 0;
}
.spanlayer .flexwrap .contrast-section-title span {
  position: relative;
  z-index: 1;
}
.spanlayer .flexwrap .contrast-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ffffff;
  z-index: -1;
}
.spanlayer .blur-circle {
  height: 100px;
  margin-bottom: 48px;
  position: relative;
}
.spanlayer .text-wrapper .item {
  margin-bottom: 0;
  line-height: 1.8;
}
@media (max-width: 992px) {
  .spanlayer .text-wrapper .item {
    text-align: left;
  }
}
.spanlayer .contrast-section-title {
  color: #ffffff;
  text-align: center;
}
.spanlayer .item {
  color: #ffffff;
  text-align: left;
}
.shiftbox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1f2a44;
}
.shiftbox .text-wrapper {
  padding: 0 10%;
  position: relative;
}
@media (max-width: 768px) {
  .shiftbox .text-wrapper {
    padding: 0 32px;
  }
}
.shiftbox .text-wrapper .contrast-iconfont {
  position: absolute;
  top: 0;
  left: 7%;
  color: #e36a3d;
  font-size: 48px;
  z-index: 1;
}
@media (max-width: 768px) {
  .shiftbox .text-wrapper .contrast-iconfont {
    left: 0;
  }
}
.shiftbox .text-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(75px) blur(75px);
  background-color: #333333;
}
.shiftbox .text-wrapper .item {
  position: relative;
  z-index: 2;
  margin: 0;
}
.shiftbox .item {
  color: #e8e8e8;
}
.gridlayer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.gridlayer .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .gridlayer .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .gridlayer .container {
    padding: 0 6px;
  }
}
.gridlayer .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #1f2a44;
}
@media (max-width: 1440px) {
  .gridlayer .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .gridlayer .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .gridlayer .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .gridlayer .row {
    padding: 50px 30px;
  }
}
.gridlayer .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.gridlayer .flexwrap {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .gridlayer .flexwrap {
    padding: 0;
  }
}
.gridlayer .flexwrap .contrast-section-title {
  margin-bottom: 50px;
}
.gridlayer .flexwrap .contrast-section-title span {
  color: #01004c;
}
.gridlayer .flexwrap .contrast-section-btn .btn {
  margin-bottom: 0;
}
.gridlayer .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .gridlayer .list-wrapper {
    padding: 0;
  }
}
.gridlayer .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gridlayer .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.gridlayer .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.gridlayer .list-wrapper .list .item-wrap:hover,
.gridlayer .list-wrapper .list .item-wrap:focus {
  color: #e36a3d;
}
.gridlayer .bodybox {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #01004c;
}
.gridlayer .copyright {
  opacity: .9;
  margin-bottom: 0;
  color: #ffffff;
}
.gridlayer .contrast-section-title {
  color: #ffffff;
}
.gridlayer .list {
  color: #ffffff;
}

.user-notice {
  position: fixed;
  left: max(12px, calc(50vw - 520px));
  right: max(12px, calc(50vw - 520px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.user-notice *,
.user-notice *::before,
.user-notice *::after {
  box-sizing: border-box;
}

.boxcore {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 230px;
  gap: 0;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #f7f3ee;
  border: 1px solid #ddd3c8;
  box-shadow: 0 22px 48px rgba(20, 18, 16, 0.16);
}

.stepunit {
  background: linear-gradient(180deg, #2d3436 0%, #1f2527 100%);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.packunit {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gridcell {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.cookie-side-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fieldnode {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f3dfc8;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-side-note {
  color: #e8ddd1;
  font-size: 13px;
  line-height: 1.45;
}

.innerwrap {
  position: relative;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  background: linear-gradient(180deg, #fffdf9 0%, #f7f3ee 100%);
}

.innerwrap::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d18d55 0%, #bb6d4a 50%, #7a8f56 100%);
}

.fieldcore {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gridunit {
  margin: 0;
  color: #2f2b28;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 600;
}

.stacksegment {
  color: #7b6f66;
  font-size: 13px;
  line-height: 1.45;
}

.packwrap {
  margin: 0;
  color: #3f3833;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.72;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.meta-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.panel-links-note {
  color: #7b6f66;
  font-size: 12px;
  line-height: 1.4;
}

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.footer-links-row a {
  display: inline-block;
  color: #a45a3b;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(164, 90, 59, 0.36);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links-row a:hover {
  color: #7c4129;
  border-bottom-color: #7c4129;
}

.footer-links-row span {
  color: #7b6f66;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.unitfield {
  background: linear-gradient(180deg, #efe7de 0%, #e7ddd2 100%);
  border-left: 1px solid #ddd3c8;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

#noticeAccept {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #2d3436 0%, #1f2527 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(31, 37, 39, 0.18);
}

#noticeAccept:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .user-notice {
    left: 12px;
    right: 12px;
  }

  .boxcore {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .unitfield {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid #ddd3c8;
    flex-direction: row;
    padding: 16px 18px 18px;
  }

  #noticeAccept {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .user-notice {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .boxcore {
    grid-template-columns: 1fr;
    border-radius: 22px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stepunit {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .cookie-side-text {
    align-items: center;
  }

  .fieldnode {
    align-self: center;
  }

  .innerwrap {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .innerwrap::before {
    left: 16px;
    right: 16px;
  }

  .fieldcore {
    align-items: center;
  }

  .gridunit {
    font-size: 19px;
    text-align: center;
  }

  .stacksegment {
    text-align: center;
  }

  .packwrap {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .meta-links {
    align-items: center;
    text-align: center;
  }

  .footer-links-row {
    justify-content: center;
  }

  .unitfield {
    padding: 16px;
    flex-direction: column;
  }

  #noticeAccept {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .user-notice {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .boxcore {
    border-radius: 18px;
  }

  .packunit {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .gridcell {
    width: 38px;
    height: 38px;
  }

  .gridunit {
    font-size: 17px;
  }

  .cookie-side-note,
  .stacksegment,
  .panel-links-note,
  .footer-links-row a,
  .footer-links-row span,
  #noticeAccept {
    font-size: 12px;
  }
}

@keyframes skewIn {
    0% {
        transform: skewX(-30deg);
        opacity: 0;
    }
    100% {
        transform: skewX(0);
        opacity: 1;
    }
}

.navbar-brand {
    animation: skewIn 1s ease-out;
}

.form-core-body {
  padding: 0 !important;
  background: transparent;
}
.form-core-body .view {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.form-core-body .view::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #111827, #374151, #6b7280);
}
.form-core-body .bold-area {
  padding: 40px 40px 24px;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  text-align: center;
}
.form-core-body .outer {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 0;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-core-body .partlayer {
  margin: 18px 0 8px;
  color: #111827;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
}
.form-core-body .partgrid {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.form-core-body .track {
  padding: 30px 40px 40px;
  color: #111827;
}
.form-core-body .track *,
.form-core-body .track *::before,
.form-core-body .track *::after {
  box-sizing: border-box;
}
.form-core-body .track [hidden] {
  display: none !important;
}
.form-core-body .alt-tile {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  row-gap: 22px;
}
.form-core-body .frame-first-icon {
  grid-column: 1 / -1;
}
.form-core-body .frame {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.form-core-body .mod-slot {
  font-weight: 400;
  color: #6b7280;
  text-transform: none;
  letter-spacing: 0;
}
.form-core-body .alt-area {
  width: 100%;
  padding: 16px 0;
  border: none !important;
  border-bottom: 1px solid #d1d5db !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111827 !important;
  font-size: 15px;
  box-shadow: none !important;
  transition: border-color 0.2s ease;
  text-align: center;
}
.form-core-body .alt-area::placeholder {
  color: #9ca3af;
  opacity: 1;
}
.form-core-body .alt-area:focus {
  outline: none;
  border-bottom-color: #111827 !important;
}
.form-core-body textarea.alt-area {
  min-height: 170px;
  resize: vertical;
  text-align: left;
}
.form-core-body select.alt-area {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111827' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 4px center !important;
  background-size: 12px 8px !important;
  padding-right: 28px;
  cursor: pointer;
}
.form-core-body .list-light-text {
  padding: 0 0 18px;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
  text-align: left;
}
.form-core-body .path-closed-holder {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form-core-body .clean-double-box {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #111827;
}
.form-core-body .detail-hidden-zone {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.75;
  cursor: pointer;
}
.form-core-body .detail-hidden-zone a {
  color: #111827;
  text-decoration: underline;
  font-weight: 600;
}
.form-core-body .detail-hidden-zone a:hover,
.form-core-body .detail-hidden-zone a:focus {
  color: #000000;
}
.form-core-body .main-wrap {
  display: flex;
  justify-content: center;
}
.form-core-body .form {
  min-width: 240px;
  padding: 16px 28px;
  border: 1px solid #111827;
  border-radius: 0 !important;
  background: #111827;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.form-core-body .form:hover,
.form-core-body .form:focus {
  background: #000000;
  border-color: #000000;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.18);
  outline: none;
}
.form-core-body .form:active {
  transform: translate(0, 0);
  box-shadow: none;
}
.form-core-body .outerpad {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}
.form-core-body .base-stack {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.6;
}
.form-core-body .row-open-check {
  background: #f3f4f6;
  border-left: 3px solid #16a34a;
  color: #166534;
}
.form-core-body .post-std-badge {
  background: #f9fafb;
  border-left: 3px solid #dc2626;
  color: #991b1b;
}
@media (max-width: 767px) {
  .form-core-body {
    padding: 0 16px !important;
  }
  .form-core-body .bold-area,
  .form-core-body .track {
    padding-left: 18px;
    padding-right: 18px;
  }
  .form-core-body .partlayer {
    font-size: 28px;
  }
  .form-core-body .form {
    width: 100%;
    min-width: 0;
  }
}

.user-notice {
  position: fixed;
  left: max(12px, calc(50vw - 520px));
  right: max(12px, calc(50vw - 520px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.user-notice *,
.user-notice *::before,
.user-notice *::after {
  box-sizing: border-box;
}

.user-notice.ready {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.user-notice.gone {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.boxcore {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 230px;
  gap: 0;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #f7f3ee;
  border: 1px solid #ddd3c8;
  box-shadow: 0 22px 48px rgba(20, 18, 16, 0.16);
}

.stepunit {
  background: linear-gradient(180deg, #2d3436 0%, #1f2527 100%);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.packunit {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gridcell {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.cookie-side-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fieldnode {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f3dfc8;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-side-note {
  color: #e8ddd1;
  font-size: 13px;
  line-height: 1.45;
}

.innerwrap {
  position: relative;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  background: linear-gradient(180deg, #fffdf9 0%, #f7f3ee 100%);
}

.innerwrap::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d18d55 0%, #bb6d4a 50%, #7a8f56 100%);
}

.fieldcore {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gridunit {
  margin: 0;
  color: #2f2b28;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 600;
}

.stacksegment {
  color: #7b6f66;
  font-size: 13px;
  line-height: 1.45;
}

.packwrap {
  margin: 0;
  color: #3f3833;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.72;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.meta-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.panel-links-note {
  color: #7b6f66;
  font-size: 12px;
  line-height: 1.4;
}

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.footer-links-row a {
  display: inline-block;
  color: #a45a3b;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(164, 90, 59, 0.36);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links-row a:hover {
  color: #7c4129;
  border-bottom-color: #7c4129;
}

.footer-links-row span {
  color: #7b6f66;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.unitfield {
  background: linear-gradient(180deg, #efe7de 0%, #e7ddd2 100%);
  border-left: 1px solid #ddd3c8;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

#noticeAccept {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
  background: linear-gradient(135deg, #2d3436 0%, #1f2527 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(31, 37, 39, 0.18);
}

#noticeAccept:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .user-notice {
    left: 12px;
    right: 12px;
  }

  .boxcore {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .unitfield {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid #ddd3c8;
    flex-direction: row;
    padding: 16px 18px 18px;
  }

  #noticeAccept {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .user-notice {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .boxcore {
    grid-template-columns: 1fr;
    border-radius: 22px;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stepunit {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .cookie-side-text {
    align-items: center;
  }

  .fieldnode {
    align-self: center;
  }

  .innerwrap {
    padding: 16px;
    align-items: center;
    text-align: center;
  }

  .innerwrap::before {
    left: 16px;
    right: 16px;
  }

  .fieldcore {
    align-items: center;
  }

  .gridunit {
    font-size: 19px;
    text-align: center;
  }

  .stacksegment {
    text-align: center;
  }

  .packwrap {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .meta-links {
    align-items: center;
    text-align: center;
  }

  .footer-links-row {
    justify-content: center;
  }

  .unitfield {
    padding: 16px;
    flex-direction: column;
  }

  #noticeAccept {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .user-notice {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .boxcore {
    border-radius: 18px;
  }

  .packunit {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .gridcell {
    width: 38px;
    height: 38px;
  }

  .gridunit {
    font-size: 17px;
  }

  .cookie-side-note,
  .stacksegment,
  .panel-links-note,
  .footer-links-row a,
  .footer-links-row span,
  #noticeAccept {
    font-size: 12px;
  }
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
