/* =========================
   Static Styles
========================= */
@charset "UTF-8";

section {
  background-color: #F4F6F8;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  line-height: 1.6;
  font-weight: 400;
  color: #1F2430;
  position: relative;
  background-color: #F4F6F8;
}

button {
  background-color: transparent;
  border-color: transparent;
}

section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}

a {
  font-weight: 400;
  cursor: pointer;
  color: #19B5A6;
  transition: color 0.3s ease;
}
a:hover {
  color: #128F83;
  text-decoration: none;
}

h1 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

p,
span {
  font-size: 0.875rem;
  line-height: 1.6;
}

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.hidden {
  visibility: hidden;
}

/* =========================
   Buttons
========================= */
.btn {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: #19B5A6 !important;
  border-color: #19B5A6 !important;
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: #128F83 !important;
  border-color: #128F83 !important;
}

.btn-secondary {
  background-color: #1F2430 !important;
  border-color: #1F2430 !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background-color: #151922 !important;
}

.btn-warning {
  background-color: #F4B942 !important;
  border-color: #F4B942 !important;
  color: #1F2430 !important;
}

/* =========================
   Forms
========================= */
.form-control {
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid #E0E4EA !important;
  background-color: #ffffff;
  box-shadow: none;
  min-height: 48px;
}

.form-control:focus {
  border-color: #19B5A6 !important;
  box-shadow: 0 0 0 2px rgba(25,181,166,0.15);
}

/* =========================
   Navigation
========================= */
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1F2430;
}

.nav-link.active {
  color: #19B5A6;
  font-weight: 600;
}

/* =========================
   Alerts
========================= */
.alert {
  border-radius: 0.6rem;
  padding: 1rem;
  font-size: 0.875rem;
  text-align: center;
}

.alert-success {
  background-color: #6FE3B4;
  color: #1F2430;
}

.alert-warning {
  background-color: #F4B942;
  color: #1F2430;
}

/* =========================
   Scroll Button
========================= */
.mbr-arrow-up a {
  background: #1F2430;
  border-radius: 50%;
  border: none;
}

/* =========================
   Cards & Layout
========================= */
.card-wrapper,
.item-wrapper {
  overflow: hidden;
}

