:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-rgb: 33, 37, 41;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Open Sans, sans-serif;
  --bs-body-font-size: 0.875rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6;
  --bs-body-color: #212529;
  --bs-body-bg: #FEFEFE;
}

*,
*::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);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: calc(1.3143rem + 0.7716vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 1.893rem;
  }
}

h2 {
  font-size: calc(1.3043rem + 0.6516vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.793rem;
  }
}

h3 {
  font-size: calc(1.2644rem + 0.1728vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.394rem;
  }
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.813rem;
}

h6 {
  font-size: 0.8rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.75rem;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #009bd9;
  text-decoration: none;
}
a:hover {
  color: #a73222;
  text-decoration: none;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.625rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
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]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-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;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}
@media only screen and (max-width: 992px) {
  html {
    scroll-padding-top: 74px;
  }
}

body {
  background-color: #FEFEFE;
}

body main .paragraph--type--prg-text img {
  max-width: 100%;
  height: auto;
}

.SearchCustomPopup .modal-content {
  border: none;
  height: 100%;
}
@media (max-width: 991.98px) {
  .SearchCustomPopup .modal-content .d-flex.flex-row {
    display: inline-block !important;
  }
  .SearchCustomPopup .modal-content .d-flex.flex-row ul {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .SearchCustomPopup .modal-content {
    padding-top: 100px;
  }
}
.SearchCustomPopup .modal-content .close {
  color: #222222;
  float: right;
  font-size: 40px;
  line-height: 50px;
  position: absolute;
  right: 0px;
  top: 0;
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  will-change: transform;
  transition: ease-in-out 0.5s;
}
.SearchCustomPopup .modal-content .close:hover {
  transform: scale(1.1);
}
.SearchCustomPopup .container {
  display: flex;
  flex-direction: column;
  padding: 5% 10%;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  justify-content: center;
  position: relative;
}
.SearchCustomPopup .container .modal-search-top {
  width: 100%;
  position: relative;
}
@media (max-width: 991.98px) {
  .SearchCustomPopup .container .modal-search-top {
    padding: 10px;
  }
}
.SearchCustomPopup .container .modal-search-top p {
  color: #fff;
  opacity: 0.5;
  margin: 1em 0;
}
.SearchCustomPopup .container .modal-search-top input {
  width: 100%;
  line-height: 50px;
  background: 0;
  border: 0;
  border-bottom: 1px solid #fff;
  outline: 0;
  color: #fff;
  font-size: 1.5rem;
}
.SearchCustomPopup .container .modal-search-top input::placeholder {
  color: #fff;
}
.SearchCustomPopup .container .modal-search-top .input-group-addon {
  position: absolute;
  right: 0;
  bottom: 15px;
  font-size: 25px;
  color: white;
  cursor: pointer;
}
.SearchCustomPopup .container .modal-search-bottom {
  width: 100%;
  display: flex;
  padding-top: 50px;
  padding-left: 0px;
  padding-right: 0px;
}
@media only screen and (max-width: 992px) {
  .SearchCustomPopup .container .modal-search-bottom {
    flex-direction: column;
  }
}
.SearchCustomPopup .container .modal-search-bottom .d-flex.flex-row ul:nth-child(3) {
  margin-top: 1.5rem;
}
.SearchCustomPopup .container .modal-search-bottom ul {
  list-style: none;
  padding-right: 100px;
  padding-left: 0px;
}
.SearchCustomPopup .container .modal-search-bottom ul a {
  padding: 5px 0;
  display: block;
  color: #fff;
  font-size: 0.875rem;
  transition: 0.5s ease-out all;
}
.SearchCustomPopup .container .modal-search-bottom ul a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.SearchCustomPopup .container .modal-search-bottom .modal-search-list-title {
  white-space: nowrap;
  color: #f4ddac;
}
.SearchCustomPopup .container .modal-search-bottom .modal-search-list-title b {
  border-bottom: 1px solid #f4ddac;
}
.SearchCustomPopup .container .modal-search-bottom #clear-search-history {
  color: #fff;
  padding-left: 15px;
  cursor: pointer;
}
.SearchCustomPopup .container .modal-search-bottom #clear-search-history:hover {
  color: #E8E8E8;
}

