.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.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: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
  .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.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0a2642 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #82cbf1 !important;
}
.bg-warning {
  background-color: #2d4073 !important;
}
.bg-danger {
  background-color: #353535 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0a2642 !important;
  border-color: #0a2642 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #82cbf1 !important;
  border-color: #82cbf1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #34abe8 !important;
  border-color: #34abe8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #34abe8 !important;
  border-color: #34abe8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #2d4073 !important;
  border-color: #2d4073 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #151d35 !important;
  border-color: #151d35 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #151d35 !important;
  border-color: #151d35 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #353535 !important;
  border-color: #353535 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #0a2642;
  color: #0a2642;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0a2642 !important;
  border-color: #0a2642 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #82cbf1;
  color: #82cbf1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #34abe8 !important;
  background-color: transparent!important;
  border-color: #34abe8 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82cbf1 !important;
  border-color: #82cbf1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #2d4073;
  color: #2d4073;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #151d35 !important;
  background-color: transparent!important;
  border-color: #151d35 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #2d4073 !important;
  border-color: #2d4073 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #353535;
  color: #353535;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0a0a0a !important;
  background-color: transparent!important;
  border-color: #0a0a0a !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.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: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.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: #0a2642 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #82cbf1 !important;
}
.text-warning {
  color: #2d4073 !important;
}
.text-danger {
  color: #353535 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #26a5e7 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #10172a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #020202 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0a2642;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82cbf1;
}
.alert-warning {
  background-color: #2d4073;
}
.alert-danger {
  background-color: #353535;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0a2642;
  border-color: #0a2642;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0a2642;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4492f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #5f79c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #a8a8a8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #0a2642 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #0a2642;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0a2642;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0a2642;
}
.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: #0a2642;
  border-bottom-color: #0a2642;
}
.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: #ffffff !important;
  background-color: #0a2642 !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: #ff6666 !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='%230a2642' %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-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #0a2642 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fcfcfc !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fcfcfc;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFCw1qGFAI .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
  margin-top: 0px!important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 1.9rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfcfc;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFCw1qGFAI .navbar-logo img {
  height: 2rem !important;
}
.cid-ttMjWYaWR7 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ffffff;
}
.cid-ttMjWYaWR7 .carousel {
  width: 100%;
}
.cid-ttMjWYaWR7 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-ttMjWYaWR7 .carousel-item img {
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-ttMjWYaWR7 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
  padding-left: 120px;
  padding-right: 120px;
  justify-content: center;
}
.cid-ttMjWYaWR7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ttMjWYaWR7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ttMjWYaWR7 .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-ttMjWYaWR7 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ttMjWYaWR7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ttMjWYaWR7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ttMjWYaWR7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ttMjWYaWR7 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-ttMjWYaWR7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttMjWYaWR7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttMjWYaWR7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttMjWYaWR7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-ttMjWYaWR7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #e5e5e5;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-ttMjWYaWR7 .carousel-indicators li.active {
  background-color: #0a2642;
}
.cid-ttMjWYaWR7 .carousel-indicators li.active,
.cid-ttMjWYaWR7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttMjWYaWR7 .carousel-indicators li::after,
.cid-ttMjWYaWR7 .carousel-indicators li::before {
  content: none;
}
.cid-ttMjWYaWR7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttMjWYaWR7 .carousel-indicators {
    display: none !important;
  }
}
.cid-ttMjWYaWR7 .btn {
  margin: 15px;
}
.cid-ttMjWYaWR7 .btn.btn-primary-outline {
  border: 1px solid #0a2642;
}
.cid-ttMjWYaWR7 .btn.btn-primary-outline:hover {
  background-color: #0a2642 !important;
  color: #ffffff !important;
}
.cid-ttMjWYaWR7 .btn.btn-secondary-outline {
  border: 1px solid #ff6666;
}
.cid-ttMjWYaWR7 .btn.btn-secondary-outline:hover {
  background-color: #ff6666 !important;
  color: #ffffff !important;
}
.cid-ttMjWYaWR7 .btn.btn-success-outline {
  border: 1px solid #40b0bf;
}
.cid-ttMjWYaWR7 .btn.btn-success-outline:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-ttMjWYaWR7 .btn.btn-info-outline {
  border: 1px solid #82cbf1;
}
.cid-ttMjWYaWR7 .btn.btn-info-outline:hover {
  background-color: #82cbf1 !important;
  color: #ffffff !important;
}
.cid-ttMjWYaWR7 .btn.btn-warning-outline {
  border: 1px solid #2d4073;
}
.cid-ttMjWYaWR7 .btn.btn-warning-outline:hover {
  background-color: #2d4073 !important;
  color: #ffffff !important;
}
.cid-ttMjWYaWR7 .btn.btn-danger-outline {
  border: 1px solid #353535;
}
.cid-ttMjWYaWR7 .btn.btn-danger-outline:hover {
  background-color: #353535 !important;
  color: #ffffff !important;
}
.cid-ttMjWYaWR7 .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-ttMjWYaWR7 .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-ttMjWYaWR7 .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-ttMjWYaWR7 .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-ttMjWYaWR7 .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-ttMjWYaWR7 .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-ttMjWYaWR7 .carousel-control {
    display: none;
  }
  .cid-ttMjWYaWR7 .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .cid-ttMjWYaWR7 .buttons-wrap .mbr-section-btn {
    text-align: center;
    margin-bottom: 10px;
  }
}
.cid-ttMsXjVPge {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ttMsXjVPge .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #0a2642;
}
.cid-ttMsXjVPge img {
  width: 100%;
}
.cid-ttMsXjVPge p {
  margin-top: 6rem;
}
.cid-ttMsXjVPge .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-ttMsXjVPge .content-wrapper {
  padding-top: 6rem;
}
.cid-ttMsXjVPge h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-ttMsXjVPge .content-wrapper {
    padding-top: 0rem;
  }
  .cid-ttMsXjVPge p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ttMsXjVPge .back {
    width: 100%;
    height: 75%;
  }
  .cid-ttMsXjVPge .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-ttMsXjVPge p {
    margin-top: 4rem;
  }
}
.cid-ttMsXjVPge .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-ttMsXjVPge .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-ttMsXjVPge .content-wrapper {
    padding-right: 3rem;
  }
  .cid-ttMsXjVPge h4 {
    right: 2rem;
  }
}
.cid-ttMsXjVPge H1 {
  color: #ffffff;
}
.cid-ttMsXjVPge H3 {
  color: #ffffff;
}
.cid-ttMsXjVPge H4 {
  color: #ffffff;
}
.cid-ttMsXjVPge .mbr-text,
.cid-ttMsXjVPge .mbr-section-btn {
  color: #ffffff;
}
.cid-ttMkgOk0BA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-ttMkgOk0BA .mbr-overlay {
  background: #ffffff;
  opacity: 0.9;
}
.cid-ttMkgOk0BA img,
.cid-ttMkgOk0BA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ttMkgOk0BA .item:focus,
.cid-ttMkgOk0BA span:focus {
  outline: none;
}
.cid-ttMkgOk0BA .item-wrapper {
  position: relative;
}
.cid-ttMkgOk0BA .slide-content {
  position: relative;
  border-radius: 15px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttMkgOk0BA .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ttMkgOk0BA .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttMkgOk0BA .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ttMkgOk0BA .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ttMkgOk0BA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttMkgOk0BA .mbr-section-title {
  color: #000000;
}
.cid-ttMkgOk0BA .mbr-text,
.cid-ttMkgOk0BA .mbr-section-btn {
  text-align: left;
}
.cid-ttMkgOk0BA .item-title {
  text-align: left;
}
.cid-ttMkgOk0BA .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ttMkgOk0BA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-ttMkgOk0BA .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ttMkgOk0BA .embla__button--next,
.cid-ttMkgOk0BA .embla__button--prev {
  display: flex;
}
.cid-ttMkgOk0BA .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-ttMkgOk0BA .embla__button {
    display: none;
  }
}
.cid-ttMkgOk0BA .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ttMkgOk0BA .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ttMkgOk0BA .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttMkgOk0BA .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttMkgOk0BA .embla__button {
    top: auto;
  }
}
.cid-ttMkgOk0BA .embla {
  position: relative;
  width: 100%;
}
.cid-ttMkgOk0BA .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ttMkgOk0BA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ttMkgOk0BA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ttMkgOk0BA .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ttMkgOk0BA .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-ttMkgOk0BA .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-ttMkgOk0BA .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-ttMnifoYFj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ttMnifoYFj .progress {
  width: 100%;
}
.cid-ttMnifoYFj .container {
  max-width: 1300px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-ttMnifoYFj .container {
    padding: 0 1rem;
  }
}
.cid-ttMnifoYFj .image-wrapper {
  margin-right: -8rem;
  z-index: 5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-ttMnifoYFj .image-wrapper {
    margin-right: 0;
    padding-bottom: 2rem;
  }
}
.cid-ttMnifoYFj .image-wrapper img {
  width: 100%;
  border-radius: 30px;
  opacity: 0.9;
}
.cid-ttMnifoYFj .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 7rem 5rem 7rem 9.5rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ttMnifoYFj .card-wrapper {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ttMnifoYFj .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ttMnifoYFj .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-ttMnifoYFj .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-ttMnifoYFj progress {
  height: 8px;
}
.cid-ttMnifoYFj .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-ttMnifoYFj .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-ttMnifoYFj .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-ttMnifoYFj .progress_value {
  position: relative;
}
.cid-ttMnifoYFj .progress1 .progressbar-number:before,
.cid-ttMnifoYFj .progress2 .progressbar-number:before,
.cid-ttMnifoYFj .progress3 .progressbar-number:before,
.cid-ttMnifoYFj .progress4 .progressbar-number:before,
.cid-ttMnifoYFj .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-ttMnifoYFj progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-ttMnifoYFj progress::-webkit-progress-value {
  background: #2d4073;
}
.cid-ttMnifoYFj progress[value]::-moz-progress-bar {
  background: #2d4073;
}
.cid-ttMnifoYFj progress::-ms-fill {
  background: #2d4073;
}
.cid-ttMnifoYFj .progress1 .progressbar-number:before {
  content: '92';
}
.cid-ttMnifoYFj .progress2 .progressbar-number:before {
  content: '71';
}
.cid-ttMnifoYFj .progress3 .progressbar-number:before {
  content: '53';
}
.cid-ttMnifoYFj .progress4 .progressbar-number:before {
  content: '70';
}
.cid-ttMnifoYFj .progress5 .progressbar-number:before {
  content: '60';
}
.cid-ttMnifoYFj .section-content-text {
  color: #6d819b;
}
.cid-ttMnifoYFj .progressbar-title p,
.cid-ttMnifoYFj .progress_value {
  color: #6d819b;
}
.cid-ttMnifoYFj .mbr-section-subtitle {
  color: #6c758f;
}
.cid-ttMnifoYFj .section-content-title {
  color: #263d5a;
}
.cid-ttMEjhLlH2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-ttMEjhLlH2 .container-fluid {
  padding: 0 3rem;
}
.cid-ttMEjhLlH2 .media-container-column {
  padding: 0 2rem;
}
.cid-ttMEjhLlH2 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ttMEjhLlH2 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-ttMEjhLlH2 .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-sFAxp7Y5iM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sFAxp7Y5iM .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFAxp7Y5iM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAxp7Y5iM .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-sFAxp7Y5iM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAxp7Y5iM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ttMnnrX5b2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ttMnnrX5b2 .card {
  width: 100%;
}
.cid-ttMnnrX5b2 .card:nth-child(odd) .add__block {
  display: none;
}
.cid-ttMnnrX5b2 .add__block {
  margin-top: 35px;
}
.cid-ttMnnrX5b2 .add__block .add__block_image {
  width: 170px;
}
.cid-ttMnnrX5b2 .add__block .add__block_image img {
  width: 100%;
  border-radius: 6px;
}
.cid-ttMnnrX5b2 .add__block .add__block_content {
  margin-left: 30px;
  max-width: 270px;
}
.cid-ttMnnrX5b2 .add__block .add__block_title {
  margin-bottom: 0;
}
.cid-ttMnnrX5b2 .add__block .add__block_text {
  margin-top: 15px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-ttMnnrX5b2 .row {
  margin: 0;
}
.cid-ttMnnrX5b2 .mbr-section-title {
  margin-bottom: 0;
  text-align: center;
  color: #0a2642;
}
.cid-ttMnnrX5b2 .step-container {
  margin-top: 25px;
}
.cid-ttMnnrX5b2 .padding__bot {
  padding-bottom: 50px;
}
.cid-ttMnnrX5b2 .step-text-content {
  padding-top: 10px;
}
.cid-ttMnnrX5b2 .mbr-step-title {
  margin-bottom: 0;
  font-weight: 500;
}
.cid-ttMnnrX5b2 .mbr-step-text {
  margin-bottom: 0;
  margin-top: 20px;
  color: #919DAB;
}
.cid-ttMnnrX5b2 .mbr-section-btn {
  margin-top: 20px;
}
.cid-ttMnnrX5b2 .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-ttMnnrX5b2 .step {
  display: flex;
  width: 40px;
  height: 40px;
  font-size: calc((20px) - 2px);
  margin-bottom: 0;
  border-radius: 50%;
  border: 2px solid #ebeaed;
  background-color: #ebeaed;
  font-weight: 500;
  color: #0a2642;
}
@media (min-width: 400px) {
  .cid-ttMnnrX5b2 .add__block {
    display: flex;
  }
  .cid-ttMnnrX5b2 .step-element {
    display: flex;
  }
  .cid-ttMnnrX5b2 .mbr-section-btn {
    margin-top: 20px;
    margin-left: calc((20 * 2px) + 70px);
  }
  .cid-ttMnnrX5b2 .mbr-section-btn .btn {
    margin-left: 0;
  }
  .cid-ttMnnrX5b2 .separline {
    position: relative;
  }
  .cid-ttMnnrX5b2 .separline:after {
    top: 40px;
    left: 18px;
    position: absolute;
    content: "";
    width: 2px;
    height: calc(100% - (20px) * 2);
    background-color: #ebeaed;
  }
  .cid-ttMnnrX5b2 .step-text-content {
    margin-left: 70px;
  }
}
@media (max-width: 400px) {
  .cid-ttMnnrX5b2 .add__block_title {
    margin-top: 30px;
  }
  .cid-ttMnnrX5b2 .add__block .add__block_content {
    margin-left: 0;
  }
}
.cid-ttQH45P7sf {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ttQH45P7sf img {
  width: 120px;
  margin: auto;
}
.cid-ttQH45P7sf .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ttQH45P7sf .card {
    max-width: 12.5%;
  }
}
.cid-ttMuVm18DW {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1256x837.jpg");
}
.cid-ttMuVm18DW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttMuVm18DW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttMuVm18DW .mbr-text,
.cid-ttMuVm18DW .mbr-section-btn {
  color: #232323;
}
.cid-ttMuVm18DW .card-title,
.cid-ttMuVm18DW .card-box {
  color: #ffffff;
}
.cid-ttMuVm18DW .mbr-text,
.cid-ttMuVm18DW .link-wrap {
  color: #ffffff;
}
.cid-ttMxxAMdAY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #0a2642;
}
.cid-ttMxxAMdAY svg {
  position: absolute;
  top: 0;
}
.cid-ttMxxAMdAY .svg-1 {
  fill: #2d4073;
}
.cid-ttMxxAMdAY .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-ttMxxAMdAY {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-ttMxxAMdAY .mbr-text {
  color: #b1bee0;
}
.cid-ttMxxAMdAY a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-toSG54Hj7E {
  z-index: 1000;
  width: 100%;
}
.cid-toSG54Hj7E nav.navbar {
  position: fixed;
}
.cid-toSG54Hj7E .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toSG54Hj7E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toSG54Hj7E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toSG54Hj7E .dropdown-item:hover,
.cid-toSG54Hj7E .dropdown-item:focus {
  background: #0a2642 !important;
  color: white !important;
}
.cid-toSG54Hj7E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toSG54Hj7E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toSG54Hj7E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toSG54Hj7E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toSG54Hj7E .nav-link {
  position: relative;
}
.cid-toSG54Hj7E .container {
  display: flex;
  margin: auto;
}
.cid-toSG54Hj7E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toSG54Hj7E .dropdown-menu,
.cid-toSG54Hj7E .navbar.opened {
  background: #ffffff !important;
}
.cid-toSG54Hj7E .nav-item:focus,
.cid-toSG54Hj7E .nav-link:focus {
  outline: none;
}
.cid-toSG54Hj7E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toSG54Hj7E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toSG54Hj7E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toSG54Hj7E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toSG54Hj7E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toSG54Hj7E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toSG54Hj7E .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-toSG54Hj7E .navbar.opened {
  transition: all 0.3s;
}
.cid-toSG54Hj7E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toSG54Hj7E .navbar .navbar-logo img {
  width: auto;
}
.cid-toSG54Hj7E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toSG54Hj7E .navbar.collapsed {
  justify-content: center;
}
.cid-toSG54Hj7E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toSG54Hj7E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toSG54Hj7E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-toSG54Hj7E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toSG54Hj7E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toSG54Hj7E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-toSG54Hj7E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toSG54Hj7E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toSG54Hj7E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toSG54Hj7E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toSG54Hj7E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toSG54Hj7E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toSG54Hj7E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toSG54Hj7E .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-toSG54Hj7E .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-toSG54Hj7E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toSG54Hj7E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toSG54Hj7E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toSG54Hj7E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toSG54Hj7E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-toSG54Hj7E .navbar.navbar-short {
  min-height: 60px;
}
.cid-toSG54Hj7E .navbar.navbar-short .navbar-logo img {
  height: 1.9rem !important;
}
.cid-toSG54Hj7E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toSG54Hj7E .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-toSG54Hj7E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toSG54Hj7E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toSG54Hj7E .dropdown-item.active,
.cid-toSG54Hj7E .dropdown-item:active {
  background-color: transparent;
}
.cid-toSG54Hj7E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toSG54Hj7E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toSG54Hj7E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toSG54Hj7E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-toSG54Hj7E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toSG54Hj7E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toSG54Hj7E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toSG54Hj7E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toSG54Hj7E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toSG54Hj7E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-toSG54Hj7E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toSG54Hj7E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toSG54Hj7E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toSG54Hj7E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toSG54Hj7E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toSG54Hj7E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toSG54Hj7E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toSG54Hj7E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toSG54Hj7E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toSG54Hj7E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toSG54Hj7E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toSG54Hj7E .navbar {
    height: 70px;
  }
  .cid-toSG54Hj7E .navbar.opened {
    height: auto;
  }
  .cid-toSG54Hj7E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toSG54Hj7E .navbar-logo img {
  height: 2rem !important;
}
.cid-ttQCuAsvmK {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-ttQCuAsvmK .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ttQCuAsvmK .container-fluid {
  padding: 0 !important;
}
.cid-ttQCuAsvmK .google-map {
  height: 300px;
  position: relative;
  margin-bottom: 65px;
}
.cid-ttQCuAsvmK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ttQCuAsvmK .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-ttQCuAsvmK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ttQCuAsvmK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ttQCuAsvmK .wrapper {
  margin-bottom: 50px;
}
.cid-ttQCuAsvmK .mbr-section-title {
  margin-bottom: 0;
}
.cid-ttQCuAsvmK .mbr-text {
  color: #919dab;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-ttQCuAsvmK .subscribe__form {
  margin-top: 30px;
}
.cid-ttQCuAsvmK .form-group {
  margin-bottom: 0;
}
.cid-ttQCuAsvmK .dragArea .form-control {
  color: #919dab;
  margin-bottom: 35px;
  border: 2px solid #ebeaed !important;
  font-weight: 700;
  padding: 0 25px;
  height: 50px;
  font-size: 18px;
  border-radius: 30px;
  background-color: #ffffff !important;
}
.cid-ttQCuAsvmK .dragArea textarea {
  height: 170px !important;
  border-radius: 10px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  resize: none;
}
.cid-ttQCuAsvmK .dragArea input::placeholder {
  color: #919dab;
  opacity: .6;
}
.cid-ttQCuAsvmK .dragArea textarea::placeholder {
  color: #919dab;
  opacity: .6;
}
.cid-ttQCuAsvmK .dragArea .form-control-label {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-ttQCuAsvmK .dragArea .input-group-btn .btn {
  width: 100%;
  margin: 35px 0 0;
  font-weight: 500;
  height: 50px;
}
@media (max-width: 991px) {
  .cid-ttQCuAsvmK .dragArea .input-group-btn .btn {
    margin-top: 0;
  }
}
.cid-ttQCuAsvmK .title__right {
  margin-bottom: 0;
}
.cid-ttQCuAsvmK .text__right {
  margin: 20px 0 40px;
  color: #919dab;
}
.cid-ttQCuAsvmK .tel {
  margin: 10px 0 0;
  font-weight: 500;
  transition: all .25s;
}
.cid-ttQCuAsvmK .tel .mbr-iconfont {
  width: 30px;
  font-size: 18px;
  color: #40b0bf;
}
.cid-ttQCuAsvmK .tel:hover {
  color: #82cbf1;
}
.cid-ttQCuAsvmK .divider {
  width: 100%;
  height: 2px;
  background-color: #ebeaed;
  margin: 50px 0 40px;
}
.cid-ttQCuAsvmK .title__right_social {
  margin-bottom: 20px;
}
.cid-ttQCuAsvmK .socials {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 140px;
}
.cid-ttQCuAsvmK .socials .soc-item {
  margin-bottom: 15px;
  width: 48%;
  padding-right: 20px;
}
.cid-ttQCuAsvmK .socials .mbr-iconfont {
  color: #0a2642;
  margin-right: 15px;
  font-size: 18px;
}
.cid-ttQCuAsvmK .socname {
  transition: all .25s;
  color: #919dab;
}
.cid-ttQCuAsvmK .socname:hover {
  color: #5d6a79;
}
.cid-ttMxxAMdAY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #0a2642;
}
.cid-ttMxxAMdAY svg {
  position: absolute;
  top: 0;
}
.cid-ttMxxAMdAY .svg-1 {
  fill: #2d4073;
}
.cid-ttMxxAMdAY .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-ttMxxAMdAY {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-ttMxxAMdAY .mbr-text {
  color: #b1bee0;
}
.cid-ttMxxAMdAY a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-toSG7YvvIM {
  z-index: 1000;
  width: 100%;
}
.cid-toSG7YvvIM nav.navbar {
  position: fixed;
}
.cid-toSG7YvvIM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toSG7YvvIM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toSG7YvvIM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toSG7YvvIM .dropdown-item:hover,
.cid-toSG7YvvIM .dropdown-item:focus {
  background: #0a2642 !important;
  color: white !important;
}
.cid-toSG7YvvIM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toSG7YvvIM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toSG7YvvIM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toSG7YvvIM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toSG7YvvIM .nav-link {
  position: relative;
}
.cid-toSG7YvvIM .container {
  display: flex;
  margin: auto;
}
.cid-toSG7YvvIM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toSG7YvvIM .dropdown-menu,
.cid-toSG7YvvIM .navbar.opened {
  background: #ffffff !important;
}
.cid-toSG7YvvIM .nav-item:focus,
.cid-toSG7YvvIM .nav-link:focus {
  outline: none;
}
.cid-toSG7YvvIM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toSG7YvvIM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toSG7YvvIM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toSG7YvvIM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toSG7YvvIM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toSG7YvvIM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toSG7YvvIM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-toSG7YvvIM .navbar.opened {
  transition: all 0.3s;
}
.cid-toSG7YvvIM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toSG7YvvIM .navbar .navbar-logo img {
  width: auto;
}
.cid-toSG7YvvIM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toSG7YvvIM .navbar.collapsed {
  justify-content: center;
}
.cid-toSG7YvvIM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toSG7YvvIM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toSG7YvvIM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-toSG7YvvIM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toSG7YvvIM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toSG7YvvIM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-toSG7YvvIM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toSG7YvvIM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toSG7YvvIM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toSG7YvvIM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toSG7YvvIM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toSG7YvvIM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toSG7YvvIM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toSG7YvvIM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-toSG7YvvIM .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-toSG7YvvIM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toSG7YvvIM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toSG7YvvIM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toSG7YvvIM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toSG7YvvIM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-toSG7YvvIM .navbar.navbar-short {
  min-height: 60px;
}
.cid-toSG7YvvIM .navbar.navbar-short .navbar-logo img {
  height: 1.9rem !important;
}
.cid-toSG7YvvIM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toSG7YvvIM .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-toSG7YvvIM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toSG7YvvIM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toSG7YvvIM .dropdown-item.active,
.cid-toSG7YvvIM .dropdown-item:active {
  background-color: transparent;
}
.cid-toSG7YvvIM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toSG7YvvIM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toSG7YvvIM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toSG7YvvIM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-toSG7YvvIM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toSG7YvvIM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toSG7YvvIM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toSG7YvvIM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toSG7YvvIM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toSG7YvvIM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-toSG7YvvIM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toSG7YvvIM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toSG7YvvIM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toSG7YvvIM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toSG7YvvIM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toSG7YvvIM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toSG7YvvIM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toSG7YvvIM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toSG7YvvIM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toSG7YvvIM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toSG7YvvIM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toSG7YvvIM .navbar {
    height: 70px;
  }
  .cid-toSG7YvvIM .navbar.opened {
    height: auto;
  }
  .cid-toSG7YvvIM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toSG7YvvIM .navbar-logo img {
  height: 2rem !important;
}
.cid-ttMxVHYiCc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ffffff;
}
.cid-ttMxVHYiCc .main_header {
  margin-top: -195px;
  width: 100%;
  background-color: #ffffff;
  padding: 107px 8%;
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .cid-ttMxVHYiCc .main_header {
    padding-top: 66px;
  }
  .cid-ttMxVHYiCc .main_header > .row {
    flex-direction: column;
  }
  .cid-ttMxVHYiCc .main_header .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-ttMxVHYiCc .mbr-section-title {
  color: #202020;
  margin: 25px 2rem 25px;
}
@media (max-width: 767px) {
  .cid-ttMxVHYiCc .mbr-section-title {
    text-align: center;
  }
}
.cid-ttMxVHYiCc .mbr-text {
  margin: 25px 0;
}
.cid-ttMxVHYiCc .bgImage {
  position: relative;
  width: 100%;
  height: 500px;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-ttMxVHYiCc .bgImage {
    height: 65vh;
  }
}
.cid-ttMxVHYiCc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ttMxVHYiCc .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-ttMxVHYiCc .linkBtn a:after,
.cid-ttMxVHYiCc .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-ttMxVHYiCc .linkBtn a:before {
  left: 0;
}
.cid-ttMxVHYiCc .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-ttMxVHYiCc .linkBtn a:hover:before,
.cid-ttMxVHYiCc .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-ttMyKpQqhi {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ttMyKpQqhi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttMyKpQqhi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttMyKpQqhi .text-wrap {
  width: 100%;
}
.cid-ttMyKpQqhi .mbr-title {
  margin-bottom: 0;
  color: #bbbbbb;
}
.cid-ttMyKpQqhi .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-ttMyKpQqhi .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-ttMAOzQIL2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1256x837.jpg");
}
.cid-ttMAOzQIL2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttMAOzQIL2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttMAOzQIL2 .mbr-text,
.cid-ttMAOzQIL2 .mbr-section-btn {
  color: #232323;
}
.cid-ttMAOzQIL2 .card-title,
.cid-ttMAOzQIL2 .card-box {
  color: #ffffff;
}
.cid-ttMAOzQIL2 .mbr-text,
.cid-ttMAOzQIL2 .link-wrap {
  color: #ffffff;
}
.cid-ttMxxAMdAY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #0a2642;
}
.cid-ttMxxAMdAY svg {
  position: absolute;
  top: 0;
}
.cid-ttMxxAMdAY .svg-1 {
  fill: #2d4073;
}
.cid-ttMxxAMdAY .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-ttMxxAMdAY {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-ttMxxAMdAY .mbr-text {
  color: #b1bee0;
}
.cid-ttMxxAMdAY a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-toSJnAGvHM {
  z-index: 1000;
  width: 100%;
}
.cid-toSJnAGvHM nav.navbar {
  position: fixed;
}
.cid-toSJnAGvHM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toSJnAGvHM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toSJnAGvHM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toSJnAGvHM .dropdown-item:hover,
.cid-toSJnAGvHM .dropdown-item:focus {
  background: #0a2642 !important;
  color: white !important;
}
.cid-toSJnAGvHM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toSJnAGvHM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toSJnAGvHM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toSJnAGvHM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toSJnAGvHM .nav-link {
  position: relative;
}
.cid-toSJnAGvHM .container {
  display: flex;
  margin: auto;
}
.cid-toSJnAGvHM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toSJnAGvHM .dropdown-menu,
.cid-toSJnAGvHM .navbar.opened {
  background: #ffffff !important;
}
.cid-toSJnAGvHM .nav-item:focus,
.cid-toSJnAGvHM .nav-link:focus {
  outline: none;
}
.cid-toSJnAGvHM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toSJnAGvHM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toSJnAGvHM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toSJnAGvHM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toSJnAGvHM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toSJnAGvHM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toSJnAGvHM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-toSJnAGvHM .navbar.opened {
  transition: all 0.3s;
}
.cid-toSJnAGvHM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toSJnAGvHM .navbar .navbar-logo img {
  width: auto;
}
.cid-toSJnAGvHM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toSJnAGvHM .navbar.collapsed {
  justify-content: center;
}
.cid-toSJnAGvHM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toSJnAGvHM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toSJnAGvHM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-toSJnAGvHM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toSJnAGvHM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toSJnAGvHM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-toSJnAGvHM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toSJnAGvHM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toSJnAGvHM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toSJnAGvHM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toSJnAGvHM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toSJnAGvHM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toSJnAGvHM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toSJnAGvHM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-toSJnAGvHM .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-toSJnAGvHM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toSJnAGvHM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toSJnAGvHM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toSJnAGvHM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toSJnAGvHM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-toSJnAGvHM .navbar.navbar-short {
  min-height: 60px;
}
.cid-toSJnAGvHM .navbar.navbar-short .navbar-logo img {
  height: 1.9rem !important;
}
.cid-toSJnAGvHM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toSJnAGvHM .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-toSJnAGvHM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toSJnAGvHM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toSJnAGvHM .dropdown-item.active,
.cid-toSJnAGvHM .dropdown-item:active {
  background-color: transparent;
}
.cid-toSJnAGvHM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toSJnAGvHM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toSJnAGvHM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toSJnAGvHM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-toSJnAGvHM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toSJnAGvHM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toSJnAGvHM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toSJnAGvHM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toSJnAGvHM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toSJnAGvHM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-toSJnAGvHM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toSJnAGvHM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toSJnAGvHM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toSJnAGvHM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toSJnAGvHM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toSJnAGvHM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toSJnAGvHM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toSJnAGvHM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toSJnAGvHM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toSJnAGvHM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toSJnAGvHM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toSJnAGvHM .navbar {
    height: 70px;
  }
  .cid-toSJnAGvHM .navbar.opened {
    height: auto;
  }
  .cid-toSJnAGvHM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toSJnAGvHM .navbar-logo img {
  height: 2rem !important;
}
.cid-ttMCQcnwc4 {
  padding-top: 120px;
  padding-bottom: 30px;
}
.cid-ttMCQcnwc4 .container-fluid {
  position: relative;
}
.cid-ttMCQcnwc4 .page-title-content {
  width: 100%;
}
.cid-ttMCQcnwc4 .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-ttMCQcnwc4 .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-ttMCQcnwc4 .page-title-content {
    text-align: center;
  }
}
.cid-ttMCQcnwc4 .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-ttMCQcnwc4 a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-ttMCQcnwc4 a:not(:first-child) {
  margin-left: 20px;
}
.cid-ttMCQcnwc4 a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-ttMCQcnwc4 a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-ttMCQcnwc4 a:hover:after,
.cid-ttMCQcnwc4 a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-ttMCQcnwc4 a:hover:before,
.cid-ttMCQcnwc4 a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-ttMCQcnwc4 a.text-white:hover,
.cid-ttMCQcnwc4 a.text-white:focus {
  color: #ffffff !important;
}
.cid-ttMCQcnwc4 .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-ttMBK2SM1q {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ttMBK2SM1q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttMBK2SM1q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttMB3DU0Sa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fcfcfc;
}
.cid-ttMB3DU0Sa .card {
  width: 100%;
}
.cid-ttMB3DU0Sa .card:nth-child(odd) .add__block {
  display: none;
}
.cid-ttMB3DU0Sa .add__block {
  margin-top: 35px;
}
.cid-ttMB3DU0Sa .add__block .add__block_image {
  width: 170px;
}
.cid-ttMB3DU0Sa .add__block .add__block_image img {
  width: 100%;
  border-radius: 6px;
}
.cid-ttMB3DU0Sa .add__block .add__block_content {
  margin-left: 30px;
  max-width: 270px;
}
.cid-ttMB3DU0Sa .add__block .add__block_title {
  margin-bottom: 0;
}
.cid-ttMB3DU0Sa .add__block .add__block_text {
  margin-top: 15px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-ttMB3DU0Sa .row {
  margin: 0;
}
.cid-ttMB3DU0Sa .mbr-section-title {
  margin-bottom: 0;
  text-align: center;
  color: #232323;
}
.cid-ttMB3DU0Sa .step-container {
  margin-top: 25px;
}
.cid-ttMB3DU0Sa .padding__bot {
  padding-bottom: 50px;
}
.cid-ttMB3DU0Sa .step-text-content {
  padding-top: 10px;
}
.cid-ttMB3DU0Sa .mbr-step-title {
  margin-bottom: 0;
  font-weight: 500;
}
.cid-ttMB3DU0Sa .mbr-step-text {
  margin-bottom: 0;
  margin-top: 20px;
  color: #919DAB;
}
.cid-ttMB3DU0Sa .mbr-section-btn {
  margin-top: 20px;
}
.cid-ttMB3DU0Sa .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-ttMB3DU0Sa .step {
  display: flex;
  width: 40px;
  height: 40px;
  font-size: calc((20px) - 2px);
  margin-bottom: 0;
  border-radius: 50%;
  border: 2px solid #ebeaed;
  background-color: #ebeaed;
  font-weight: 500;
  color: #0a2642;
}
@media (min-width: 400px) {
  .cid-ttMB3DU0Sa .add__block {
    display: flex;
  }
  .cid-ttMB3DU0Sa .step-element {
    display: flex;
  }
  .cid-ttMB3DU0Sa .mbr-section-btn {
    margin-top: 20px;
    margin-left: calc((20 * 2px) + 70px);
  }
  .cid-ttMB3DU0Sa .mbr-section-btn .btn {
    margin-left: 0;
  }
  .cid-ttMB3DU0Sa .separline {
    position: relative;
  }
  .cid-ttMB3DU0Sa .separline:after {
    top: 40px;
    left: 18px;
    position: absolute;
    content: "";
    width: 2px;
    height: calc(100% - (20px) * 2);
    background-color: #ebeaed;
  }
  .cid-ttMB3DU0Sa .step-text-content {
    margin-left: 70px;
  }
}
@media (max-width: 400px) {
  .cid-ttMB3DU0Sa .add__block_title {
    margin-top: 30px;
  }
  .cid-ttMB3DU0Sa .add__block .add__block_content {
    margin-left: 0;
  }
}
.cid-ttMAUKeyMl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1256x837.jpg");
}
.cid-ttMAUKeyMl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttMAUKeyMl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttMAUKeyMl .mbr-text,
.cid-ttMAUKeyMl .mbr-section-btn {
  color: #232323;
}
.cid-ttMAUKeyMl .card-title,
.cid-ttMAUKeyMl .card-box {
  color: #ffffff;
}
.cid-ttMAUKeyMl .mbr-text,
.cid-ttMAUKeyMl .link-wrap {
  color: #ffffff;
}
.cid-ttMxxAMdAY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #0a2642;
}
.cid-ttMxxAMdAY svg {
  position: absolute;
  top: 0;
}
.cid-ttMxxAMdAY .svg-1 {
  fill: #2d4073;
}
.cid-ttMxxAMdAY .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-ttMxxAMdAY {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-ttMxxAMdAY .mbr-text {
  color: #b1bee0;
}
.cid-ttMxxAMdAY a {
  text-decoration: underline;
  font-weight: 400 !important;
}

/* ===== Custom Dropdown Menu Styles ===== */

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.cid-sFCw1qGFAI .dropdown-menu {
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: none;
  background: #ffffff !important;
  min-width: 280px;
  margin-top: 0 !important;
  top: 100% !important;
}

/* Bridge element to prevent hover gap */
.cid-sFCw1qGFAI .nav-item.dropdown {
  position: relative;
}

.cid-sFCw1qGFAI .nav-item.dropdown::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(100%);
  background: transparent;
  pointer-events: none;
}

.cid-sFCw1qGFAI .nav-item.dropdown:hover::after {
  pointer-events: auto;
}

.cid-sFCw1qGFAI .dropdown-item {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: #1a1a2e;
  border-bottom: none;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #f5f5f5 !important;
  color: #1a1a2e !important;
}

.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.cid-sFCw1qGFAI .dropdown-item:before {
  display: none !important;
}

/* Hide default Bootstrap dropdown arrow */
.cid-sFCw1qGFAI .nav-link.dropdown-toggle::after {
  display: none !important;
}

/* Custom dropdown arrow icon */
.cid-sFCw1qGFAI .dropdown-arrow {
  font-size: 0.8em;
  margin-left: 0.4rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.cid-sFCw1qGFAI .nav-item.dropdown:hover .dropdown-arrow,
.cid-sFCw1qGFAI .nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Smooth dropdown animation */
.cid-sFCw1qGFAI .dropdown-menu.show {
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Mobile Menu Styles ===== */
@media (max-width: 991px) {
  /* Main mobile menu container - below navbar */
  .cid-sFCw1qGFAI .navbar-collapse {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 125px);
    background: #ffffff;
    padding: 15px 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  /* Adjust when scrolled (top-bar hidden) */
  body.scrolled .cid-sFCw1qGFAI .navbar-collapse {
    top: 60px;
    height: calc(100% - 60px);
  }

  .cid-sFCw1qGFAI .navbar-collapse.show {
    transform: translateX(0);
  }

  .cid-sFCw1qGFAI .navbar-collapse.collapse:not(.show) {
    display: flex !important;
  }

  /* Navigation list */
  .cid-sFCw1qGFAI .navbar-nav {
    flex-direction: column;
    padding: 0;
    margin: 0;
    flex: 1;
    width: 100%;
  }

  .cid-sFCw1qGFAI .navbar-nav .nav-item {
    margin: 0 !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .cid-sFCw1qGFAI .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  /* Nav links */
  .cid-sFCw1qGFAI .navbar-nav .nav-link {
    padding: 15px 25px !important;
    margin: 0 !important;
    font-size: 1rem;
    color: #1a1a2e !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left !important;
  }

  .cid-sFCw1qGFAI .navbar-nav .nav-link:hover,
  .cid-sFCw1qGFAI .navbar-nav .nav-link:focus {
    background: #f8f9fa;
  }

  /* Dropdown arrow in mobile */
  .cid-sFCw1qGFAI .navbar-nav .dropdown-arrow {
    margin-left: auto;
    font-size: 1em;
    transition: transform 0.3s ease;
    transform: rotate(0deg) !important;
  }

  .cid-sFCw1qGFAI .navbar-nav .nav-item.dropdown.open .dropdown-arrow {
    transform: rotate(180deg) !important;
  }

  /* Override desktop hover styles on mobile */
  .cid-sFCw1qGFAI .nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(0deg) !important;
  }

  .cid-sFCw1qGFAI .nav-item.dropdown.open:hover .dropdown-arrow {
    transform: rotate(180deg) !important;
  }

  /* Mobile dropdown menu */
  .cid-sFCw1qGFAI .navbar-nav .dropdown-menu {
    position: static !important;
    display: none;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
  }

  .cid-sFCw1qGFAI .navbar-nav .dropdown-menu.show {
    display: block;
  }

  /* Mobile dropdown items */
  .cid-sFCw1qGFAI .navbar-nav .dropdown-item {
    padding: 12px 25px 12px 40px !important;
    text-align: left !important;
    font-size: 0.95rem;
    color: #444 !important;
    border-bottom: 1px solid #eee;
  }

  .cid-sFCw1qGFAI .navbar-nav .dropdown-item:last-child {
    border-bottom: none;
  }

  .cid-sFCw1qGFAI .navbar-nav .dropdown-item:hover {
    background: #eef1f5 !important;
    color: #1a1a2e !important;
  }

  /* Hamburger button improvements */
  .cid-sFCw1qGFAI .navbar-toggler {
    border: none !important;
    padding: 10px;
    z-index: 10001;
    position: relative;
  }

  .cid-sFCw1qGFAI .navbar-toggler:focus {
    box-shadow: none !important;
  }

  /* Navbar stays on top */
  .cid-sFCw1qGFAI .navbar {
    z-index: 10000;
  }

  /* Reset hamburger - closed state (3 horizontal lines) */
  .cid-sFCw1qGFAI .navbar-toggler[aria-expanded="false"] .hamburger span,
  .cid-sFCw1qGFAI .navbar-toggler:not([aria-expanded]) .hamburger span {
    transform: none !important;
    opacity: 1 !important;
    width: 30px !important;
    right: 0 !important;
  }

  .cid-sFCw1qGFAI .navbar-toggler[aria-expanded="false"] .hamburger span:nth-child(1),
  .cid-sFCw1qGFAI .navbar-toggler:not([aria-expanded]) .hamburger span:nth-child(1) {
    top: 0 !important;
  }

  .cid-sFCw1qGFAI .navbar-toggler[aria-expanded="false"] .hamburger span:nth-child(2),
  .cid-sFCw1qGFAI .navbar-toggler:not([aria-expanded]) .hamburger span:nth-child(2),
  .cid-sFCw1qGFAI .navbar-toggler[aria-expanded="false"] .hamburger span:nth-child(3),
  .cid-sFCw1qGFAI .navbar-toggler:not([aria-expanded]) .hamburger span:nth-child(3) {
    top: 8px !important;
  }

  .cid-sFCw1qGFAI .navbar-toggler[aria-expanded="false"] .hamburger span:nth-child(4),
  .cid-sFCw1qGFAI .navbar-toggler:not([aria-expanded]) .hamburger span:nth-child(4) {
    top: 16px !important;
  }

  /* Hamburger open state - show cross (X) */
  .cid-sFCw1qGFAI .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    top: 8px !important;
    width: 0 !important;
    opacity: 0 !important;
    right: 50% !important;
  }

  .cid-sFCw1qGFAI .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    transform: rotate(45deg) !important;
    top: 8px !important;
    width: 30px !important;
    opacity: 1 !important;
  }

  .cid-sFCw1qGFAI .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) !important;
    top: 8px !important;
    width: 30px !important;
    opacity: 1 !important;
  }

  .cid-sFCw1qGFAI .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(4) {
    top: 8px !important;
    width: 0 !important;
    opacity: 0 !important;
    right: 50% !important;
  }

  /* Hide bridge element on mobile */
  .cid-sFCw1qGFAI .nav-item.dropdown::after {
    display: none;
  }

  /* Smooth slide animation */
  .cid-sFCw1qGFAI .navbar-collapse.collapsing {
    transition: none;
    height: auto !important;
  }
}