.row {
  margin-left: -1rem;
  margin-right: -1rem;
}
.row > [class*=col] {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* =========================
   Footer Fix
========================= */
html,
body {
  min-height: 100vh;
}
body {
  font-family: Gloock;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: .02em;
}
.display-1 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1.56rem;
  letter-spacing: -0.01em;
}
.display-4 > .mbr-iconfont {
  font-size: 0.9375rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.8rem;
  letter-spacing: -0.014em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.09375rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.3125rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.6rem;
    font-size: calc( 0.9125rem + (0.75 - 0.9125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9125rem + (0.75 - 0.9125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #e6e8ec !important;
}
.bg-success {
  background-color: #19b5a6 !important;
}
.bg-info {
  background-color: #6fe3b4 !important;
}
.bg-warning {
  background-color: #f4f6f8 !important;
}
.bg-danger {
  background-color: #f4b942 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e6e8ec !important;
  border-color: #e6e8ec !important;
  color: #5b6578 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b5bbc7 !important;
  border-color: #b5bbc7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #5b6578 !important;
  background-color: #b5bbc7 !important;
  border-color: #b5bbc7 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1f2430 !important;
  border-color: #1f2430 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #6fe3b4 !important;
  border-color: #6fe3b4 !important;
  color: #0e452f !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #29d28e !important;
  border-color: #29d28e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #0e452f !important;
  background-color: #29d28e !important;
  border-color: #29d28e !important;
}
.btn-success,
.btn-success:active {
  background-color: #19b5a6 !important;
  border-color: #19b5a6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0e6960 !important;
  border-color: #0e6960 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0e6960 !important;
  border-color: #0e6960 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f4f6f8 !important;
  border-color: #f4f6f8 !important;
  color: #5c7691 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #bfcbd6 !important;
  border-color: #bfcbd6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #5c7691 !important;
  background-color: #bfcbd6 !important;
  border-color: #bfcbd6 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f4b942 !important;
  border-color: #f4b942 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #d3910c !important;
  border-color: #d3910c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #d3910c !important;
  border-color: #d3910c !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6e8ec;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b5bbc7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #5b6578 !important;
  background-color: #e6e8ec !important;
  border-color: #e6e8ec !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1f2430;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1f2430 !important;
  border-color: #1f2430 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6fe3b4;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #29d28e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #0e452f !important;
  background-color: #6fe3b4 !important;
  border-color: #6fe3b4 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #19b5a6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0e6960 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #19b5a6 !important;
  border-color: #19b5a6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f4f6f8;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #bfcbd6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5c7691 !important;
  background-color: #f4f6f8 !important;
  border-color: #f4f6f8 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f4b942;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d3910c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f4b942 !important;
  border-color: #f4b942 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e6e8ec !important;
}
.text-secondary {
  color: #1f2430 !important;
}
.text-success {
  color: #19b5a6 !important;
}
.text-info {
  color: #6fe3b4 !important;
}
.text-warning {
  color: #f4f6f8 !important;
}
.text-danger {
  color: #f4b942 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #acb3c0 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0d5b54 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #26c685 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b6c3d0 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c5870b !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  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;
}
.nav-tabs .nav-link.active {
  color: #e6e8ec;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6fe3b4;
}
.alert-warning {
  background-color: #f4f6f8;
}
.alert-danger {
  background-color: #f4b942;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e6e8ec;
  border-color: #e6e8ec;
  color: #667186;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e6e8ec;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #64eadd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1.56rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 0.9375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e6e8ec !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1.56rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 0.9375rem;
}
blockquote {
  border-color: #e6e8ec;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e6e8ec;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e6e8ec;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e6e8ec;
  border-bottom-color: #e6e8ec;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #e6e8ec !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #1f2430 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e6e8ec' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  padding: 18px 62px;
  border: 1px solid !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 18px 32px;
  }
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: inset 250px 0 0 0 #6fe3b4 !important;
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border-color: #e6e8ec !important;
}
.mbr-section-btn .btn-primary:hover,
.mbr-section-btn-main .btn-primary:hover,
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-primary:focus,
.mbr-section-btn-main .btn-primary:focus,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus {
  border-color: #6fe3b4 !important;
}
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary,
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border-color: #1f2430 !important;
}
.mbr-section-btn .btn-secondary:hover,
.mbr-section-btn-main .btn-secondary:hover,
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-secondary:focus,
.mbr-section-btn-main .btn-secondary:focus,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus {
  border-color: #6fe3b4 !important;
}
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success,
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border-color: #19b5a6 !important;
}
.mbr-section-btn .btn-success:hover,
.mbr-section-btn-main .btn-success:hover,
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-success:focus,
.mbr-section-btn-main .btn-success:focus,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus {
  border-color: #6fe3b4 !important;
}
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info,
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border-color: #6fe3b4 !important;
}
.mbr-section-btn .btn-info:hover,
.mbr-section-btn-main .btn-info:hover,
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-info:focus,
.mbr-section-btn-main .btn-info:focus,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus {
  border-color: #e6e8ec !important;
  box-shadow: inset 250px 0 0 0 #e6e8ec !important;
}
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning,
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border-color: #f4f6f8 !important;
}
.mbr-section-btn .btn-warning:hover,
.mbr-section-btn-main .btn-warning:hover,
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-warning:focus,
.mbr-section-btn-main .btn-warning:focus,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus {
  border-color: #6fe3b4 !important;
}
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger,
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border-color: #f4b942 !important;
}
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn-main .btn-danger:hover,
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-danger:focus,
.mbr-section-btn-main .btn-danger:focus,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus {
  border-color: #6fe3b4 !important;
}
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white,
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border-color: #ffffff !important;
}
.mbr-section-btn .btn-white:hover,
.mbr-section-btn-main .btn-white:hover,
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-white:focus,
.mbr-section-btn-main .btn-white:focus,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus {
  border-color: #6fe3b4 !important;
}
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black,
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border-color: #000000 !important;
}
.mbr-section-btn .btn-black:hover,
.mbr-section-btn-main .btn-black:hover,
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-black:focus,
.mbr-section-btn-main .btn-black:focus,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus {
  border-color: #6fe3b4 !important;
}
.cid-tGGzgCbktB {
  z-index: 1000;
  width: 100%;
}
.cid-tGGzgCbktB .navbar-dropdown {
  background-color: #1b1b1b !important;
  padding: 0;
  position: fixed;
}
.cid-tGGzgCbktB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #1b1b1b !important;
  background: #1b1b1b;
}
.cid-tGGzgCbktB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGGzgCbktB .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGGzgCbktB .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tGGzgCbktB .menu_box .navbar.opened,
  .cid-tGGzgCbktB .menu_box .navbar-collapse {
    background-color: #1b1b1b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tGGzgCbktB nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tGGzgCbktB .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tGGzgCbktB .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tGGzgCbktB .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tGGzgCbktB .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tGGzgCbktB .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tGGzgCbktB .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #000000;
  }
  .cid-tGGzgCbktB .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tGGzgCbktB .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tGGzgCbktB .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tGGzgCbktB .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tGGzgCbktB .offcanvas-body .mbr-text,
  .cid-tGGzgCbktB .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tGGzgCbktB .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tGGzgCbktB .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tGGzgCbktB .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-tGGzgCbktB .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tGGzgCbktB .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tGGzgCbktB .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tGGzgCbktB .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tGGzgCbktB ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tGGzgCbktB .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGGzgCbktB .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tGGzgCbktB .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tGGzgCbktB 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;
  }
  .cid-tGGzgCbktB .lg_brand {
    margin: 0 1rem;
  }
  .cid-tGGzgCbktB .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-tGGzgCbktB .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tGGzgCbktB .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tGGzgCbktB .nav-item {
    margin: 0 !important;
  }
}
.cid-tGGzgCbktB .nav-item .nav-link {
  position: relative;
}
.cid-tGGzgCbktB .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e6e8ec;
  transition: all 0.3s ease-out;
}
.cid-tGGzgCbktB .nav-item .nav-link:hover,
.cid-tGGzgCbktB .nav-item .nav-link:focus {
  opacity: 1;
  color: #e6e8ec !important;
}
.cid-tGGzgCbktB .nav-item .nav-link:hover::before,
.cid-tGGzgCbktB .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tGGzgCbktB .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tGGzgCbktB .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tGGzgCbktB .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tGGzgCbktB .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGGzgCbktB .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tGGzgCbktB .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tGGzgCbktB .offcanvas_box {
    display: none;
  }
}
.cid-tGGzgCbktB .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tGGzgCbktB .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tGGzgCbktB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tGGzgCbktB .container {
  display: flex;
  margin: auto;
}
.cid-tGGzgCbktB .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tGGzgCbktB .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tGGzgCbktB .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tGGzgCbktB .navbar-caption {
  color: #ffffff;
}
.cid-tGGzgCbktB .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tGGzgCbktB .navbar-nav {
    margin: 0;
  }
}
.cid-tGGzgCbktB .dropdown-menu,
.cid-tGGzgCbktB .navbar.opened {
  background-color: false !important;
}
.cid-tGGzgCbktB .nav-item:focus,
.cid-tGGzgCbktB .nav-link:focus {
  outline: none;
}
.cid-tGGzgCbktB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGGzgCbktB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGGzgCbktB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGGzgCbktB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGGzgCbktB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGGzgCbktB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGGzgCbktB .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tGGzgCbktB .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tGGzgCbktB .navbar.opened {
  transition: all 0.3s;
}
.cid-tGGzgCbktB .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tGGzgCbktB .navbar .navbar-logo img {
  object-fit: contain;
}
.cid-tGGzgCbktB .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tGGzgCbktB .navbar.collapsed {
  justify-content: center;
}
.cid-tGGzgCbktB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGGzgCbktB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGGzgCbktB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGGzgCbktB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGGzgCbktB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGGzgCbktB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tGGzgCbktB .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGGzgCbktB .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tGGzgCbktB .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tGGzgCbktB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGGzgCbktB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGGzgCbktB .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tGGzgCbktB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGGzgCbktB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tGGzgCbktB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGGzgCbktB .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tGGzgCbktB .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGGzgCbktB .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tGGzgCbktB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tGGzgCbktB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGGzgCbktB .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tGGzgCbktB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGGzgCbktB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGGzgCbktB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGGzgCbktB .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;
}
.cid-tGGzgCbktB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tGGzgCbktB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGGzgCbktB .dropdown-item.active,
.cid-tGGzgCbktB .dropdown-item:active {
  background-color: transparent;
}
.cid-tGGzgCbktB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGGzgCbktB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGGzgCbktB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGGzgCbktB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGGzgCbktB .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-tGGzgCbktB ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tGGzgCbktB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGGzgCbktB button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #1b1b1b;
  background: #c2b299;
}
.cid-tGGzgCbktB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGGzgCbktB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGGzgCbktB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGGzgCbktB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGGzgCbktB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGGzgCbktB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGGzgCbktB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGGzgCbktB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGGzgCbktB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGGzgCbktB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tGGzgCbktB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGGzgCbktB .navbar {
    height: 70px;
  }
  .cid-tGGzgCbktB .navbar.opened {
    height: auto;
  }
  .cid-tGGzgCbktB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGGzgCbktB .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tGGzgCbktB .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tGGzgCbktB .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tGGzgCbktB .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-tGGzgCbktB .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tGGzgCbktB .navbar-caption:hover {
  color: #e6e8ec;
}
@media (min-width: 992px) {
  .cid-tGGzgCbktB .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tGGzgCbktB .text_widget {
  margin-bottom: 32px;
}
.cid-tGGzgCbktB .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tGGzgCbktB .text_widget a:hover {
  opacity: .5;
}
.cid-tGGzgCbktB .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tGGzgCbktB .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGGzgCbktB .mbr-section-subtitle,
.cid-tGGzgCbktB .text_widget,
.cid-tGGzgCbktB .mbr-section-btn {
  text-align: center;
}
.cid-tGGzgCbktB a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tGGzh0oaiq {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tGGzh0oaiq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGGzh0oaiq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGGzh0oaiq .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tGGzh0oaiq .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tGGzh0oaiq .container {
    padding: 0 20px;
  }
}
.cid-tGGzh0oaiq .title-wrapper {
  padding: 200px 0;
}
@media (max-width: 992px) {
  .cid-tGGzh0oaiq .title-wrapper {
    padding: 50px 0;
  }
}
.cid-tGGzh0oaiq .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tGGzh0oaiq .title-wrapper .mbr-text {
  margin: 24px 0;
}
@media (max-width: 992px) {
  .cid-tGGzh0oaiq .title-wrapper .mbr-text {
    margin: 20px 0;
  }
}
.cid-tGGzh0oaiq .mbr-section-title {
  color: #ffffff;
}
.cid-tGGzh0oaiq .mbr-text {
  color: #f2f2f2;
}
.cid-tGGzh0oaiq .mbr-section-title,
.cid-tGGzh0oaiq .mbr-section-btn {
  text-align: center;
}
#Dashboard {
  /* Kleine Responsivität */
}
#Dashboard :root {
  --bg: #E6E8EC;
  --seitenleiste: #1F2430;
  --karte: #FFFFFF;
  --text: #1F2430;
  --muted: #6B7280;
  --teal: #19B5A6;
  --teal-2: #6FE3B4;
  --warn: #F4B942;
  --soft: #F1F3F6;
  /* 5 Schriftgrößen */
  --fs-xl: 1.875rem;
  /* 30px */
  --fs-l: 1.375rem;
  /* 22px */
  --fs-m: 1rem;
  /* 16px */
  --fs-s: 0.875rem;
  /* 14px */
  --fs-xs: 0.75rem;
  /* 12px */
}
#Dashboard * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#Dashboard .app {
  display: flex;
  min-height: 100vh;
  gap: 1.5rem;
  padding: 1.5rem;
}
#Dashboard .seitenleiste {
  width: 16.5rem;
  background: linear-gradient(180deg, #252b3a, #1f2430);
  color: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
#Dashboard .marke {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.4rem;
}
#Dashboard .marke-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: .65rem;
  display: grid;
  place-items: center;
  background: var(--teal);
  font-weight: 700;
}
#Dashboard .marke-text {
  font-weight: 600;
}
#Dashboard .menue {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: 0.5rem;
}
#Dashboard .menue-punkt {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .7rem;
  border-radius: .75rem;
  color: #CBD5E1;
  text-decoration: none;
  font-size: var(--fs-s);
  font-weight: 500;
}
#Dashboard .menue-punkt:hover,
#Dashboard .menue-punkt.aktiv {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
#Dashboard .menue-icon {
  width: 1.1rem;
  height: 1.1rem;
  filter: invert(1);
  opacity: 0.9;
}
#Dashboard .profil {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#Dashboard .profil-avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #cfd6df;
}
#Dashboard .profil-name {
  font-size: var(--fs-s);
  font-weight: 600;
}
#Dashboard .profil-sub {
  font-size: var(--fs-xs);
  opacity: 0.8;
}
#Dashboard .inhalt {
  flex: 1;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 1.25rem;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}
