.btn {
  border-width: 2px;
}
body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #0076af !important;
}
.bg-info {
  background-color: #182a46 !important;
}
.bg-warning {
  background-color: #2299aa !important;
}
.bg-danger {
  background-color: #ffb006 !important;
}
.btn-primary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #182a46 !important;
  border-color: #182a46 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #182a46 !important;
  border-color: #182a46 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #182a46 !important;
  border-color: #182a46 !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #0076af !important;
  border-color: #0076af !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0076af !important;
  border-color: #0076af !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0076af !important;
  border-color: #0076af !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #2299aa !important;
  border-color: #2299aa !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb006 !important;
  border-color: #ffb006 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ffb006 !important;
  border-color: #ffb006 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ffb006 !important;
  border-color: #ffb006 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #ffffff;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #6ec7f2;
  color: #6ec7f2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1ea8eb !important;
  background-color: transparent !important;
  border-color: #1ea8eb !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #182a46;
  color: #182a46;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #020305 !important;
  background-color: transparent !important;
  border-color: #020305 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #182a46 !important;
  border-color: #182a46 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #0076af;
  color: #0076af;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #003c58 !important;
  background-color: transparent !important;
  border-color: #003c58 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0076af !important;
  border-color: #0076af !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #2299aa;
  color: #2299aa;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #145862 !important;
  background-color: transparent !important;
  border-color: #145862 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffb006;
  color: #ffb006;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ae7700 !important;
  background-color: transparent !important;
  border-color: #ae7700 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb006 !important;
  border-color: #ffb006 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #272727;
  color: #272727;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !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,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !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: #ffffff !important;
}
.text-secondary {
  color: #6ec7f2 !important;
}
.text-success {
  color: #0076af !important;
}
.text-info {
  color: #182a46 !important;
}
.text-warning {
  color: #2299aa !important;
}
.text-danger {
  color: #ffb006 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ffffff !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #15a1e5 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #003149 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #114c55 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #9f6d00 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #182a46;
}
.alert-warning {
  background-color: #2299aa;
}
.alert-danger {
  background-color: #ffb006;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.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: #30bbff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #7498cf;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #6ad2e1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff1d2;
}
/* Scroll to top button*/
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #6ec7f2 !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='%23ffffff' %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;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tNWTew1itk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/banner-sportraum-2000x502.webp");
}
.cid-tNWTew1itk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNWTew1itk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNWTew1itk .container {
    padding: 0 30px;
  }
}
.cid-tNWTew1itk .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-tNWTew1itk .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-tNWTew1itk .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tNWTew1itk .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tNWTew1itk .mbr-section-title {
  color: #ffffff;
}
.cid-tNWTew1itk .mbr-text {
  color: #ffffff;
}
.cid-tNWTew1itk .mbr-section-title P {
  text-align: left;
}
.cid-tY7EdlgRTz {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #13283b;
}
.cid-tY7EdlgRTz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY7EdlgRTz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY7EdlgRTz .col-title {
  margin-bottom: 32px;
}
.cid-tY7EdlgRTz .mbr-section-title {
  color: #FFFFFF;
}
.cid-tY7EdlgRTz .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-tY7EdlgRTz .cards-row {
  row-gap: 32px;
}
.cid-tY7EdlgRTz .card {
  border-radius: 0;
}
@media (max-width: 767px) {
  .cid-tY7EdlgRTz .card {
    text-align: center;
  }
}
.cid-tY7EdlgRTz .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: stretch;
  flex-wrap: wrap;
}
.cid-tY7EdlgRTz .mbr-iconfont {
  flex-shrink: 0;
  display: block;
  font-size: 48px;
  color: #b79b6c;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-tY7EdlgRTz .mbr-iconfont {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tY7EdlgRTz .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-tY7EdlgRTz .text-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tY7EdlgRTz .text-wrap {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tY7EdlgRTz .card-title {
  flex-grow: 1;
  color: #FFFFFF;
}
.cid-tY7EdlgRTz .card-text {
  width: 100%;
  margin-top: 20px;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tY7EdlgRTz .card-text {
    margin-top: 0.5rem;
  }
}
.cid-tY7tPQGUnK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-tY7tPQGUnK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY7tPQGUnK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY7tPQGUnK .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tY7tPQGUnK .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tY7tPQGUnK .container {
    padding: 0;
  }
}
.cid-tY7tPQGUnK .row {
  justify-content: center;
}
.cid-tY7tPQGUnK .nav.nav-tabs {
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
  border: none;
}
@media (max-width: 992px) {
  .cid-tY7tPQGUnK .nav.nav-tabs {
    margin-bottom: 40px;
    padding: 0 16px;
  }
}
.cid-tY7tPQGUnK .nav.nav-tabs .nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  border-left: 1px solid #263652;
}
.cid-tY7tPQGUnK .nav.nav-tabs .nav-item:first-child {
  border-left: none;
}
@media (max-width: 992px) {
  .cid-tY7tPQGUnK .nav.nav-tabs .nav-item {
    border: none;
    margin-bottom: 10px;
  }
}
.cid-tY7tPQGUnK .nav.nav-tabs .nav-item .nav-link {
  padding: 0;
  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-tY7tPQGUnK .nav.nav-tabs .nav-item .nav-link.active {
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-tY7tPQGUnK .tab-content {
    margin-bottom: 40px;
    padding: 0 16px;
  }
}
.cid-tY7tPQGUnK .tab-content .tab-pane .image-wrap img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tY7tPQGUnK .tab-content .tab-pane .image-wrap img {
    height: 300px;
  }
}
.cid-tY7tPQGUnK .tab-content .tab-pane .text-wrap {
  padding-left: 70px;
}
@media (max-width: 992px) {
  .cid-tY7tPQGUnK .tab-content .tab-pane .text-wrap {
    padding-left: 0;
    margin-top: 30px;
  }
}
.cid-tY7tPQGUnK .tab-content .tab-pane .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tY7tPQGUnK .mbr-text {
  color: #263652;
}
.cid-tP4MTLKMeQ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/industrie-erdwrme-2000x502.webp");
}
.cid-tP4MTLKMeQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP4MTLKMeQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP4MTLKMeQ .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tP4MTLKMeQ .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tP4MTLKMeQ .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tP4MTLKMeQ .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tP4MTLKMeQ .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #182a46 !important;
}
.cid-tP4MTLKMeQ .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tP4MTLKMeQ .text {
  display: flex;
  align-items: flex-end;
  height: 48rem;
}
@media (max-width: 992px) {
  .cid-tP4MTLKMeQ .text {
    height: 100%;
  }
}
.cid-tP4MTLKMeQ .text .text-wrapper {
  z-index: 1;
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-tP4MTLKMeQ .text .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tP4MTLKMeQ .text .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tP4MTLKMeQ .text .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-tP4MTLKMeQ .text .text-wrapper .text-container {
  width: 100%;
}
.cid-tP4MTLKMeQ .text .text-wrapper .text-container .mbr-text {
  margin-bottom: 30px;
  width: 50%;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-tP4MTLKMeQ .text .text-wrapper .text-container .mbr-text {
    margin-bottom: 15px;
    width: 100%;
  }
}
.cid-tP4MTLKMeQ .mbr-section-title {
  color: #FFFFFF;
}
.cid-tP4MTLKMeQ .mbr-text {
  color: #FFFFFF;
  text-align: left;
}
.cid-t3rRSFErIH {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-t3rRSFErIH .image-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-t3rRSFErIH .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-t3rRSFErIH .card-wrapper {
  padding: 3rem;
  padding-bottom: 1rem;
  background: #122e48;
  position: relative;
  margin-bottom: 2rem;
}
.cid-t3rRSFErIH .card-wrapper .mbr-iconfont {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .cid-t3rRSFErIH .card-wrapper {
    padding: 1.5rem;
    padding-bottom: 0;
  }
}
.cid-t3rRSFErIH .primary {
  background: #ffffff;
}
.cid-t3rRSFErIH .primary .mbr-iconfont {
  color: #000000;
}
.cid-t3rRSFErIH .mbr-text {
  color: #ffffff;
}
.cid-t3rRSFErIH .name {
  color: #ffffff;
}
.cid-t3rRSFErIH .position {
  color: #bbbbbb;
}
.cid-t3rRSFErIH .mbr-section-title {
  color: #ffffff;
}
.cid-t3rRSFErIH .mbr-primarytext {
  color: #13283b;
}
.cid-t3rRSFErIH .primary-name {
  color: #000000;
}
.cid-t3rRSFErIH .primary-position {
  color: #000000;
}
.cid-t3rRV9yezw {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/team5.webp");
}
.cid-t3rRV9yezw .mbr-overlay {
  background-color: #13283b;
  opacity: 0.8;
}
.cid-t3rRV9yezw input,
.cid-t3rRV9yezw textarea {
  border-radius: 0;
}
.cid-t3rRV9yezw input:hover,
.cid-t3rRV9yezw textarea:hover {
  border: 1px solid transparent !important;
}
.cid-t3rRV9yezw textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-t3rRV9yezw .col-auto {
    margin: auto;
  }
}
.cid-t3rRV9yezw .mbr-main-subtitle {
  background: #ffffff;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-t3rRV9yezw .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #ffffff;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-t3rRV9yezw .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-t3rRV9yezw .btn {
  padding: 1rem 3rem;
}
.cid-t3rRV9yezw .mbr-section-text {
  color: #ffffff;
}
.cid-t3rRV9yezw .mbr-section-title {
  color: #ffffff;
}
.cid-t3rRWwcVMp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-t3rRWwcVMp .google-map {
  height: 35rem;
  position: relative;
}
.cid-t3rRWwcVMp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t3rRWwcVMp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t3rRWwcVMp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t3rRWwcVMp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tY7Da3IQkw {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #272727;
}
.cid-tY7Da3IQkw .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tY7Da3IQkw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tY7Da3IQkw .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tY7Da3IQkw .row {
    text-align: center;
  }
}
.cid-tY7Da3IQkw li {
  padding-bottom: 5px;
}
.cid-tY7Da3IQkw .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tY7Da3IQkw .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tY7Da3IQkw div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tY7Da3IQkw .mbr-iconfont {
  padding-right: 6px;
}
.cid-tY7Da3IQkw .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tY7Da3IQkw .soc-link,
.cid-tY7Da3IQkw .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tY7HeUXDkg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tY7HeUXDkg .left-side {
  text-align: left;
  padding: 0 5rem 0 8rem;
}
.cid-tY7HeUXDkg .row {
  align-items: center;
}
@media (max-width: 600px) {
  .cid-tY7HeUXDkg .mbr-section-btn {
    margin-bottom: 25px;
  }
}
.cid-tY7HeUXDkg .mbr-section-title {
  text-align: left;
}
.cid-tY7HeUXDkg .mbr-section-subtitle {
  color: #626262;
  margin: 0;
  text-align: left;
  padding-top: 9px;
}
.cid-tY7HeUXDkg .panel-text {
  margin-bottom: 2.5rem;
  border: 0px;
}
.cid-tY7HeUXDkg span {
  color: #ffffff;
  float: right;
  margin-top: 2px;
}
.cid-tY7HeUXDkg .panel-title-edit {
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  padding: 24px 0;
  background-color: rgba(0, 0, 0, 0);
  border-top: 1px solid #313131;
}
.cid-tY7HeUXDkg .card:last-child {
  border-bottom: 1px solid #313131;
}
.cid-tY7HeUXDkg .card-header {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 0;
}
.cid-tY7HeUXDkg .card {
  border-radius: 0;
}
.cid-tY7HeUXDkg .card:first-child {
  padding-top: 2rem;
}
@media (max-width: 1400px) {
  .cid-tY7HeUXDkg img {
    margin-top: 25px;
  }
}
@media (max-width: 990px) {
  .cid-tY7HeUXDkg .left-side {
    padding: 15px;
  }
}
.cid-tY7G0DXkn2 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background3-1.webp");
}
.cid-tY7G0DXkn2 .mbr-overlay {
  background-color: #13283b;
  opacity: 0.7;
}
.cid-tY7G0DXkn2 input,
.cid-tY7G0DXkn2 textarea {
  border-radius: 0;
}
.cid-tY7G0DXkn2 input:hover,
.cid-tY7G0DXkn2 textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tY7G0DXkn2 textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tY7G0DXkn2 .col-auto {
    margin: auto;
  }
}
.cid-tY7G0DXkn2 .mbr-main-subtitle {
  background: #ffffff;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tY7G0DXkn2 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #ffffff;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tY7G0DXkn2 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tY7G0DXkn2 .btn {
  padding: 1rem 3rem;
}
.cid-tY7G0DXkn2 .mbr-section-text {
  color: #ffffff;
}
.cid-tY7G0DXkn2 .mbr-section-title {
  color: #ffffff;
}
.cid-tYjYbcNH07 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #13283b;
}
.cid-tYjYbcNH07 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjYbcNH07 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjYbcNH07 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjYbcNH07 .row {
    text-align: center;
  }
}
.cid-tYjYbcNH07 li {
  padding-bottom: 5px;
}
.cid-tYjYbcNH07 .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjYbcNH07 .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjYbcNH07 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjYbcNH07 .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjYbcNH07 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjYbcNH07 .soc-link,
.cid-tYjYbcNH07 .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tY7oZeeZpt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/badkonzept.webp");
}
.cid-tY7oZeeZpt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY7oZeeZpt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tY7oZeeZpt .container {
    padding: 0 30px;
  }
}
.cid-tY7oZeeZpt .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-tY7oZeeZpt .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-tY7oZeeZpt .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tY7oZeeZpt .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tY7oZeeZpt .mbr-section-title {
  color: #ffffff;
}
.cid-tY7oZeeZpt .mbr-text {
  color: #ffffff;
}
.cid-tY7KoSRHw9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tY7KoSRHw9 .row {
  flex-direction: row-reverse;
}
.cid-tY7KoSRHw9 .mbr-section-title {
  color: #06182d;
}
.cid-tY7KoSRHw9 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #122e48;
  background: linear-gradient(#122e48 0%, #275398 69%, #98dee8 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tY7KoSRHw9 .mbr-section-subtitle {
  color: #06182d;
}
.cid-tY7KoSRHw9 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tY7KoSRHw9 .mbr-section-text {
  color: #999999;
}
.cid-tY7KoSRHw9 .nav-tabs .nav-item.open .nav-link:focus,
.cid-tY7KoSRHw9 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tY7KoSRHw9 .nav-tabs {
  flex-wrap: wrap;
  flex-direction: column;
  border-bottom: 1px solid #f4f6f9;
}
.cid-tY7KoSRHw9 .nav-tabs .nav-item {
  margin-right: 4px;
}
@media (max-width: 991px) {
  .cid-tY7KoSRHw9 .nav-tabs {
    margin-bottom: 20px;
  }
}
.cid-tY7KoSRHw9 .nav-tabs .nav-link {
  color: #06182d;
  font-style: normal;
  font-weight: 300;
  transition: all 0.5s;
  border: none;
  border-radius: 0 !important;
  background-color: #f4f6f9;
  padding: 1rem 2.2rem;
}
.cid-tY7KoSRHw9 .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #13283b;
}
.cid-tY7KoSRHw9 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #13283b;
}
.cid-tY7KoSRHw9 P {
  color: #879a9f;
}
@media (max-width: 576px) {
  .cid-tY7KoSRHw9 .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-tY7KoSRHw9 .mbr-text,
  .cid-tY7KoSRHw9 .nav-link {
    text-align: center;
  }
}
.cid-tY7KoSRHw9 .img-wrap img {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tY7KoSRHw9 * {
    text-align: center;
  }
}
.cid-tY7KoSRHw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY7KoSRHw9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY7oZMy5mP {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background7.webp");
}
.cid-tY7oZMy5mP .mbr-overlay {
  background-color: #1f1f1f;
  opacity: 0.7;
}
.cid-tY7oZMy5mP input,
.cid-tY7oZMy5mP textarea {
  border-radius: 0;
}
.cid-tY7oZMy5mP input:hover,
.cid-tY7oZMy5mP textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tY7oZMy5mP textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tY7oZMy5mP .col-auto {
    margin: auto;
  }
}
.cid-tY7oZMy5mP .mbr-main-subtitle {
  background: #ffffff;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tY7oZMy5mP .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #ffffff;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tY7oZMy5mP .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tY7oZMy5mP .btn {
  padding: 1rem 3rem;
}
.cid-tY7oZMy5mP .form-control,
.cid-tY7oZMy5mP .field-input {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tY7oZMy5mP .form-control::-webkit-input-placeholder,
.cid-tY7oZMy5mP .field-input::-webkit-input-placeholder,
.cid-tY7oZMy5mP .form-control::-webkit-input-placeholder,
.cid-tY7oZMy5mP .field-input::-webkit-input-placeholder {
  color: #0f2d48;
}
.cid-tY7oZMy5mP .form-control:-moz-placeholder,
.cid-tY7oZMy5mP .field-input:-moz-placeholder,
.cid-tY7oZMy5mP .form-control:-moz-placeholder,
.cid-tY7oZMy5mP .field-input:-moz-placeholder {
  color: #0f2d48;
}
.cid-tY7oZMy5mP .form-control:hover,
.cid-tY7oZMy5mP .field-input:hover,
.cid-tY7oZMy5mP .form-control:focus,
.cid-tY7oZMy5mP .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #101112;
  box-shadow: none;
  outline: none;
}
.cid-tY7oZMy5mP .form-control:hover::-webkit-input-placeholder,
.cid-tY7oZMy5mP .field-input:hover::-webkit-input-placeholder,
.cid-tY7oZMy5mP .form-control:focus::-webkit-input-placeholder,
.cid-tY7oZMy5mP .field-input:focus::-webkit-input-placeholder,
.cid-tY7oZMy5mP .form-control:hover::-webkit-input-placeholder,
.cid-tY7oZMy5mP .field-input:hover::-webkit-input-placeholder,
.cid-tY7oZMy5mP .form-control:focus::-webkit-input-placeholder,
.cid-tY7oZMy5mP .field-input:focus::-webkit-input-placeholder {
  color: #353535;
}
.cid-tY7oZMy5mP .form-control:hover:-moz-placeholder,
.cid-tY7oZMy5mP .field-input:hover:-moz-placeholder,
.cid-tY7oZMy5mP .form-control:focus:-moz-placeholder,
.cid-tY7oZMy5mP .field-input:focus:-moz-placeholder,
.cid-tY7oZMy5mP .form-control:hover:-moz-placeholder,
.cid-tY7oZMy5mP .field-input:hover:-moz-placeholder,
.cid-tY7oZMy5mP .form-control:focus:-moz-placeholder,
.cid-tY7oZMy5mP .field-input:focus:-moz-placeholder {
  color: #353535;
}
.cid-tY7oZMy5mP .jq-number__spin:hover,
.cid-tY7oZMy5mP .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tY7oZMy5mP .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tY7oZMy5mP .jq-selectbox li,
.cid-tY7oZMy5mP .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tY7oZMy5mP .jq-selectbox li:hover,
.cid-tY7oZMy5mP .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-tY7oZMy5mP .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tY7oZMy5mP .jq-number__spin.minus:hover:after,
.cid-tY7oZMy5mP .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tY7oZMy5mP .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tY7oZMy5mP .jq-number__spin.minus:after,
.cid-tY7oZMy5mP .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-tY7oZMy5mP .mbr-section-text {
  color: #ffffff;
}
.cid-tY7oZMy5mP .mbr-section-title {
  color: #ffffff;
}
.cid-tYjYfbpKHa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #13283b;
}
.cid-tYjYfbpKHa .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjYfbpKHa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjYfbpKHa .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjYfbpKHa .row {
    text-align: center;
  }
}
.cid-tYjYfbpKHa li {
  padding-bottom: 5px;
}
.cid-tYjYfbpKHa .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjYfbpKHa .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjYfbpKHa div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjYfbpKHa .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjYfbpKHa .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjYfbpKHa .soc-link,
.cid-tYjYfbpKHa .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tYjKQIFAJD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-tYjKQIFAJD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYjKQIFAJD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYjKQIFAJD .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tYjKQIFAJD .row {
    padding: 0 11px;
  }
}
.cid-tYjKQIFAJD .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .cid-tYjKQIFAJD .title {
    padding: 0 5px;
  }
}
.cid-tYjKQIFAJD .title .title-wrapper {
  display: flex;
}
.cid-tYjKQIFAJD .title .title-wrapper .mbr-iconfont {
  display: inline-block;
  font-size: 35px;
  color: #13283b;
  margin-right: 8px;
}
.cid-tYjKQIFAJD .title .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  line-height: 35px;
}
.cid-tYjKQIFAJD .item {
  margin-bottom: 60px;
  position: relative;
}
@media (min-width: 768px) {
  .cid-tYjKQIFAJD .item {
    padding: 0 5px;
  }
}
.cid-tYjKQIFAJD .item:hover .item-wrapper .item-content .mbr-section-btn .btn,
.cid-tYjKQIFAJD .item:focus .item-wrapper .item-content .mbr-section-btn .btn {
  opacity: 1;
  transform: translateY(0);
}
.cid-tYjKQIFAJD .item .item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-tYjKQIFAJD .item .item-wrapper {
  position: relative;
}
.cid-tYjKQIFAJD .item .item-wrapper .item-img {
  margin-bottom: 10px;
}
.cid-tYjKQIFAJD .item .item-wrapper .item-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.cid-tYjKQIFAJD .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
  line-height: 1.45em;
}
.cid-tYjKQIFAJD .item .item-wrapper .item-content .mbr-price {
  margin-bottom: 0;
}
.cid-tYjKQIFAJD .item .item-wrapper .item-content .mbr-section-btn .btn {
  transform: translateY(14px);
  opacity: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tYjKQIFAJD .item .item-wrapper .item-content .mbr-section-btn .btn {
    transform: none;
    opacity: 1;
  }
}
.cid-tYjKQIFAJD .mbr-section-title {
  color: #13283b;
}
.cid-tYjKQIFAJD .mbr-text {
  color: #747474;
}
.cid-tYjKQIFAJD .mbr-price {
  color: #13283b;
}
.cid-tY8eZ3v0WO {
  padding-top: 75px;
  padding-bottom: 60px;
  position: relative;
  background-image: url("../../../assets/images/ecotouch-ai1-compact-galerie2-83-520x375.webp");
}
.cid-tY8eZ3v0WO .mbr-section-title {
  color: #06182d;
}
.cid-tY8eZ3v0WO .mbr-section-subtitle {
  color: #06182d;
}
.cid-tY8eZ3v0WO .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tY8eZ3v0WO .mbr-text {
  color: #182a46;
  font-weight: 300;
}
.cid-tY8eZ3v0WO .title-text {
  margin-bottom: 70px;
}
.cid-tY8eZ3v0WO .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-tY8eZ3v0WO .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-tY8eZ3v0WO .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tY8eZ3v0WO .title-text .mbr-section-title {
  color: #6ec7f2;
}
.cid-tY8eZ3v0WO .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-tY8eZ3v0WO .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-tY8eZ3v0WO .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tY8eZ3v0WO .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #13283b;
}
.cid-tY8eZ3v0WO .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-tY8eZ3v0WO .p-4 {
  padding: 1rem 0 !important;
}
.cid-tY8eZ3v0WO .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-tY8eZ3v0WO .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tY8eZ3v0WO .mbri-arrow-up:before {
  content: "\e960";
}
.cid-tY8eZ3v0WO .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tY8eZ3v0WO .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-tY8eZ3v0WO .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-tY8eZ3v0WO .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-tY8eZ3v0WO .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-tY8eZ3v0WO .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-tY8eZ3v0WO .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #13283b;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-tY8eZ3v0WO .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-tY8eZ3v0WO .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tY8eZ3v0WO .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-tY8eZ3v0WO .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-tY8eZ3v0WO .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-tY8eZ3v0WO .card .card-header a.panel-title .toggle-icon:before,
.cid-tY8eZ3v0WO .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-tY8eZ3v0WO .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-tY8eZ3v0WO .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-tY8eZ3v0WO .card .panel-body {
  padding: 14px 20px;
}
.cid-tY8eZ3v0WO .card .panel-body p {
  color: #182a46;
  line-height: 1.5;
}
.cid-tY8eZ3v0WO .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-tY8eZ3v0WO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY8eZ3v0WO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY8eZ3v0WO .title-text .mbr-section-title {
  color: #f4f4f4;
}
.cid-tY8eZ3v0WO .title-text .mbr-section-subtitle {
  color: #122e48;
}
.cid-tY8wb7V8aW {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/banner-sportraum-2000x502.webp");
}
.cid-tY8wb7V8aW .mbr-overlay {
  background-color: #13283b;
  opacity: 0.7;
}
.cid-tY8wb7V8aW input,
.cid-tY8wb7V8aW textarea {
  border-radius: 0;
}
.cid-tY8wb7V8aW input:hover,
.cid-tY8wb7V8aW textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tY8wb7V8aW textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tY8wb7V8aW .col-auto {
    margin: auto;
  }
}
.cid-tY8wb7V8aW .mbr-main-subtitle {
  background: #ffffff;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tY8wb7V8aW .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #ffffff;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tY8wb7V8aW .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tY8wb7V8aW .btn {
  padding: 1rem 3rem;
}
.cid-tY8wb7V8aW .form-control,
.cid-tY8wb7V8aW .field-input {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tY8wb7V8aW .form-control::-webkit-input-placeholder,
.cid-tY8wb7V8aW .field-input::-webkit-input-placeholder,
.cid-tY8wb7V8aW .form-control::-webkit-input-placeholder,
.cid-tY8wb7V8aW .field-input::-webkit-input-placeholder {
  color: #0f2d48;
}
.cid-tY8wb7V8aW .form-control:-moz-placeholder,
.cid-tY8wb7V8aW .field-input:-moz-placeholder,
.cid-tY8wb7V8aW .form-control:-moz-placeholder,
.cid-tY8wb7V8aW .field-input:-moz-placeholder {
  color: #0f2d48;
}
.cid-tY8wb7V8aW .form-control:hover,
.cid-tY8wb7V8aW .field-input:hover,
.cid-tY8wb7V8aW .form-control:focus,
.cid-tY8wb7V8aW .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #101112;
  box-shadow: none;
  outline: none;
}
.cid-tY8wb7V8aW .form-control:hover::-webkit-input-placeholder,
.cid-tY8wb7V8aW .field-input:hover::-webkit-input-placeholder,
.cid-tY8wb7V8aW .form-control:focus::-webkit-input-placeholder,
.cid-tY8wb7V8aW .field-input:focus::-webkit-input-placeholder,
.cid-tY8wb7V8aW .form-control:hover::-webkit-input-placeholder,
.cid-tY8wb7V8aW .field-input:hover::-webkit-input-placeholder,
.cid-tY8wb7V8aW .form-control:focus::-webkit-input-placeholder,
.cid-tY8wb7V8aW .field-input:focus::-webkit-input-placeholder {
  color: #353535;
}
.cid-tY8wb7V8aW .form-control:hover:-moz-placeholder,
.cid-tY8wb7V8aW .field-input:hover:-moz-placeholder,
.cid-tY8wb7V8aW .form-control:focus:-moz-placeholder,
.cid-tY8wb7V8aW .field-input:focus:-moz-placeholder,
.cid-tY8wb7V8aW .form-control:hover:-moz-placeholder,
.cid-tY8wb7V8aW .field-input:hover:-moz-placeholder,
.cid-tY8wb7V8aW .form-control:focus:-moz-placeholder,
.cid-tY8wb7V8aW .field-input:focus:-moz-placeholder {
  color: #353535;
}
.cid-tY8wb7V8aW .jq-number__spin:hover,
.cid-tY8wb7V8aW .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tY8wb7V8aW .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tY8wb7V8aW .jq-selectbox li,
.cid-tY8wb7V8aW .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tY8wb7V8aW .jq-selectbox li:hover,
.cid-tY8wb7V8aW .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-tY8wb7V8aW .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tY8wb7V8aW .jq-number__spin.minus:hover:after,
.cid-tY8wb7V8aW .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tY8wb7V8aW .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tY8wb7V8aW .jq-number__spin.minus:after,
.cid-tY8wb7V8aW .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-tY8wb7V8aW .mbr-section-text {
  color: #ffffff;
}
.cid-tY8wb7V8aW .mbr-section-title {
  color: #ffffff;
}
.cid-tYjYjBrdlR {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #13283b;
}
.cid-tYjYjBrdlR .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjYjBrdlR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjYjBrdlR .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjYjBrdlR .row {
    text-align: center;
  }
}
.cid-tYjYjBrdlR li {
  padding-bottom: 5px;
}
.cid-tYjYjBrdlR .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjYjBrdlR .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjYjBrdlR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjYjBrdlR .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjYjBrdlR .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjYjBrdlR .soc-link,
.cid-tYjYjBrdlR .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tYoLRhHnWz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-tYoLRhHnWz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYoLRhHnWz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tYoLRhHnWz .container {
    padding: 0 30px;
  }
}
.cid-tYoLRhHnWz .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-tYoLRhHnWz .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-tYoLRhHnWz .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tYoLRhHnWz .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tYoLRhHnWz .mbr-section-title {
  color: #ffffff;
}
.cid-tYoLRhHnWz .mbr-text {
  color: #ffffff;
}
.cid-tPy64ikE17 {
  padding-top: 90px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-tPy64ikE17 .mbr-section-title {
  color: #06182d;
}
.cid-tPy64ikE17 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #13283b;
  background: linear-gradient(#13283b 0%, #275398 69%, #9fdbf8 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tPy64ikE17 .mbr-section-subtitle {
  color: #06182d;
}
.cid-tPy64ikE17 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tPy64ikE17 .mbr-text {
  color: #182a46;
  font-weight: 300;
}
.cid-tPy64ikE17 .title-text {
  margin-bottom: 70px;
}
.cid-tPy64ikE17 .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-tPy64ikE17 .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-tPy64ikE17 .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tPy64ikE17 .title-text .mbr-section-title {
  color: #6ec7f2;
}
.cid-tPy64ikE17 .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-tPy64ikE17 .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-tPy64ikE17 .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tPy64ikE17 .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #13283b;
}
.cid-tPy64ikE17 .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-tPy64ikE17 .p-4 {
  padding: 1rem 0 !important;
}
.cid-tPy64ikE17 .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-tPy64ikE17 .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tPy64ikE17 .mbri-arrow-up:before {
  content: "\e960";
}
.cid-tPy64ikE17 .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tPy64ikE17 .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-tPy64ikE17 .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-tPy64ikE17 .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-tPy64ikE17 .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-tPy64ikE17 .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-tPy64ikE17 .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #13283b;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-tPy64ikE17 .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-tPy64ikE17 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tPy64ikE17 .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-tPy64ikE17 .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-tPy64ikE17 .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-tPy64ikE17 .card .card-header a.panel-title .toggle-icon:before,
.cid-tPy64ikE17 .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-tPy64ikE17 .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-tPy64ikE17 .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-tPy64ikE17 .card .panel-body {
  padding: 14px 20px;
}
.cid-tPy64ikE17 .card .panel-body p {
  color: #182a46;
  line-height: 1.5;
}
.cid-tPy64ikE17 .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-tPy64ikE17 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPy64ikE17 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPy64ikE17 .title-text .mbr-section-subtitle {
  text-align: center;
}
.cid-tP5uKHGbgU {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/team5.webp");
}
.cid-tP5uKHGbgU .mbr-overlay {
  background-color: #13283b;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .cid-tP5uKHGbgU {
    background-position: right;
  }
}
.cid-tP5uKHGbgU input,
.cid-tP5uKHGbgU textarea {
  border-radius: 0;
}
.cid-tP5uKHGbgU input:hover,
.cid-tP5uKHGbgU textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tP5uKHGbgU .row {
  justify-content: flex-end;
}
.cid-tP5uKHGbgU textarea {
  min-height: 200px;
}
.cid-tP5uKHGbgU .col-auto {
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tP5uKHGbgU .col-auto {
    margin: auto;
  }
}
.cid-tP5uKHGbgU .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cid-tP5uKHGbgU .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-tP5uKHGbgU .mbr-main-subtitle {
  background: #ffffff;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tP5uKHGbgU .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #ffffff;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tP5uKHGbgU .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tP5uKHGbgU .btn {
  padding: 1rem 3rem;
}
.cid-tP5uKHGbgU .form-control,
.cid-tP5uKHGbgU .field-input {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #13283b;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tP5uKHGbgU .form-control::-webkit-input-placeholder,
.cid-tP5uKHGbgU .field-input::-webkit-input-placeholder,
.cid-tP5uKHGbgU .form-control::-webkit-input-placeholder,
.cid-tP5uKHGbgU .field-input::-webkit-input-placeholder {
  color: #13283b;
}
.cid-tP5uKHGbgU .form-control:-moz-placeholder,
.cid-tP5uKHGbgU .field-input:-moz-placeholder,
.cid-tP5uKHGbgU .form-control:-moz-placeholder,
.cid-tP5uKHGbgU .field-input:-moz-placeholder {
  color: #13283b;
}
.cid-tP5uKHGbgU .form-control:hover,
.cid-tP5uKHGbgU .field-input:hover,
.cid-tP5uKHGbgU .form-control:focus,
.cid-tP5uKHGbgU .field-input:focus {
  background-color: #fafafa;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tP5uKHGbgU .form-control:hover::-webkit-input-placeholder,
.cid-tP5uKHGbgU .field-input:hover::-webkit-input-placeholder,
.cid-tP5uKHGbgU .form-control:focus::-webkit-input-placeholder,
.cid-tP5uKHGbgU .field-input:focus::-webkit-input-placeholder,
.cid-tP5uKHGbgU .form-control:hover::-webkit-input-placeholder,
.cid-tP5uKHGbgU .field-input:hover::-webkit-input-placeholder,
.cid-tP5uKHGbgU .form-control:focus::-webkit-input-placeholder,
.cid-tP5uKHGbgU .field-input:focus::-webkit-input-placeholder {
  color: #275398;
}
.cid-tP5uKHGbgU .form-control:hover:-moz-placeholder,
.cid-tP5uKHGbgU .field-input:hover:-moz-placeholder,
.cid-tP5uKHGbgU .form-control:focus:-moz-placeholder,
.cid-tP5uKHGbgU .field-input:focus:-moz-placeholder,
.cid-tP5uKHGbgU .form-control:hover:-moz-placeholder,
.cid-tP5uKHGbgU .field-input:hover:-moz-placeholder,
.cid-tP5uKHGbgU .form-control:focus:-moz-placeholder,
.cid-tP5uKHGbgU .field-input:focus:-moz-placeholder {
  color: #275398;
}
.cid-tP5uKHGbgU .jq-number__spin:hover,
.cid-tP5uKHGbgU .jq-number__spin:focus {
  background-color: #fafafa;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tP5uKHGbgU .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #13283b;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tP5uKHGbgU .jq-selectbox li,
.cid-tP5uKHGbgU .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tP5uKHGbgU .jq-selectbox li:hover,
.cid-tP5uKHGbgU .jq-selectbox li.selected {
  background-color: #fafafa;
  color: #000000;
}
.cid-tP5uKHGbgU .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tP5uKHGbgU .jq-number__spin.minus:hover:after,
.cid-tP5uKHGbgU .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tP5uKHGbgU .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tP5uKHGbgU .jq-number__spin.minus:after,
.cid-tP5uKHGbgU .jq-number__spin.plus:after {
  border-top-color: #fafafa;
  border-bottom-color: #fafafa;
}
.cid-tP5uKHGbgU .mbr-section-text {
  color: #fafafa;
}
.cid-tP5uKHGbgU .mbr-section-title {
  color: #ffb006;
}
.cid-tP5uKHGbgU .soc-link,
.cid-tP5uKHGbgU .soc-wrapper {
  color: #000000;
}
.cid-tYjY92RI1t {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-tYjY92RI1t .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjY92RI1t .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjY92RI1t .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjY92RI1t .row {
    text-align: center;
  }
}
.cid-tYjY92RI1t li {
  padding-bottom: 5px;
}
.cid-tYjY92RI1t .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjY92RI1t .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjY92RI1t div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjY92RI1t .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjY92RI1t .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjY92RI1t .soc-link,
.cid-tYjY92RI1t .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tPDpN4tDpn {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tPDpN4tDpn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPDpN4tDpn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPDpN4tDpn .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tPDpN4tDpn .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tPDpN4tDpn .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tPDpN4tDpn .card-title {
  color: #878e99;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tPDpN4tDpn .card-title {
    margin-bottom: 20px;
  }
}
.cid-tPDpN4tDpn .card-subtitle {
  color: #f4f4f4;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tPDpN4tDpn .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tPDpN4tDpn .card-text {
  color: #f4f4f4;
  margin-bottom: 0;
}
.cid-tPDpN4tDpn .card-subtitle DIV {
  text-align: center;
}
.cid-tYjZnwGPEu {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-tYjZnwGPEu .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjZnwGPEu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjZnwGPEu .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjZnwGPEu .row {
    text-align: center;
  }
}
.cid-tYjZnwGPEu li {
  padding-bottom: 5px;
}
.cid-tYjZnwGPEu .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjZnwGPEu .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjZnwGPEu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjZnwGPEu .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjZnwGPEu .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjZnwGPEu .soc-link,
.cid-tYjZnwGPEu .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tP5triezeg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/basic-line-ai1-air-.webp");
}
.cid-tP5triezeg .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tP5triezeg .col-text {
    min-height: 575px;
  }
}
@media (max-width: 991px) {
  .cid-tP5triezeg .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tP5triezeg .col-form {
    padding: 30px;
  }
}
.cid-tP5triezeg .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tP5triezeg .text-wrapper {
    text-align: center !important;
  }
}
.cid-tP5triezeg .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #f4f4f4;
}
@media (max-width: 767px) {
  .cid-tP5triezeg .label-text {
    text-align: center !important;
  }
}
.cid-tP5triezeg .mbr-section-title {
  color: #222222;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tP5triezeg .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tP5triezeg .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tP5triezeg .mbr-section-btn .btn {
  width: max-content;
}
.cid-tP5triezeg .mbr-section-btn .btn-black {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tP5triezeg .mbr-section-btn {
    text-align: center !important;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tP5triezeg .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tP5triezeg .form-container {
    text-align: center !important;
  }
}
.cid-tP5triezeg .form-wrap {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tP5triezeg .form-wrap {
    flex-wrap: wrap;
  }
}
.cid-tP5triezeg .form-group {
  margin-bottom: 32px !important;
}
.cid-tP5triezeg .form-control {
  font-size: 1rem;
  border-radius: 0 !important;
}
.cid-tP5triezeg textarea {
  min-height: 114px;
}
.cid-tP5triezeg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP5triezeg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP5triezeg .mbr-section-title,
.cid-tP5triezeg .mbr-section-btn {
  color: #47b5ed;
}
.cid-tYjY1OWOrP {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-tYjY1OWOrP .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjY1OWOrP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjY1OWOrP .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjY1OWOrP .row {
    text-align: center;
  }
}
.cid-tYjY1OWOrP li {
  padding-bottom: 5px;
}
.cid-tYjY1OWOrP .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjY1OWOrP .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjY1OWOrP div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjY1OWOrP .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjY1OWOrP .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjY1OWOrP .soc-link,
.cid-tYjY1OWOrP .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tY833BemwK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1276.webp");
}
.cid-tY833BemwK .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tY833BemwK .col-text {
    min-height: 575px;
  }
}
@media (max-width: 991px) {
  .cid-tY833BemwK .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tY833BemwK .col-form {
    padding: 30px;
  }
}
.cid-tY833BemwK .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tY833BemwK .text-wrapper {
    text-align: center !important;
  }
}
.cid-tY833BemwK .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #f4f4f4;
}
@media (max-width: 767px) {
  .cid-tY833BemwK .label-text {
    text-align: center !important;
  }
}
.cid-tY833BemwK .mbr-section-title {
  color: #222222;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tY833BemwK .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tY833BemwK .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tY833BemwK .mbr-section-btn .btn {
  width: max-content;
}
.cid-tY833BemwK .mbr-section-btn .btn-black {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tY833BemwK .mbr-section-btn {
    text-align: center !important;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tY833BemwK .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tY833BemwK .form-container {
    text-align: center !important;
  }
}
.cid-tY833BemwK .form-wrap {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tY833BemwK .form-wrap {
    flex-wrap: wrap;
  }
}
.cid-tY833BemwK .form-group {
  margin-bottom: 32px !important;
}
.cid-tY833BemwK .form-control {
  font-size: 1rem;
  border-radius: 0 !important;
}
.cid-tY833BemwK textarea {
  min-height: 114px;
}
.cid-tY833BemwK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY833BemwK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY833BemwK .mbr-section-title,
.cid-tY833BemwK .mbr-section-btn {
  color: #13283b;
}
.cid-tY833BemwK LABEL {
  color: #f4f4f4;
}
.cid-tYjY3YUsg2 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-tYjY3YUsg2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjY3YUsg2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjY3YUsg2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjY3YUsg2 .row {
    text-align: center;
  }
}
.cid-tYjY3YUsg2 li {
  padding-bottom: 5px;
}
.cid-tYjY3YUsg2 .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjY3YUsg2 .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjY3YUsg2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjY3YUsg2 .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjY3YUsg2 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjY3YUsg2 .soc-link,
.cid-tYjY3YUsg2 .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tY7oCPwwhM {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background3.webp");
}
.cid-tY7oCPwwhM .mbr-overlay {
  background-color: #1f1f1f;
  opacity: 0.7;
}
.cid-tY7oCPwwhM input,
.cid-tY7oCPwwhM textarea {
  border-radius: 0;
}
.cid-tY7oCPwwhM input:hover,
.cid-tY7oCPwwhM textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tY7oCPwwhM textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tY7oCPwwhM .col-auto {
    margin: auto;
  }
}
.cid-tY7oCPwwhM .mbr-main-subtitle {
  background: #ffffff;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tY7oCPwwhM .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #ffffff;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tY7oCPwwhM .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tY7oCPwwhM .btn {
  padding: 1rem 3rem;
}
.cid-tY7oCPwwhM .form-control,
.cid-tY7oCPwwhM .field-input {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tY7oCPwwhM .form-control::-webkit-input-placeholder,
.cid-tY7oCPwwhM .field-input::-webkit-input-placeholder,
.cid-tY7oCPwwhM .form-control::-webkit-input-placeholder,
.cid-tY7oCPwwhM .field-input::-webkit-input-placeholder {
  color: #0f2d48;
}
.cid-tY7oCPwwhM .form-control:-moz-placeholder,
.cid-tY7oCPwwhM .field-input:-moz-placeholder,
.cid-tY7oCPwwhM .form-control:-moz-placeholder,
.cid-tY7oCPwwhM .field-input:-moz-placeholder {
  color: #0f2d48;
}
.cid-tY7oCPwwhM .form-control:hover,
.cid-tY7oCPwwhM .field-input:hover,
.cid-tY7oCPwwhM .form-control:focus,
.cid-tY7oCPwwhM .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #101112;
  box-shadow: none;
  outline: none;
}
.cid-tY7oCPwwhM .form-control:hover::-webkit-input-placeholder,
.cid-tY7oCPwwhM .field-input:hover::-webkit-input-placeholder,
.cid-tY7oCPwwhM .form-control:focus::-webkit-input-placeholder,
.cid-tY7oCPwwhM .field-input:focus::-webkit-input-placeholder,
.cid-tY7oCPwwhM .form-control:hover::-webkit-input-placeholder,
.cid-tY7oCPwwhM .field-input:hover::-webkit-input-placeholder,
.cid-tY7oCPwwhM .form-control:focus::-webkit-input-placeholder,
.cid-tY7oCPwwhM .field-input:focus::-webkit-input-placeholder {
  color: #353535;
}
.cid-tY7oCPwwhM .form-control:hover:-moz-placeholder,
.cid-tY7oCPwwhM .field-input:hover:-moz-placeholder,
.cid-tY7oCPwwhM .form-control:focus:-moz-placeholder,
.cid-tY7oCPwwhM .field-input:focus:-moz-placeholder,
.cid-tY7oCPwwhM .form-control:hover:-moz-placeholder,
.cid-tY7oCPwwhM .field-input:hover:-moz-placeholder,
.cid-tY7oCPwwhM .form-control:focus:-moz-placeholder,
.cid-tY7oCPwwhM .field-input:focus:-moz-placeholder {
  color: #353535;
}
.cid-tY7oCPwwhM .jq-number__spin:hover,
.cid-tY7oCPwwhM .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tY7oCPwwhM .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tY7oCPwwhM .jq-selectbox li,
.cid-tY7oCPwwhM .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tY7oCPwwhM .jq-selectbox li:hover,
.cid-tY7oCPwwhM .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-tY7oCPwwhM .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tY7oCPwwhM .jq-number__spin.minus:hover:after,
.cid-tY7oCPwwhM .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tY7oCPwwhM .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tY7oCPwwhM .jq-number__spin.minus:after,
.cid-tY7oCPwwhM .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-tY7oCPwwhM .mbr-section-text {
  color: #ffffff;
}
.cid-tY7oCPwwhM .mbr-section-title {
  color: #ffffff;
}
.cid-tYjY6ExumZ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-tYjY6ExumZ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjY6ExumZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjY6ExumZ .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjY6ExumZ .row {
    text-align: center;
  }
}
.cid-tYjY6ExumZ li {
  padding-bottom: 5px;
}
.cid-tYjY6ExumZ .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjY6ExumZ .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjY6ExumZ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjY6ExumZ .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjY6ExumZ .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjY6ExumZ .soc-link,
.cid-tYjY6ExumZ .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tN0mm3adPp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tPDnqa644s {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tPDnqa644s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPDnqa644s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPDnqa644s .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tPDnqa644s .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tPDnqa644s .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tPDnqa644s .card-title {
  color: #878e99;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tPDnqa644s .card-title {
    margin-bottom: 20px;
  }
}
.cid-tPDnqa644s .card-subtitle {
  color: #f4f4f4;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tPDnqa644s .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tPDnqa644s .card-text {
  color: #f4f4f4;
  margin-bottom: 0;
}
.cid-t3rSoWeagQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-t3rSoWeagQ .google-map {
  height: 35rem;
  position: relative;
}
.cid-t3rSoWeagQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t3rSoWeagQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t3rSoWeagQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t3rSoWeagQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tYjZdzkruQ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-tYjZdzkruQ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjZdzkruQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjZdzkruQ .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjZdzkruQ .row {
    text-align: center;
  }
}
.cid-tYjZdzkruQ li {
  padding-bottom: 5px;
}
.cid-tYjZdzkruQ .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjZdzkruQ .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjZdzkruQ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjZdzkruQ .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjZdzkruQ .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjZdzkruQ .soc-link,
.cid-tYjZdzkruQ .soc-wrapper {
  color: #ffffff;
}
.cid-tNePYL5LjR {
  z-index: 1000;
  width: 100%;
}
.cid-tNePYL5LjR .navbar-dropdown {
  background-color: #13283b !important;
  padding: 0;
  position: fixed;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #13283b !important;
  background: #13283b;
}
.cid-tNePYL5LjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNePYL5LjR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tNePYL5LjR .menu_box .navbar.opened,
  .cid-tNePYL5LjR .menu_box .navbar-collapse {
    background-color: #13283b !important;
    transition: all 0s ease 0s;
  }
}
.cid-tNePYL5LjR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tNePYL5LjR .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tNePYL5LjR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tNePYL5LjR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #13283b;
  }
  .cid-tNePYL5LjR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tNePYL5LjR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tNePYL5LjR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tNePYL5LjR .offcanvas-body .mbr-text,
  .cid-tNePYL5LjR .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tNePYL5LjR .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #0076af;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tNePYL5LjR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tNePYL5LjR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tNePYL5LjR 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-tNePYL5LjR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tNePYL5LjR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .nav-item {
    margin: 0 !important;
  }
}
.cid-tNePYL5LjR .nav-item .nav-link {
  position: relative;
}
.cid-tNePYL5LjR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover,
.cid-tNePYL5LjR .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-tNePYL5LjR .nav-item .nav-link:hover::before,
.cid-tNePYL5LjR .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tNePYL5LjR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tNePYL5LjR .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-tNePYL5LjR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tNePYL5LjR .offcanvas_box {
    display: none;
  }
}
.cid-tNePYL5LjR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tNePYL5LjR .container {
  display: flex;
  margin: auto;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tNePYL5LjR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tNePYL5LjR .navbar-caption {
  color: #ffffff;
}
.cid-tNePYL5LjR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .navbar-nav {
    margin: 0;
  }
}
.cid-tNePYL5LjR .dropdown-menu,
.cid-tNePYL5LjR .navbar.opened {
  background-color: false !important;
}
.cid-tNePYL5LjR .nav-item:focus,
.cid-tNePYL5LjR .nav-link:focus {
  outline: none;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNePYL5LjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNePYL5LjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNePYL5LjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNePYL5LjR .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tNePYL5LjR .navbar.opened {
  transition: all 0.3s;
}
.cid-tNePYL5LjR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tNePYL5LjR .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tNePYL5LjR .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tNePYL5LjR .navbar.collapsed {
  justify-content: center;
}
.cid-tNePYL5LjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNePYL5LjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNePYL5LjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNePYL5LjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tNePYL5LjR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNePYL5LjR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tNePYL5LjR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tNePYL5LjR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNePYL5LjR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tNePYL5LjR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tNePYL5LjR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tNePYL5LjR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tNePYL5LjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tNePYL5LjR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNePYL5LjR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tNePYL5LjR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNePYL5LjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tNePYL5LjR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNePYL5LjR .dropdown-item.active,
.cid-tNePYL5LjR .dropdown-item:active {
  background-color: transparent;
}
.cid-tNePYL5LjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNePYL5LjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNePYL5LjR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNePYL5LjR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tNePYL5LjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNePYL5LjR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #13283b;
  background: #ffffff;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #0076af;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNePYL5LjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNePYL5LjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNePYL5LjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tNePYL5LjR .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-tNePYL5LjR .navbar {
    height: 70px;
  }
  .cid-tNePYL5LjR .navbar.opened {
    height: auto;
  }
  .cid-tNePYL5LjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePYL5LjR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tNePYL5LjR .container-fluid {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cid-tNePYL5LjR .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tNePYL5LjR .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tNePYL5LjR .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tNePYL5LjR .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tNePYL5LjR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tNePYL5LjR .text_widget {
  margin-bottom: 32px;
}
.cid-tNePYL5LjR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tNePYL5LjR .text_widget a:hover {
  color: #ffffff !important;
}
.cid-tNePYL5LjR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tNePYL5LjR .mbr-section-subtitle,
.cid-tNePYL5LjR .text_widget,
.cid-tNePYL5LjR .mbr-section-btn {
  text-align: center;
}
.cid-tNePYL5LjR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tNePYL5LjR P {
  color: #ffffff;
  text-align: center;
}
.cid-tY7o8Cujoc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-tY7o8Cujoc .wrapper {
    padding: 0 28px;
  }
}
@media (min-width: 992px) {
  .cid-tY7o8Cujoc .form {
    padding: 0 85px 0 48px;
  }
}
.cid-tY7o8Cujoc form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tY7o8Cujoc form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tY7o8Cujoc form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tY7o8Cujoc .form-control,
.cid-tY7o8Cujoc .field-input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid rgba(61, 61, 61, 0.3) !important;
  padding: 8px 0;
  color: #282828;
  margin: 0;
  font-weight: 300;
}
.cid-tY7o8Cujoc .form-control:hover {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid rgba(61, 61, 61, 0.3) !important;
}
.cid-tY7o8Cujoc .form-control:focus {
  box-shadow: none;
  outline: none;
  background-color: inherit;
  border-bottom: 1px solid #282828 !important;
}
.cid-tY7o8Cujoc .form-check-input:checked {
  background-color: #ffffff;
  border-bottom: 1px solid #282828 !important;
}
.cid-tY7o8Cujoc .form-control::placeholder {
  color: #282828;
  font-size: 16px;
  margin: 0;
  font-weight: 300;
}
.cid-tY7o8Cujoc .form-group {
  margin-bottom: 35px;
}
.cid-tY7o8Cujoc .form-control,
.cid-tY7o8Cujoc form .btn {
  min-height: auto;
}
.cid-tY7o8Cujoc .link-title:after {
  content: "\2192";
  font-size: 16px;
  margin-left: 10px;
  font-weight: 700;
  padding: .7rem;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.cid-tY7o8Cujoc .link-title:hover:after {
  background: #FFFF27;
}
.cid-tY7o8Cujoc .mbr-text {
  margin-bottom: 84px;
}
.cid-tYjZyAUvhk {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-tYjZyAUvhk .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tYjZyAUvhk .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjZyAUvhk .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tYjZyAUvhk .row {
    text-align: center;
  }
}
.cid-tYjZyAUvhk li {
  padding-bottom: 5px;
}
.cid-tYjZyAUvhk .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-tYjZyAUvhk .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYjZyAUvhk div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYjZyAUvhk .mbr-iconfont {
  padding-right: 6px;
}
.cid-tYjZyAUvhk .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tYjZyAUvhk .soc-link,
.cid-tYjZyAUvhk .soc-wrapper {
  color: #ffffff;
}
