.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 2.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.375rem;
}
.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: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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: 2.16rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.89rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.595rem + (2.7 - 1.595) * ((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: 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: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #232323 !important;
}
.bg-success {
  background-color: #232323 !important;
}
.bg-info {
  background-color: #7c5e9d !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary: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-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: #7c5e9d !important;
  border-color: #7c5e9d !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: #513e67 !important;
  border-color: #513e67 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #513e67 !important;
  border-color: #513e67 !important;
}
.btn-success,
.btn-success: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-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.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-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #232323;
  color: #232323;
}
.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: #232323 !important;
  border-color: #232323 !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: #7c5e9d;
  color: #7c5e9d;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #513e67 !important;
  background-color: transparent!important;
  border-color: #513e67 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7c5e9d !important;
  border-color: #7c5e9d !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #232323 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #232323 !important;
}
.text-info {
  color: #7c5e9d !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !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: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #4a385d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #232323;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7c5e9d;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #232323;
  border-color: #232323;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #232323;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #bcadce;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: '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: #232323 !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: #232323;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #232323;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #232323;
}
.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: #232323;
  border-bottom-color: #232323;
}
.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: #232323 !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='%23232323' %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-tDdAhVw4Se {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e6f3ff;
}
.cid-tDdAhVw4Se .line {
  background-color: #153f67;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDdAhVw4Se .mbr-text {
  color: #153f67;
}
.cid-tq9TfYfEti {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #e6f3ff;
}
.cid-tq9TfYfEti .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq9TfYfEti .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq9TfYfEti .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tq9TfYfEti .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tq9TfYfEti .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tq9TfYfEti .mbr-text,
.cid-tq9TfYfEti .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-tq9TfYfEti .mbr-section-title {
  color: #cf0a0a;
  text-align: left;
}
.cid-tqbNuGQnLP {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #153f67;
}
.cid-tqbNuGQnLP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbNuGQnLP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbNuGQnLP .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqbNuGQnLP .mbr-text,
.cid-tqbNuGQnLP .mbr-section-btn {
  text-align: center;
  color: #e6c63b;
}
.cid-tqa0lC570e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqa0lC570e img,
.cid-tqa0lC570e .item-img {
  width: 100%;
}
.cid-tqa0lC570e .item:focus,
.cid-tqa0lC570e span:focus {
  outline: none;
}
.cid-tqa0lC570e .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqa0lC570e .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqa0lC570e .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqa0lC570e .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqa0lC570e .item-wrapper {
  background: transparent;
}
.cid-tqa0lC570e .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqa0lC570e .mbr-section-title {
  color: #232323;
}
.cid-tqa0lC570e .mbr-text,
.cid-tqa0lC570e .mbr-section-btn {
  text-align: center;
}
.cid-tqa0lC570e .item-title {
  text-align: center;
  color: #153f67;
}
.cid-tqa0lC570e .item-subtitle {
  text-align: center;
}
.cid-tkMUx10b5L .navbar-dropdown {
  position: relative !important;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkMUx10b5L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkMUx10b5L .dropdown-item:hover,
.cid-tkMUx10b5L .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-tkMUx10b5L .dropdown-item:hover span {
  color: white;
}
.cid-tkMUx10b5L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkMUx10b5L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkMUx10b5L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkMUx10b5L .nav-link {
  position: relative;
}
.cid-tkMUx10b5L .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tkMUx10b5L .container {
    flex-wrap: nowrap;
  }
}
.cid-tkMUx10b5L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkMUx10b5L .dropdown-menu,
.cid-tkMUx10b5L .navbar.opened {
  background: #153f67 !important;
}
.cid-tkMUx10b5L .nav-item:focus,
.cid-tkMUx10b5L .nav-link:focus {
  outline: none;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkMUx10b5L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkMUx10b5L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkMUx10b5L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #153f67;
}
.cid-tkMUx10b5L .navbar.opened {
  transition: all 0.3s;
}
.cid-tkMUx10b5L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkMUx10b5L .navbar .navbar-logo img {
  width: auto;
}
.cid-tkMUx10b5L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkMUx10b5L .navbar.collapsed {
  justify-content: center;
}
.cid-tkMUx10b5L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkMUx10b5L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkMUx10b5L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkMUx10b5L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkMUx10b5L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkMUx10b5L .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-tkMUx10b5L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkMUx10b5L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkMUx10b5L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkMUx10b5L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkMUx10b5L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tkMUx10b5L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tkMUx10b5L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkMUx10b5L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkMUx10b5L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkMUx10b5L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkMUx10b5L .dropdown-item.active,
.cid-tkMUx10b5L .dropdown-item:active {
  background-color: transparent;
}
.cid-tkMUx10b5L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkMUx10b5L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #153f67;
}
.cid-tkMUx10b5L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkMUx10b5L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkMUx10b5L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkMUx10b5L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkMUx10b5L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkMUx10b5L .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tkMUx10b5L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar {
    height: 70px;
  }
  .cid-tkMUx10b5L .navbar.opened {
    height: auto;
  }
  .cid-tkMUx10b5L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbNXD6uO5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #153f67;
}
.cid-tqbNXD6uO5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbNXD6uO5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbNXD6uO5 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqbNXD6uO5 .mbr-text,
.cid-tqbNXD6uO5 .mbr-section-btn {
  text-align: center;
  color: #e6c63b;
}
.cid-tqbQhuMQRh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tqbQhuMQRh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbQhuMQRh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbQhuMQRh .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tqbQhuMQRh .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tqbQhuMQRh .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tqbQhuMQRh .mbr-text,
.cid-tqbQhuMQRh .mbr-section-btn {
  text-align: left;
}
.cid-tqbQ79nwOF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #153f67;
}
.cid-tqbQ79nwOF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbQ79nwOF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbQ79nwOF .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqbQ79nwOF .mbr-text,
.cid-tqbQ79nwOF .mbr-section-btn {
  text-align: center;
  color: #e6c63b;
}
.cid-tzJ8G5PtRa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDjDi06dT1 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #153f67;
}
.cid-tDjDi06dT1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDjDi06dT1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDjDi06dT1 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tDjDi06dT1 .mbr-text,
.cid-tDjDi06dT1 .mbr-section-btn {
  text-align: center;
  color: #e6c63b;
}
.cid-tDjDnKgmHA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFygCOCsLU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFygCOCsLU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFygCOCsLU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFygCOCsLU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFygCOCsLU .row {
  flex-direction: row-reverse;
}
.cid-tFygCOCsLU img {
  width: 100%;
}
.cid-tqbK4jlVGQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #153f67;
}
.cid-tqbK4jlVGQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbK4jlVGQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbK4jlVGQ .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-trH8TsbFAN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #b0d9ff;
}
.cid-trH8TsbFAN .mbr-fallback-image.disabled {
  display: none;
}
.cid-trH8TsbFAN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trH8TsbFAN .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-trH8TsbFAN .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-trH8TsbFAN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-trH8TsbFAN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-trH8TsbFAN .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-trH8TsbFAN .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-trH8TsbFAN .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-trH8TsbFAN .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-trH8TsbFAN .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-trH8TsbFAN .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-trH8TsbFAN .card-subtitle {
  color: #258508;
  text-align: left;
}
.cid-trH8TsbFAN .card-title {
  color: #ce3639;
  text-align: left;
}
.cid-trH8TsbFAN .mbr-text,
.cid-trH8TsbFAN .social-row {
  text-align: left;
}
.cid-tqbRTc91uR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #153f67;
}
.cid-tqbRTc91uR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbRTc91uR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbRTc91uR .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqbRTc91uR .mbr-text,
.cid-tqbRTc91uR .mbr-section-btn {
  text-align: center;
  color: #e6c63b;
}
.cid-tqbTL1QOai {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqbTL1QOai img,
.cid-tqbTL1QOai .item-img {
  width: 100%;
}
.cid-tqbTL1QOai .item:focus,
.cid-tqbTL1QOai span:focus {
  outline: none;
}
.cid-tqbTL1QOai .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqbTL1QOai .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqbTL1QOai .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqbTL1QOai .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqbTL1QOai .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqbTL1QOai .mbr-section-title {
  color: #153f67;
}
.cid-tqbTL1QOai .mbr-text,
.cid-tqbTL1QOai .mbr-section-btn {
  text-align: left;
}
.cid-tqbTL1QOai .item-title {
  text-align: left;
}
.cid-tqbTL1QOai .item-subtitle {
  text-align: left;
}
.cid-tqribTwa3s {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqribTwa3s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqribTwa3s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tqribTwa3s .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqribTwa3s .row {
  flex-direction: row-reverse;
}
.cid-tqribTwa3s img {
  width: 100%;
}
.cid-tqcgYoxG7U {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqcgYoxG7U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqcgYoxG7U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tqcgYoxG7U .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqcgYoxG7U .row {
  flex-direction: row-reverse;
}
.cid-tqcgYoxG7U img {
  width: 100%;
}
.cid-tqcotVIRz9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #153f67;
}
.cid-tqcotVIRz9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqcotVIRz9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqcotVIRz9 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqcotVIRz9 .mbr-text,
.cid-tqcotVIRz9 .mbr-section-btn {
  text-align: center;
  color: #e6c63b;
}
.cid-tsw02lvgot {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsw02lvgot .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsw02lvgot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsw02lvgot .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-tsw02lvgot .item {
    margin-bottom: 4rem;
  }
}
.cid-tsw02lvgot .item:last-child .icon-box:before {
  display: none;
}
.cid-tsw02lvgot .item.last .icon-box:before {
  display: none;
}
.cid-tsw02lvgot .icon-box {
  background: #153f67;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tsw02lvgot .icon-box {
    margin-right: 1rem;
  }
}
.cid-tsw02lvgot .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #153f67;
  transform: translate(-50%, 0);
}
.cid-tsw02lvgot span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tsw02lvgot .card {
    margin-bottom: 2rem;
  }
  .cid-tsw02lvgot .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tsw02lvgot .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-tsw02lvgot .icon-box::before {
    top: 114%;
  }
}
.cid-tsw02lvgot .mbr-text,
.cid-tsw02lvgot .mbr-section-btn {
  text-align: left;
}
.cid-tsw02lvgot .icon-title {
  color: #153f67;
}
.cid-tqxuGMbf2N {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #153f67;
}
.cid-tqxuGMbf2N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqxuGMbf2N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqxuGMbf2N .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqcN1FiWYL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #153f67;
}
.cid-tqcN1FiWYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqcN1FiWYL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqcN1FiWYL .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tqcN1FiWYL .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tqcN1FiWYL .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tqcN1FiWYL .mbr-text,
.cid-tqcN1FiWYL .mbr-section-btn {
  color: #ffffff;
}
.cid-tqcTg7O8UA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqcTg7O8UA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqcTg7O8UA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqcTg7O8UA .mbr-section-subtitle {
  text-align: center;
  color: #153f67;
}
.cid-tFxSNJOw1S {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFxSPfgfg1 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFxSPfgfg1 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tFxSPfgfg1 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tFxSPfgfg1 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #153f67;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tqnL1bbPtd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #153f67;
}
.cid-tqnL1bbPtd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnL1bbPtd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnL1bbPtd .mbr-section-title {
  color: #ffffff;
}
.cid-tqnL1bbPtd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tssVFlMiyu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tssVFlMiyu img,
.cid-tssVFlMiyu .item-img {
  width: 100%;
}
.cid-tssVFlMiyu .item:focus,
.cid-tssVFlMiyu span:focus {
  outline: none;
}
.cid-tssVFlMiyu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tssVFlMiyu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tssVFlMiyu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tssVFlMiyu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tssVFlMiyu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tssVFlMiyu .mbr-section-title {
  color: #007953;
}
.cid-tssVFlMiyu .mbr-text,
.cid-tssVFlMiyu .mbr-section-btn {
  text-align: left;
}
.cid-tssVFlMiyu .item-title {
  text-align: left;
}
.cid-tssVFlMiyu .item-subtitle {
  text-align: left;
}
.cid-tqrhu0gm84 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqrhu0gm84 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqrhu0gm84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tqrhu0gm84 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqrhu0gm84 .row {
  flex-direction: row-reverse;
}
.cid-tqrhu0gm84 img {
  width: 100%;
}
.cid-tssVGp0TmX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tssVGp0TmX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssVGp0TmX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tssVGp0TmX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tssVGp0TmX .row {
  flex-direction: row-reverse;
}
.cid-tssVGp0TmX img {
  width: 100%;
}
.cid-tqflFEDtI2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #153f67;
}
.cid-tqflFEDtI2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqflFEDtI2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqflFEDtI2 .mbr-section-title {
  color: #ffffff;
}
.cid-tqflFEDtI2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tqfm5xRnBz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqfm5xRnBz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqfm5xRnBz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqfm5xRnBz .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #232323;
  margin-left: 1rem;
}
.cid-tqfm5xRnBz .panel-group {
  border: none;
}
.cid-tqfm5xRnBz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tqfm5xRnBz .panel-body,
.cid-tqfm5xRnBz .card-header {
  padding: 1rem 0;
}
.cid-tqfm5xRnBz .panel-title-edit {
  color: #000000;
}
.cid-tqfm5xRnBz .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tqfm5xRnBz H3 {
  color: #153f67;
}
.cid-tuoxJcjTtm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #153f67;
}
.cid-tuoxJcjTtm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuoxJcjTtm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuoxJcjTtm .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tuoxJcjTtm .card {
    margin-bottom: 2rem!important;
  }
  .cid-tuoxJcjTtm .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tuoxJcjTtm .link-wrap {
    align-items: center;
  }
}
.cid-tuoxJcjTtm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tuoxJcjTtm .card-title,
.cid-tuoxJcjTtm .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-tuoxJcjTtm .mbr-text,
.cid-tuoxJcjTtm .link-wrap,
.cid-tuoxJcjTtm .mbr-section-btn {
  text-align: center;
  color: #e6c63b;
}
.cid-tqfoBcc411 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqfoBcc411 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqfoBcc411 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqfoBcc411 .mbr-section-title {
  color: #153f67;
}
.cid-tqfpxRmYYu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqfpxRmYYu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqfpxRmYYu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tqfpxRmYYu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqfpxRmYYu .row {
  flex-direction: row-reverse;
}
.cid-tqfpxRmYYu img {
  width: 100%;
}
.cid-tqfro7vksZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqfro7vksZ .mbr-section-subtitle {
  color: #153f67;
}
.cid-tqfrQHxbT5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqfrQHxbT5 .mbr-section-subtitle {
  color: #153f67;
}
.cid-tqfrOVf7pB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqfrOVf7pB .mbr-section-subtitle {
  color: #153f67;
}
.cid-tqgMapmACO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #153f67;
}
.cid-tqgMapmACO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgMapmACO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgMapmACO .mbr-section-title,
.cid-tqgMapmACO .mbr-section-subtitle {
  text-align: center;
}
.cid-tqgMapmACO .cost {
  word-break: normal;
}
.cid-tqgMapmACO .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #153f67;
}
.cid-tqgMapmACO .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tqgMapmACO .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tqgMapmACO .card-wrapper {
    padding: 1rem;
  }
}
.cid-tqgMapmACO P {
  text-align: left;
  color: #ffffff;
}
.cid-tqfzxv0SGd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tkMUx10b5L .navbar-dropdown {
  position: relative !important;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkMUx10b5L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkMUx10b5L .dropdown-item:hover,
.cid-tkMUx10b5L .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-tkMUx10b5L .dropdown-item:hover span {
  color: white;
}
.cid-tkMUx10b5L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkMUx10b5L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkMUx10b5L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkMUx10b5L .nav-link {
  position: relative;
}
.cid-tkMUx10b5L .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tkMUx10b5L .container {
    flex-wrap: nowrap;
  }
}
.cid-tkMUx10b5L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkMUx10b5L .dropdown-menu,
.cid-tkMUx10b5L .navbar.opened {
  background: #153f67 !important;
}
.cid-tkMUx10b5L .nav-item:focus,
.cid-tkMUx10b5L .nav-link:focus {
  outline: none;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkMUx10b5L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkMUx10b5L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkMUx10b5L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #153f67;
}
.cid-tkMUx10b5L .navbar.opened {
  transition: all 0.3s;
}
.cid-tkMUx10b5L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkMUx10b5L .navbar .navbar-logo img {
  width: auto;
}
.cid-tkMUx10b5L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkMUx10b5L .navbar.collapsed {
  justify-content: center;
}
.cid-tkMUx10b5L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkMUx10b5L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkMUx10b5L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkMUx10b5L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkMUx10b5L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkMUx10b5L .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-tkMUx10b5L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkMUx10b5L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkMUx10b5L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkMUx10b5L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkMUx10b5L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tkMUx10b5L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tkMUx10b5L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkMUx10b5L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkMUx10b5L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkMUx10b5L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkMUx10b5L .dropdown-item.active,
.cid-tkMUx10b5L .dropdown-item:active {
  background-color: transparent;
}
.cid-tkMUx10b5L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkMUx10b5L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #153f67;
}
.cid-tkMUx10b5L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkMUx10b5L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkMUx10b5L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkMUx10b5L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkMUx10b5L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkMUx10b5L .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tkMUx10b5L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar {
    height: 70px;
  }
  .cid-tkMUx10b5L .navbar.opened {
    height: auto;
  }
  .cid-tkMUx10b5L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuorP5Wwm5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuorP5Wwm5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuorP5Wwm5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuorP5Wwm5 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tuorQNnlSG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuorWAk4vy {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuorWAk4vy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuorWAk4vy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuorWAk4vy .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuos1KdbDx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuorXc0hQ7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuorXc0hQ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuorXc0hQ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuorXc0hQ7 .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuos2JisKx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuorYadHW9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuorYadHW9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuorYadHW9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuorYadHW9 .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuos3dFCPS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuorYHyoHb {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuorYHyoHb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuorYHyoHb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuorYHyoHb .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuos3SOUVQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuorZbXVgc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuorZbXVgc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuorZbXVgc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuorZbXVgc .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuos4vMIXc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuos0Jo95k {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuos0Jo95k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuos0Jo95k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuos0Jo95k .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuos60ekCc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuorZDmjRF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuorZDmjRF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuorZDmjRF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuorZDmjRF .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuos6De8ge {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuos0g4C5Y {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuos0g4C5Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuos0g4C5Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuos0g4C5Y .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuos7depgW {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tqfzxv0SGd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tkMUx10b5L .navbar-dropdown {
  position: relative !important;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkMUx10b5L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkMUx10b5L .dropdown-item:hover,
.cid-tkMUx10b5L .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-tkMUx10b5L .dropdown-item:hover span {
  color: white;
}
.cid-tkMUx10b5L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkMUx10b5L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkMUx10b5L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkMUx10b5L .nav-link {
  position: relative;
}
.cid-tkMUx10b5L .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tkMUx10b5L .container {
    flex-wrap: nowrap;
  }
}
.cid-tkMUx10b5L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkMUx10b5L .dropdown-menu,
.cid-tkMUx10b5L .navbar.opened {
  background: #153f67 !important;
}
.cid-tkMUx10b5L .nav-item:focus,
.cid-tkMUx10b5L .nav-link:focus {
  outline: none;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkMUx10b5L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkMUx10b5L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkMUx10b5L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #153f67;
}
.cid-tkMUx10b5L .navbar.opened {
  transition: all 0.3s;
}
.cid-tkMUx10b5L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkMUx10b5L .navbar .navbar-logo img {
  width: auto;
}
.cid-tkMUx10b5L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkMUx10b5L .navbar.collapsed {
  justify-content: center;
}
.cid-tkMUx10b5L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkMUx10b5L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkMUx10b5L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkMUx10b5L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkMUx10b5L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkMUx10b5L .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-tkMUx10b5L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkMUx10b5L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkMUx10b5L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkMUx10b5L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkMUx10b5L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tkMUx10b5L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tkMUx10b5L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkMUx10b5L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkMUx10b5L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkMUx10b5L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkMUx10b5L .dropdown-item.active,
.cid-tkMUx10b5L .dropdown-item:active {
  background-color: transparent;
}
.cid-tkMUx10b5L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkMUx10b5L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #153f67;
}
.cid-tkMUx10b5L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkMUx10b5L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkMUx10b5L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkMUx10b5L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkMUx10b5L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkMUx10b5L .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tkMUx10b5L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar {
    height: 70px;
  }
  .cid-tkMUx10b5L .navbar.opened {
    height: auto;
  }
  .cid-tkMUx10b5L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuosSGlK0d {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuosSGlK0d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuosSGlK0d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuosSGlK0d .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tuosTbOJEF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tqfzxv0SGd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tkMUx10b5L .navbar-dropdown {
  position: relative !important;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkMUx10b5L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkMUx10b5L .dropdown-item:hover,
.cid-tkMUx10b5L .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-tkMUx10b5L .dropdown-item:hover span {
  color: white;
}
.cid-tkMUx10b5L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkMUx10b5L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkMUx10b5L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkMUx10b5L .nav-link {
  position: relative;
}
.cid-tkMUx10b5L .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tkMUx10b5L .container {
    flex-wrap: nowrap;
  }
}
.cid-tkMUx10b5L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkMUx10b5L .dropdown-menu,
.cid-tkMUx10b5L .navbar.opened {
  background: #153f67 !important;
}
.cid-tkMUx10b5L .nav-item:focus,
.cid-tkMUx10b5L .nav-link:focus {
  outline: none;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkMUx10b5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkMUx10b5L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkMUx10b5L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkMUx10b5L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #153f67;
}
.cid-tkMUx10b5L .navbar.opened {
  transition: all 0.3s;
}
.cid-tkMUx10b5L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkMUx10b5L .navbar .navbar-logo img {
  width: auto;
}
.cid-tkMUx10b5L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkMUx10b5L .navbar.collapsed {
  justify-content: center;
}
.cid-tkMUx10b5L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkMUx10b5L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkMUx10b5L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkMUx10b5L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkMUx10b5L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkMUx10b5L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkMUx10b5L .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-tkMUx10b5L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkMUx10b5L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkMUx10b5L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkMUx10b5L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkMUx10b5L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkMUx10b5L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tkMUx10b5L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tkMUx10b5L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkMUx10b5L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkMUx10b5L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkMUx10b5L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkMUx10b5L .dropdown-item.active,
.cid-tkMUx10b5L .dropdown-item:active {
  background-color: transparent;
}
.cid-tkMUx10b5L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkMUx10b5L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkMUx10b5L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #153f67;
}
.cid-tkMUx10b5L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkMUx10b5L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkMUx10b5L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkMUx10b5L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkMUx10b5L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkMUx10b5L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkMUx10b5L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkMUx10b5L .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tkMUx10b5L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkMUx10b5L .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-tkMUx10b5L .navbar {
    height: 70px;
  }
  .cid-tkMUx10b5L .navbar.opened {
    height: auto;
  }
  .cid-tkMUx10b5L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuotc8vj8y {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuotc8vj8y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuotc8vj8y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuotc8vj8y .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tuotdK0gyA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuotgvcbGp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuotgvcbGp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuotgvcbGp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuotgvcbGp .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuotkAp0ky {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuotgVxT30 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuotgVxT30 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuotgVxT30 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuotgVxT30 .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuotl4y8Rt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuotiDr7VZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuotiDr7VZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuotiDr7VZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuotiDr7VZ .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuotm9at5L {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuotj3zrUs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuotj3zrUs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuotj3zrUs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuotj3zrUs .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuotlzZWd3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuothl47rP {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuothl47rP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuothl47rP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuothl47rP .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuotmKlshQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuotjrwGo1 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuotjrwGo1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuotjrwGo1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuotjrwGo1 .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuotnGWPzk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuothNHUTH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuothNHUTH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuothNHUTH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuothNHUTH .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuotn5IVKW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuotjTMIDQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tuotjTMIDQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuotjTMIDQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuotjTMIDQ .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tuotojc6BD {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tqfzxv0SGd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