.ui-dialog {
  z-index: 1260;
  padding: 0;
  background: transparent;
  box-shadow: 0 0 1rem -0.25rem #232429;
}
.ui-dialog .ui-dialog-titlebar {
  background: #a73222 !important;
  padding: 15px 49px 15px 15px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  margin: 0;
  color: #fff;
  font-size: 1.231em;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  border: 3px solid #fff;
  border-radius: 5px;
  background: none;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-icon-closethick {
  margin-top: -8px;
  background: url(/core/misc/icons/ffffff/ex.svg) 0 0 no-repeat;
}
.ui-dialog .ui-widget-content.ui-dialog-content {
  overflow: auto;
  padding: 1em;
  background: #fff;
}

.cookiesjsr--app .cookiesjsr-layer--wrapper .cookiesjsr-layer {
  padding-top: 0;
}
.cookiesjsr--app .cookiesjsr-banner {
  background-color: #4d4d4d;
  border-top: 2px solid #b0b0b0;
}
.cookiesjsr--app .cookiesjsr-banner .cookiesjsr-banner--info {
  flex: 1;
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}
.cookiesjsr--app .cookiesjsr-banner .cookiesjsr-banner--info .cookiesjsr-banner--links {
  display: block;
  padding-left: 0.75rem;
}
.cookiesjsr--app .cookiesjsr-banner .cookiesjsr-banner--info .cookiesjsr-banner--links li:before {
  content: "";
}
.cookiesjsr--app .cookiesjsr-banner .cookiesjsr-banner--info .cookiesjsr-banner--links a {
  color: #ffecb2;
}
.cookiesjsr--app .cookiesjsr-banner .cookiesjsr-banner--action {
  flex: 0;
}
.cookiesjsr--app .cookiesjsr-banner .cookiesjsr-banner--action .cookiesjsr-btn {
  text-transform: capitalize;
  font-size: 14px;
  color: #a73222;
  font-weight: 500;
  padding: 0px 30px;
}
.cookiesjsr--app .cookiesjsr-banner .cookiesjsr-banner--action .cookiesjsr-btn.cookiesjsr-settings {
  display: none !important;
  background-color: #a73222;
  color: #fff;
}
.cookiesjsr--app .cookiesjsr-layer--body .cookiesjsr-service-group--content {
  background-color: #fff;
  color: #000;
}
.cookiesjsr--app .cookiesjsr-layer--body .cookiesjsr-service-group.active .cookiesjsr-service-group--tab {
  background-color: #a73222;
}
.cookiesjsr--app .cookiesjsr-layer--footer .cookiesjsr-layer--actions .cookiesjsr-btn {
  text-transform: capitalize;
  font-size: 14px;
  min-height: 36px;
  margin-left: -5px;
  border-radius: 6px;
  border-color: #a73222;
  color: #a73222;
}
.cookiesjsr--app .cookiesjsr-layer--footer .cookiesjsr-layer--actions .cookiesjsr-btn:hover {
  transform: none;
}
.cookiesjsr--app .cookiesjsr-layer--footer .cookiesjsr-layer--actions .cookiesjsr-btn.dialog-last-tab {
  background-color: #a73222;
  color: #fff;
}

.cookiesjsr-layer {
  font-size: 0.9em;
}
.cookiesjsr-layer .cookiesjsr-layer--body .cookiesjsr-service-groups .cookiesjsr-service-group .cookiesjsr-service-group--content {
  border-left: 2px solid #f2f2f2;
  padding: 0 1rem;
}
.cookiesjsr-layer .cookiesjsr-layer--body .cookiesjsr-service-groups .cookiesjsr-service-group .cookiesjsr-service-group--content ul.cookiesjsr-service-group--services {
  background-color: #555555;
  border-radius: 6px;
}
.cookiesjsr-layer .cookiesjsr-layer--body .cookiesjsr-service-groups .cookiesjsr-service-group .cookiesjsr-service-group--content ul.cookiesjsr-service-group--services .cookiesjsr-service--description {
  padding: 1.25em;
}
.cookiesjsr-layer .cookiesjsr-layer--body .cookiesjsr-service-groups .cookiesjsr-service-group .cookiesjsr-service-group--content ul.cookiesjsr-service-group--services .cookiesjsr-service--description .cookiesjsr-service--links {
  margin: 0;
}
.cookiesjsr-layer .cookiesjsr-layer--body .cookiesjsr-service-groups .cookiesjsr-service-group .cookiesjsr-service-group--content ul.cookiesjsr-service-group--services .cookiesjsr-service--description .cookiesjsr-service--links li {
  padding: 0;
}
.cookiesjsr-layer .cookiesjsr-layer--body .cookiesjsr-service-groups .cookiesjsr-service-group .cookiesjsr-service-group--content ul.cookiesjsr-service-group--services .cookiesjsr-service--description .cookiesjsr-service--links a {
  display: inline;
  color: #ffecb2;
}
.cookiesjsr-layer .cookiesjsr-layer--body .cookiesjsr-service-groups .cookiesjsr-service-group .cookiesjsr-service-group--content ul.cookiesjsr-service-group--services .cookiesjsr-service--action .cookiesjsr-service--always-on span {
  background-color: transparent;
}
.cookiesjsr-layer .cookiesjsr-layer--body .cookiesjsr-service-groups .cookiesjsr-service-group .cookiesjsr-service-group--content ul.cookiesjsr-service-group--services .cookiesjsr-service--action .cookiesjsr-switch:focus-within::before {
  border: none;
}

.cookiesjsr-btn {
  border-width: 1px;
}

.webform-confirmation-modal {
  width: auto !important;
}

.task-menu {
  display: flex;
  padding-left: 0;
  border-bottom: 1px solid #e8e8e8;
}
.task-menu li {
  list-style-type: none;
  padding: 6px 10px;
}
.task-menu li a {
  position: relative;
  padding: 5px 0;
}
.task-menu li a.is-active {
  color: #5E5E63;
  border-bottom: 2px solid #5E5E63;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  display: none;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.9);
}
.overlay.active {
  display: block;
}

table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
}
table td,
table th {
  border: 1px solid #ddd;
  padding: 12px;
}
table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #a73222 !important;
  color: white;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