#Dashboard .kopfzeile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
#Dashboard .h1 {
  font-size: var(--fs-l);
  font-weight: 600;
}
#Dashboard .subtext {
  font-size: var(--fs-s);
  color: var(--muted);
  margin-top: 0.35rem;
}
#Dashboard .kopf-rechts {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#Dashboard .suche {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid rgba(31, 36, 48, 0.08);
  padding: .55rem .7rem;
  border-radius: .75rem;
  min-width: 16rem;
}
#Dashboard .feld-icon {
  width: 1.1rem;
  height: 1.1rem;
  opacity: 0.65;
}
#Dashboard .suche-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: var(--fs-s);
}
#Dashboard .icon-button {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: .85rem;
  background: #fff;
  border: 1px solid rgba(31, 36, 48, 0.08);
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}
#Dashboard .icon-button img {
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0.8;
}
#Dashboard .badge {
  position: absolute;
  top: .55rem;
  right: .55rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--teal);
}
#Dashboard .kopf-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #cfd6df;
}
#Dashboard .kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
#Dashboard .kpi {
  background: var(--karte);
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 36, 48, 0.06);
}
#Dashboard .kpi::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 220px;
  height: 220px;
  background-image: url("../../../assets/images/bg-kachel.svg");
  background-size: 220px 220px;
  opacity: .35;
  transform: rotate(0deg);
  pointer-events: none;
}
#Dashboard .kpi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#Dashboard .kpi-titel {
  font-size: var(--fs-xs);
  color: rgba(31, 36, 48, 0.65);
  font-weight: 600;
}
#Dashboard .kpi-wert {
  margin-top: .5rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