#block-mkk-content {
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  padding-right: 1rem;
  padding-left: 1rem;
}

.path-frontpage {
  background-color: #f5f5f5;
}
.path-frontpage #block-mkk-content {
  border-left: none;
  border-right: none;
  padding-right: 0;
  padding-left: 0;
}

.pager ul li {
  list-style-type: none;
}
.pager ul li.is-active a {
  background: #a73222 !important;
  color: white !important;
}
.pager ul li:hover a {
  background-color: #e9ecef;
  border-color: #dee2e6;
  color: #909090;
}
.pager ul li a {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #6c757d;
  background-color: white;
  border: 1px solid #dee2e6;
}
@media only screen and (max-width: 992px) {
  .pager .pager__items {
    display: block !important;
    text-align: center;
  }
  .pager .pager__items .pager__item {
    display: inline-block;
    margin-top: 10px;
  }
}

#block-searchbox {
  flex: 1;
}
#block-searchbox .searchBar .fintek {
  border: 1px solid #635e5b;
  border-radius: 8px;
  padding: 0.25rem 0.5rem;
  height: 43px;
  margin: auto 0.5rem;
  transition: background-color 500ms linear;
}
#block-searchbox .searchBar .fintek:hover {
  background-color: #9f3323;
}
#block-searchbox .searchBar .fintek:hover .text {
  color: #fff;
}
#block-searchbox .searchBar .fintek img {
  height: 31px;
  width: 33px;
  padding-right: 0.25rem;
}
#block-searchbox .searchBar .fintek p {
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
}
#block-searchbox .searchBar .fintek small {
  font-weight: 600;
}
#block-searchbox .searchBar .aescdLogo {
  height: 24px;
  margin: auto 0;
  padding: 0 0.5rem;
  border-left: 1px solid #c5c5c5;
}
#block-searchbox .searchBar .aescdLogo img {
  width: 66px;
  transform: translateY(-36%);
}
#block-searchbox .searchBar .submit {
  border-left: 1px solid #c5c5c5;
  padding-left: 0.5rem;
  height: 24px;
  margin: auto 0;
}
#block-searchbox .searchBar .submit button {
  border: none;
  background: none;
  background-color: #85817f;
  border-radius: 100%;
}
#block-searchbox .searchBar .submit button:hover {
  background-color: #a73222;
  transform: scale(1.1);
  transition: ease-in-out 0.5s;
}
#block-searchbox .searchBar .submit .search-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  background-size: contain;
  width: 17px;
  height: 17px;
  margin-top: 5px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAhCAMAAAAS9VDrAAABS2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMzggNzkuMTU5ODI0LCAyMDE2LzA5LzE0LTAxOjA5OjAxICAgICAgICAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIi8+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+IEmuOgAAAARnQU1BAACxjwv8YQUAAAABc1JHQgCuzhzpAAABiVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9WTOOAAAAAgnRSTlMAkBUkBgMCHNzT5OwQtBPp7/gncfruCh0i80AElwX2B2zIdVMj2HDPsk8J6mf8C2L0yQGA5tUmGUQIKbzjFprd/lHQFHntDFJh1Eec3rsx0YaByj1O15HyLjCb/dZUxvARL5RL6EZV4vFyy0GZV6QaTfmWpedfYzavOmsqsyU/dNmu5diN6wAAAW5JREFUKM9902VXAkEUBuCLEouApCCCiBggiIDY3d3d3d2d7y93CGFZB98PO3f22TNnzsxdomSKd51eO2CIyE6VJIm8sg6pCKFMX14D9hbmyrVa08GZASgtF+G6EfqQ/HfmPz7CZlEKy1bh2xIvpdqAazZZbxuxosjcRokPBbZ45VBDp5Du0j+D8Xjhhj6f/qTQhSo2KA5RTZxMI8Ke+9DLeZp/jVciGXaImyd8Ep3E1+fkBd9EBhTy9QP1RMAAX03Ii6mVr++oIwrDxtdnfBFNYoSvD3gjGsUUXy8QZReEMSUPrYt4ZNehwSBPK1ERG6LobOYcpAZDsbGmDR1/UKmDN3GtTV3ok2DtDYxLydoMyIrFWHMLnKdmHqAn3Wa1V3cI3os+7u5nXepucbDGnvCoWUsHcsVr9Tot7J0loAmyISyrR14GU7u51R77EQp01VrKUUuZpdHUkJOouJwOY0GVnS+Ff1klJE46G88P/wDX2FL/6BFqmAAAAABJRU5ErkJggg==");
}
#block-searchbox .searchBar .form-group input {
  border: 1px solid #ababab;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  height: 38px;
  width: 300px;
  padding-left: 16px;
  float: right;
}
#block-searchbox .searchBar .form-group input:hover {
  border-color: rgb(167, 50, 34) !important;
}
#block-searchbox .searchBar .form-group input:focus {
  border-color: #2a8dd4;
  outline: 0;
}
@media (min-width: 992px) and (max-width: 1200px) {
  #block-searchbox {
    flex: auto;
  }
}

.path-search .search-form {
  padding: 50px 30px;
}
@media only screen and (max-width: 992px) {
  .path-search .search-form {
    padding: 10px;
  }
}
.path-search .search-form .form-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .path-search .search-form .form-wrapper {
    align-items: flex-start;
  }
}
.path-search .search-form .form-wrapper input#edit-keys {
  display: inline;
  margin: 0;
  padding: 0 15px;
  height: 45px;
  width: 96%;
  border-radius: 18px;
  border: 1px solid #cfd7e5;
}
.path-search .search-form input#edit-submit {
  width: 8%;
  height: 45px;
  border-radius: 18px;
}
@media only screen and (max-width: 992px) {
  .path-search .search-form input#edit-submit {
    width: 20%;
  }
}
@media only screen and (max-width: 992px) {
  .path-search .search-form .form-submit {
    margin: 0;
  }
}
.path-search .search-form .search-help-link,
.path-search .search-form label {
  display: none;
}
.path-search .search-form .form-item {
  width: 100%;
  display: inline-flex;
}
.path-search .search-advanced {
  display: none;
}
.path-search #block-mkk-content ol {
  padding-left: 0;
}
.path-search #block-mkk-content ol li {
  padding: 25px;
  border-top: 1px solid silver;
  position: relative;
  margin: 15px 0;
  list-style-type: none;
}
.path-search #block-mkk-content ol li:hover {
  cursor: pointer;
}
.path-search #block-mkk-content ol li h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
  font-family: "Segoe UI Semilight", "Segoe UI", Segoe, Tahoma, Helvetica, Arial, sans-serif;
}
.path-search #block-mkk-content ol li h3 a {
  color: #635e5a;
  font-size: unset;
}
.path-search #block-mkk-content ol li p {
  color: #333;
}
.path-search #block-mkk-content h2 {
  display: none;
}
.path-search #block-mkk-content strong {
  color: #a73222 !important;
  font-weight: bold;
}