#Dashboard .kpi-zahl {
  font-size: var(--fs-xl);
  font-weight: 600;
}
#Dashboard .kpi-meta {
  font-size: var(--fs-s);
  color: rgba(31, 36, 48, 0.55);
  font-weight: 500;
}
#Dashboard .kpi-leiste {
  margin-top: .75rem;
  height: .38rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: .25rem;
  overflow: hidden;
}
#Dashboard .kpi-balken {
  height: 100%;
  background: var(--teal);
  border-radius: 0.25rem;
}
#Dashboard .kpi-fuss {
  margin-top: .55rem;
  font-size: var(--fs-xs);
  opacity: 0.75;
}
#Dashboard .kpi-dunkel {
  color: #fff;
  background: linear-gradient(135deg, #2c3446, #1f2430);
}
#Dashboard .kpi-dunkel .kpi-titel,
#Dashboard .kpi-dunkel .kpi-meta,
#Dashboard .kpi-dunkel .kpi-fuss {
  color: rgba(255, 255, 255, 0.8);
}
#Dashboard .kpi-dunkel::after {
  opacity: 0.25;
}
#Dashboard .kpi-teal {
  color: #fff;
  background: linear-gradient(135deg, #1fb6a6, #159b8e);
}
#Dashboard .kpi-teal .kpi-titel {
  color: rgba(255, 255, 255, 0.85);
}
#Dashboard .kpi-teal::after {
  opacity: 0.18;
}
#Dashboard .kpi-warn {
  background: linear-gradient(135deg, #fff7e8, #fff1d3);
}
#Dashboard .kpi-warn .kpi-titel {
  color: rgba(31, 36, 48, 0.65);
}
#Dashboard .karten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
#Dashboard .karte {
  background: var(--karte);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(31, 36, 48, 0.06);
}
#Dashboard .karte-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 0.75rem;
}
#Dashboard .h2 {
  font-size: var(--fs-m);
  font-weight: 600;
}
#Dashboard .link {
  font-size: var(--fs-xs);
  color: rgba(31, 36, 48, 0.65);
  text-decoration: none;
  font-weight: 600;
}
#Dashboard .link:hover {
  color: var(--text);
}
#Dashboard .rechts-gruppe {
  display: flex;
  gap: .5rem;
  align-items: center;
}
#Dashboard .select {
  font-size: var(--fs-xs);
  padding: .5rem .6rem;
  border-radius: .65rem;
  border: 1px solid rgba(31, 36, 48, 0.1);
  background: #fff;
  outline: none;
}
#Dashboard .auslastung-meta {
  display: flex;
  gap: .5rem;
  margin-bottom: 0.5rem;
}
#Dashboard .pill {
  font-size: var(--fs-xs);
  padding: .35rem .55rem;
  border-radius: 999px;
  background: var(--soft);
  color: rgba(31, 36, 48, 0.7);
  font-weight: 600;
}
#Dashboard .pill-zahl {
  color: var(--teal);
}
#Dashboard .pill-plus .pill-zahl {
  color: var(--teal);
}
#Dashboard .chart-wrap {
  background: #fff;
  border-radius: .85rem;
  padding: 0.5rem;
}
#Dashboard .chart-wrap canvas {
  width: 100%;
}
#Dashboard .map-wrap {
  background: #fff;
  border-radius: .85rem;
  overflow: hidden;
}
#Dashboard #karteStandorte {
  height: 220px;
}
#Dashboard .standort-fuss {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.7rem;
}
#Dashboard .standort-zeile {
  display: flex;
  gap: .6rem;
  align-items: center;
}
#Dashboard .dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--teal);
}
#Dashboard .standort-name {
  font-size: var(--fs-s);
  font-weight: 600;
}
#Dashboard .standort-sub {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 0.1rem;
}
#Dashboard .standort-zahlen {
  display: flex;
  gap: .4rem;
  color: rgba(31, 36, 48, 0.65);
  font-weight: 600;
}
#Dashboard .mini {
  font-size: var(--fs-xs);
}
#Dashboard .liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
#Dashboard .listen-zeile,
#Dashboard .alarm-zeile {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .25rem;
  border-bottom: 1px solid rgba(31, 36, 48, 0.06);
}
#Dashboard .listen-icon {
  width: 2rem;
  height: 2rem;
  border-radius: .65rem;
  display: grid;
  place-items: center;
  background: #1F2430;
  color: #fff;
  font-weight: 700;
}
#Dashboard .listen-icon.teal {
  background: var(--teal);
}
#Dashboard .listen-text {
  flex: 1;
}
#Dashboard .listen-titel {
  font-size: var(--fs-s);
  font-weight: 600;
}
#Dashboard .listen-sub {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 0.12rem;
}
#Dashboard .listen-meta {
  font-size: var(--fs-xs);
  color: rgba(31, 36, 48, 0.6);
  font-weight: 600;
}
#Dashboard .listen-meta.warn {
  color: #b57a00;
}
#Dashboard .alarm {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: .65rem;
  display: grid;
  place-items: center;
  background: #FFF1D3;
  color: #b57a00;
  font-weight: 800;
}
@media (max-width: 1100px) {
  #Dashboard .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #Dashboard .karten-grid {
    grid-template-columns: 1fr;
  }
  #Dashboard .seitenleiste {
    display: none;
  }
  #Dashboard .app {
    padding: 1rem;
  }
}