.prg_id--15 {
  background-color: white;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-bottom: 1.5rem;
}

.prg_id--2,
.prg_id--9723 {
  margin: 1.5rem 0;
}

.prg_id--27 {
  padding: 1rem;
  padding-bottom: 0;
  background-color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-top: 1.5rem;
  border-bottom: none;
}
.prg_id--27 .col-md-3 {
  padding-top: 0.5rem;
}
.prg_id--27 .card {
  min-height: auto;
  height: 100%;
}
.prg_id--27 .card img {
  border-radius: 0;
}
.prg_id--27 .card::after {
  border-top: 15px solid #fff;
  left: calc(50% - 6px);
}

.prg_id--2749 {
  background-color: white;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-bottom: 1.5rem;
}

.prg_id--29 .row {
  background-color: #795d59 !important;
}

.prg_id--30 .row {
  background-color: #87554c !important;
}

.prg_id--31 .row {
  background-color: #656565 !important;
}

.sub-home-content .link-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.sub-home-content h2 {
  font-size: 1.4em;
  font-family: "Oswald", sans-serif;
}
.sub-home-content .content-top-box .content-top-left {
  flex: 1;
}
.sub-home-content .content-top-box .content-top-left .content-top-left-text-box {
  background: rgba(167, 50, 34, 0.8509803922);
  color: white;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}
.sub-home-content .content-top-box .content-top-left .content-top-left-text-box h2 {
  font-size: 1.8em;
}
.sub-home-content .content-top-box .content-top-left-text-box,
.sub-home-content .content-top-box .content-top-right-box {
  padding: 20px 24px 10px;
}
.sub-home-content .content-top-box .content-top-right .content-top-right-box {
  border-radius: 12px;
  min-height: 199px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #a28360;
  line-height: 1.3em;
  font-weight: 300;
  overflow-y: auto;
  color: white;
  background-position: 50% 0;
  background-size: 28px;
  background-repeat: no-repeat;
}
.sub-home-content .content-top-box .content-top-right .content-top-right-box h2 {
  font-size: 1.4em;
}
.sub-home-content .content-top-box .content-top-right .content-top-right-box:nth-child(2) {
  background-color: #af9e4e;
  margin-top: 10px;
}
.sub-home-content .content-top-box p {
  margin: 0px 0px 10px 0px;
}
@media only screen and (max-width: 992px) {
  .sub-home-content .content-top-box .content-top-left {
    display: block !important;
  }
  .sub-home-content .content-top-box .content-top-right-box {
    margin-top: 20px !important;
  }
}
.sub-home-content .content-middle-box {
  margin-top: 24px;
  padding: 24px;
  background-color: #656565;
  color: white;
  border-radius: 12px;
}
.sub-home-content .content-middle-box .content-middle img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 15px;
}
.sub-home-content .content-middle-box .content-middle p {
  font-weight: 300;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .sub-home-content .content-top-box .content-top-left {
    padding-right: 0;
  }
  .sub-home-content .content-top-box .content-top-left .content-top-left-text-box {
    position: absolute;
    top: 63%;
    min-height: 151px;
  }
  .sub-home-content .content-top-box .content-top-left img {
    border-radius: 12px;
  }
  .sub-home-content .content-top-box .content-top-right {
    padding-left: 24px;
  }
  .sub-home-content .content-top-box .content-top-right .content-top-right-box {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAAUCAYAAADY6P5TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDM1MiwgMjAyMC8wMS8zMC0xNTo1MDozOCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDkwMENCMzc4RDJDMTFFQTlENjdBMEE2REQ2MENBNDgiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDkwMENCMzY4RDJDMTFFQTlENjdBMEE2REQ2MENBNDgiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIwMjAgV2luZG93cyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjI2MzM3NUIxOEFCQzExRUE4NjA3RTg0QjEwNjFFMzMxIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjI2MzM3NUIyOEFCQzExRUE4NjA3RTg0QjEwNjFFMzMxIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+SaS7jwAAAXZJREFUeNrc1k8oBFEcwPHZoURxsycuctEerIs/JbnhuDcODi62XJQT5abc5EKOouxRXOSi7MnRSQ4kOaClRJHQju9PM7VN25ideW92Z199Dvuadt5339vdSViWNW0YxgbajPoab1hMECgvupDDQJ3EHSOLO9OeuMEwVlGMcdgLZjAhcTLh7GDpGMUuOmMWd4A5PJROmmUuPEUa+zEJK2ASGXfc35Ad9DCLd6t2Rw7tXg3ljqh79GAPfTW0a/f2cTz870LTx5tdYgjrsuFVDpP7byPlJ87PEXUbx2OVjuMtxipcb8WBIomjCMOK2ERrgLUGChTy3Z3Hp+a4K4wEXGOoQEcvLjSE/WANzSHXFzpQtGBLYZx8YIMK1qUs0JHBc4iwb6ygSeGalAaKDpwEiDtHWvFatAQKE0v48hEmP1LLaNQRpyvQ0Y9rj7gzpDTeX3ugYf937bjCPrCABt1xUQQ6pvCKPLojuqfvh21VI4mnqJ9nfwUYADOH4vOl475jAAAAAElFTkSuQmCC");
  }
}

.sectionControl {
  position: fixed;
  top: 55%;
  right: 24px;
  z-index: 12;
  margin-top: -153px;
  width: 43px;
  border: solid 1px #cbced4;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background-color: rgba(243, 243, 243, 0.7882352941);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sectionControl ul {
  list-style: none;
  padding-left: 0;
}
.sectionControl ul .sectionItem {
  position: relative;
  display: block;
  margin: 15px auto;
  width: 15px;
  height: 15px;
  border: solid 2px #606060;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.sectionControl ul .sectionItem:hover {
  background: #606060;
}
.sectionControl ul .sectionItem.select {
  background: #a73222;
  border: solid 2px #a73222;
}
.sectionControl ul .sectionItem.select:hover {
  background: #a73222;
  border: solid 2px #a73222;
}
.sectionControl ul .sectionItem .sectionTitle {
  position: absolute;
  top: -38px;
  right: 5px;
  width: 86px;
  height: 59px;
  visibility: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 26px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
.sectionControl ul .sectionItem:hover .sectionTitle {
  visibility: visible;
  opacity: 1;
}

.scroll-behavior .scroll-container {
  width: 350px;
  height: 200px;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.scroll-behavior .scroll-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 5em;
}

@media screen and (max-width: 992px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .prg_id--163 > .row > .col-md-4 {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .prg_id--32 > .row > .col-md-6 {
    width: 100%;
  }
}

.node-69 #block-mkk-content,
.node-70 #block-mkk-content,
.node-71 #block-mkk-content {
  border-left: none;
  border-right: none;
  padding-right: 0;
  padding-left: 0;
}

.layout-container .message-region div[data-drupal-messages]:not(.hidden) {
  padding: 10px 20px;
  margin-top: 10px;
  color: white;
  background-color: #a73222;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/*# sourceMappingURL=style.css.map */
