.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'DVSR1BTT';
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #bed3f9 !important;
}
.bg-success {
  background-color: #2299aa !important;
}
.bg-info {
  background-color: #4479d9 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #e43f3f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bed3f9 !important;
  border-color: #bed3f9 !important;
  color: #1046a8 !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: #6f9df2 !important;
  border-color: #6f9df2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #1046a8 !important;
  background-color: #6f9df2 !important;
  border-color: #6f9df2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-info,
.btn-info:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #2299aa !important;
  border-color: #2299aa !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: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !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: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !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: #bed3f9;
  color: #bed3f9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #6f9df2 !important;
  background-color: transparent!important;
  border-color: #6f9df2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #1046a8 !important;
  background-color: #bed3f9 !important;
  border-color: #bed3f9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #4479d9;
  color: #4479d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #2299aa;
  color: #2299aa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #145862 !important;
  background-color: transparent!important;
  border-color: #145862 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #2299aa !important;
  border-color: #2299aa !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: #e43f3f;
  color: #e43f3f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #bed3f9 !important;
}
.text-secondary {
  color: #bbbbbb !important;
}
.text-success {
  color: #2299aa !important;
}
.text-info {
  color: #4479d9 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #e43f3f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #6194f0 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #888888 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #114c55 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1f4a98 !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: #a61717 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bed3f9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4479d9;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #e43f3f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bed3f9;
  border-color: #bed3f9;
  color: #1250c0;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #bed3f9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #6ad2e1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #eef2fb;
}
.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: #fdf2f2;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'DVSR1BTT';
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.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: #bed3f9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DVSR1BTT';
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #bed3f9;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bed3f9;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bed3f9;
}
.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: #bed3f9;
  border-bottom-color: #bed3f9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bed3f9 !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: #bbbbbb !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='%23bed3f9' %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-t0JXBCH77M .navbar-dropdown {
  position: relative !important;
}
.cid-t0JXBCH77M .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-t0JXBCH77M .dropdown-menu {
  padding: 0;
}
.cid-t0JXBCH77M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0JXBCH77M .dropdown-item:hover,
.cid-t0JXBCH77M .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t0JXBCH77M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t0JXBCH77M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0JXBCH77M .nav-link {
  position: relative;
}
.cid-t0JXBCH77M .container {
  display: flex;
  margin: auto;
}
.cid-t0JXBCH77M .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t0JXBCH77M .navbar-caption {
  padding-right: 4rem;
}
.cid-t0JXBCH77M .dropdown-menu,
.cid-t0JXBCH77M .navbar.opened {
  background: #ffffff !important;
}
.cid-t0JXBCH77M .nav-item:focus,
.cid-t0JXBCH77M .nav-link:focus {
  outline: none;
}
.cid-t0JXBCH77M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0JXBCH77M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0JXBCH77M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0JXBCH77M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0JXBCH77M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0JXBCH77M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0JXBCH77M .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t0JXBCH77M .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0JXBCH77M .navbar.opened {
  transition: all .3s;
}
.cid-t0JXBCH77M .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t0JXBCH77M .navbar .navbar-logo img {
  width: auto;
}
.cid-t0JXBCH77M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0JXBCH77M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0JXBCH77M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0JXBCH77M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t0JXBCH77M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0JXBCH77M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0JXBCH77M .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: 55%;
}
.cid-t0JXBCH77M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0JXBCH77M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t0JXBCH77M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t0JXBCH77M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0JXBCH77M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0JXBCH77M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0JXBCH77M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0JXBCH77M .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: 55%;
  }
  .cid-t0JXBCH77M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t0JXBCH77M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0JXBCH77M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0JXBCH77M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0JXBCH77M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0JXBCH77M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t0JXBCH77M .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0JXBCH77M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0JXBCH77M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0JXBCH77M .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0JXBCH77M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0JXBCH77M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0JXBCH77M .dropdown-item.active,
.cid-t0JXBCH77M .dropdown-item:active {
  background-color: transparent;
}
.cid-t0JXBCH77M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0JXBCH77M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0JXBCH77M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0JXBCH77M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0JXBCH77M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0JXBCH77M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0JXBCH77M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0JXBCH77M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0JXBCH77M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t0JXBCH77M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t0JXBCH77M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t0JXBCH77M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t0JXBCH77M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t0JXBCH77M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t0JXBCH77M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0JXBCH77M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t0JXBCH77M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t0JXBCH77M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0JXBCH77M .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t0JXBCH77M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0JXBCH77M .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-t0JXBCH77M .navbar {
    height: 77px;
  }
  .cid-t0JXBCH77M .navbar.opened {
    height: auto;
  }
  .cid-t0JXBCH77M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8gk6iBfCB .modal-body .close {
  background: #1b1b1b;
}
.cid-t8gk6iBfCB .modal-body .close span {
  font-style: normal;
}
.cid-t8gk6iBfCB .carousel-inner > .active,
.cid-t8gk6iBfCB .carousel-inner > .next,
.cid-t8gk6iBfCB .carousel-inner > .prev {
  display: flex;
}
.cid-t8gk6iBfCB .carousel-control .icon-next,
.cid-t8gk6iBfCB .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8gk6iBfCB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8gk6iBfCB .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gk6iBfCB .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8gk6iBfCB .boxed-slider > div {
  position: relative;
}
.cid-t8gk6iBfCB .container img {
  width: 100%;
}
.cid-t8gk6iBfCB .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8gk6iBfCB .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gk6iBfCB .mbr-table-cell {
  padding: 0;
}
.cid-t8gk6iBfCB .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8gk6iBfCB .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t8gk6iBfCB .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gk6iBfCB .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8gk6iBfCB .carousel-item.active.right,
.cid-t8gk6iBfCB .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gk6iBfCB .carousel-item.active.left,
.cid-t8gk6iBfCB .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gk6iBfCB .carousel-item.active,
.cid-t8gk6iBfCB .carousel-item.next.left,
.cid-t8gk6iBfCB .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8gk6iBfCB .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-t8gk6iBfCB .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8gk6iBfCB .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8gk6iBfCB .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-t8gk6iBfCB .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8gk6iBfCB .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8gk6iBfCB .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t8gk6iBfCB .mbr-slider .carousel-indicators li.active,
.cid-t8gk6iBfCB .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t8gk6iBfCB .mbr-slider .carousel-indicators li::after,
.cid-t8gk6iBfCB .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8gk6iBfCB .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8gk6iBfCB .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8gk6iBfCB .mbr-slider > .container img {
  width: 100%;
}
.cid-t8gk6iBfCB .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8gk6iBfCB .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8gk6iBfCB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gk6iBfCB .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gk6iBfCB .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8gk6iBfCB .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8gk6iBfCB .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8gk6iBfCB .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8gk6iBfCB .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8gk6iBfCB .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gk6iBfCB .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8gk6iBfCB .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8gk6iBfCB .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t0JXBEOwbs {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0JXBEOwbs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t0JXBEOwbs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0JXBEOwbs .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0JXBEOwbs .mbr-section-title {
  color: #47b5ed;
  text-align: center;
}
.cid-t0JXBEOwbs .mbr-text {
  color: #8e8d8a;
}
.cid-t0JXBFOEGu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0JXBFOEGu .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t0JXBFOEGu .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t0JXBFOEGu .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-t0JXBFOEGu .mbr-text {
  color: #000000;
}
.cid-t0JXBGw3sZ {
  background-color: #ffffff;
}
.cid-t0JXBGw3sZ .mbr-text,
.cid-t0JXBGw3sZ .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-t0JXBGw3sZ .mbr-text,
  .cid-t0JXBGw3sZ .mbr-section-title {
    text-align: center;
  }
}
.cid-t0JXBGw3sZ a.btn {
  height: 100%;
  margin: 0;
}
.cid-t0JXBGw3sZ .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-t0JXBGw3sZ .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t0JXBGw3sZ .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t0JXBGw3sZ .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t0JXBGw3sZ .justify-content-center {
  align-items: center;
}
.cid-t0JXBGw3sZ H1 {
  color: #e43f3f;
}
.cid-t8VDgSmejP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VDgSmejP .content {
    text-align: center;
  }
  .cid-t8VDgSmejP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VDgSmejP .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VDgSmejP .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VDgSmejP .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VDgSmejP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VDgSmejP .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VDgSmejP .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VDgSmejP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VDgSmejP .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VDgSmejP .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VDgSmejP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VDgSmejP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0JXAdg2ms .navbar-dropdown {
  position: relative !important;
}
.cid-t0JXAdg2ms .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-t0JXAdg2ms .dropdown-menu {
  padding: 0;
}
.cid-t0JXAdg2ms .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0JXAdg2ms .dropdown-item:hover,
.cid-t0JXAdg2ms .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t0JXAdg2ms .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t0JXAdg2ms .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0JXAdg2ms .nav-link {
  position: relative;
}
.cid-t0JXAdg2ms .container {
  display: flex;
  margin: auto;
}
.cid-t0JXAdg2ms .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t0JXAdg2ms .navbar-caption {
  padding-right: 4rem;
}
.cid-t0JXAdg2ms .dropdown-menu,
.cid-t0JXAdg2ms .navbar.opened {
  background: #ffffff !important;
}
.cid-t0JXAdg2ms .nav-item:focus,
.cid-t0JXAdg2ms .nav-link:focus {
  outline: none;
}
.cid-t0JXAdg2ms .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0JXAdg2ms .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0JXAdg2ms .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0JXAdg2ms .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0JXAdg2ms .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0JXAdg2ms .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0JXAdg2ms .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t0JXAdg2ms .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0JXAdg2ms .navbar.opened {
  transition: all .3s;
}
.cid-t0JXAdg2ms .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t0JXAdg2ms .navbar .navbar-logo img {
  width: auto;
}
.cid-t0JXAdg2ms .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0JXAdg2ms .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0JXAdg2ms .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0JXAdg2ms .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t0JXAdg2ms .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0JXAdg2ms .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0JXAdg2ms .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: 55%;
}
.cid-t0JXAdg2ms .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0JXAdg2ms .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t0JXAdg2ms .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t0JXAdg2ms .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0JXAdg2ms .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0JXAdg2ms .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0JXAdg2ms .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0JXAdg2ms .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: 55%;
  }
  .cid-t0JXAdg2ms .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t0JXAdg2ms .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0JXAdg2ms .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0JXAdg2ms .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0JXAdg2ms .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0JXAdg2ms .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t0JXAdg2ms .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0JXAdg2ms .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0JXAdg2ms .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0JXAdg2ms .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0JXAdg2ms .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0JXAdg2ms .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0JXAdg2ms .dropdown-item.active,
.cid-t0JXAdg2ms .dropdown-item:active {
  background-color: transparent;
}
.cid-t0JXAdg2ms .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0JXAdg2ms .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0JXAdg2ms .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0JXAdg2ms .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0JXAdg2ms .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0JXAdg2ms .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0JXAdg2ms ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0JXAdg2ms .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0JXAdg2ms button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t0JXAdg2ms button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t0JXAdg2ms button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t0JXAdg2ms button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t0JXAdg2ms button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t0JXAdg2ms button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t0JXAdg2ms nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0JXAdg2ms nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t0JXAdg2ms nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t0JXAdg2ms nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0JXAdg2ms .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t0JXAdg2ms a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0JXAdg2ms .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-t0JXAdg2ms .navbar {
    height: 77px;
  }
  .cid-t0JXAdg2ms .navbar.opened {
    height: auto;
  }
  .cid-t0JXAdg2ms .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8gk0HD5Xd .modal-body .close {
  background: #1b1b1b;
}
.cid-t8gk0HD5Xd .modal-body .close span {
  font-style: normal;
}
.cid-t8gk0HD5Xd .carousel-inner > .active,
.cid-t8gk0HD5Xd .carousel-inner > .next,
.cid-t8gk0HD5Xd .carousel-inner > .prev {
  display: flex;
}
.cid-t8gk0HD5Xd .carousel-control .icon-next,
.cid-t8gk0HD5Xd .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8gk0HD5Xd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8gk0HD5Xd .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gk0HD5Xd .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8gk0HD5Xd .boxed-slider > div {
  position: relative;
}
.cid-t8gk0HD5Xd .container img {
  width: 100%;
}
.cid-t8gk0HD5Xd .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8gk0HD5Xd .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gk0HD5Xd .mbr-table-cell {
  padding: 0;
}
.cid-t8gk0HD5Xd .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8gk0HD5Xd .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t8gk0HD5Xd .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gk0HD5Xd .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8gk0HD5Xd .carousel-item.active.right,
.cid-t8gk0HD5Xd .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gk0HD5Xd .carousel-item.active.left,
.cid-t8gk0HD5Xd .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gk0HD5Xd .carousel-item.active,
.cid-t8gk0HD5Xd .carousel-item.next.left,
.cid-t8gk0HD5Xd .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8gk0HD5Xd .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-t8gk0HD5Xd .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8gk0HD5Xd .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8gk0HD5Xd .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-t8gk0HD5Xd .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8gk0HD5Xd .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8gk0HD5Xd .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t8gk0HD5Xd .mbr-slider .carousel-indicators li.active,
.cid-t8gk0HD5Xd .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t8gk0HD5Xd .mbr-slider .carousel-indicators li::after,
.cid-t8gk0HD5Xd .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8gk0HD5Xd .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8gk0HD5Xd .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8gk0HD5Xd .mbr-slider > .container img {
  width: 100%;
}
.cid-t8gk0HD5Xd .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8gk0HD5Xd .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8gk0HD5Xd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gk0HD5Xd .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gk0HD5Xd .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8gk0HD5Xd .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8gk0HD5Xd .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8gk0HD5Xd .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8gk0HD5Xd .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8gk0HD5Xd .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gk0HD5Xd .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8gk0HD5Xd .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8gk0HD5Xd .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t0JXAgZhVq {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0JXAgZhVq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t0JXAgZhVq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0JXAgZhVq .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0JXAgZhVq .mbr-section-title {
  color: #47b5ed;
  text-align: center;
}
.cid-t0JXAgZhVq .mbr-text {
  color: #8e8d8a;
}
.cid-t0JXAipU9q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0JXAipU9q .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t0JXAipU9q .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t0JXAipU9q .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-t0JXAipU9q .mbr-text {
  color: #000000;
}
.cid-t0JXAjlfh1 {
  background-color: #ffffff;
}
.cid-t0JXAjlfh1 .mbr-text,
.cid-t0JXAjlfh1 .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-t0JXAjlfh1 .mbr-text,
  .cid-t0JXAjlfh1 .mbr-section-title {
    text-align: center;
  }
}
.cid-t0JXAjlfh1 a.btn {
  height: 100%;
  margin: 0;
}
.cid-t0JXAjlfh1 .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-t0JXAjlfh1 .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t0JXAjlfh1 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t0JXAjlfh1 .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t0JXAjlfh1 .justify-content-center {
  align-items: center;
}
.cid-t0JXAjlfh1 H1 {
  color: #e43f3f;
}
.cid-t8VDeBEjM2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VDeBEjM2 .content {
    text-align: center;
  }
  .cid-t8VDeBEjM2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VDeBEjM2 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VDeBEjM2 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VDeBEjM2 .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VDeBEjM2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VDeBEjM2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VDeBEjM2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VDeBEjM2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VDeBEjM2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VDeBEjM2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VDeBEjM2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VDeBEjM2 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0JXkCl1ba .navbar-dropdown {
  position: relative !important;
}
.cid-t0JXkCl1ba .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-t0JXkCl1ba .dropdown-menu {
  padding: 0;
}
.cid-t0JXkCl1ba .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0JXkCl1ba .dropdown-item:hover,
.cid-t0JXkCl1ba .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t0JXkCl1ba .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t0JXkCl1ba .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0JXkCl1ba .nav-link {
  position: relative;
}
.cid-t0JXkCl1ba .container {
  display: flex;
  margin: auto;
}
.cid-t0JXkCl1ba .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t0JXkCl1ba .navbar-caption {
  padding-right: 4rem;
}
.cid-t0JXkCl1ba .dropdown-menu,
.cid-t0JXkCl1ba .navbar.opened {
  background: #ffffff !important;
}
.cid-t0JXkCl1ba .nav-item:focus,
.cid-t0JXkCl1ba .nav-link:focus {
  outline: none;
}
.cid-t0JXkCl1ba .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0JXkCl1ba .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0JXkCl1ba .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0JXkCl1ba .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0JXkCl1ba .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0JXkCl1ba .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0JXkCl1ba .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t0JXkCl1ba .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0JXkCl1ba .navbar.opened {
  transition: all .3s;
}
.cid-t0JXkCl1ba .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t0JXkCl1ba .navbar .navbar-logo img {
  width: auto;
}
.cid-t0JXkCl1ba .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0JXkCl1ba .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0JXkCl1ba .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0JXkCl1ba .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t0JXkCl1ba .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0JXkCl1ba .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0JXkCl1ba .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: 55%;
}
.cid-t0JXkCl1ba .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0JXkCl1ba .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t0JXkCl1ba .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t0JXkCl1ba .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0JXkCl1ba .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0JXkCl1ba .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0JXkCl1ba .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0JXkCl1ba .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: 55%;
  }
  .cid-t0JXkCl1ba .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t0JXkCl1ba .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0JXkCl1ba .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0JXkCl1ba .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0JXkCl1ba .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0JXkCl1ba .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t0JXkCl1ba .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0JXkCl1ba .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0JXkCl1ba .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0JXkCl1ba .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0JXkCl1ba .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0JXkCl1ba .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0JXkCl1ba .dropdown-item.active,
.cid-t0JXkCl1ba .dropdown-item:active {
  background-color: transparent;
}
.cid-t0JXkCl1ba .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0JXkCl1ba .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0JXkCl1ba .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0JXkCl1ba .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0JXkCl1ba .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0JXkCl1ba .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0JXkCl1ba ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0JXkCl1ba .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0JXkCl1ba button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t0JXkCl1ba button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t0JXkCl1ba button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t0JXkCl1ba button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t0JXkCl1ba button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t0JXkCl1ba button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t0JXkCl1ba nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0JXkCl1ba nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t0JXkCl1ba nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t0JXkCl1ba nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0JXkCl1ba .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t0JXkCl1ba a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0JXkCl1ba .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-t0JXkCl1ba .navbar {
    height: 77px;
  }
  .cid-t0JXkCl1ba .navbar.opened {
    height: auto;
  }
  .cid-t0JXkCl1ba .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8gjWkOBOE .modal-body .close {
  background: #1b1b1b;
}
.cid-t8gjWkOBOE .modal-body .close span {
  font-style: normal;
}
.cid-t8gjWkOBOE .carousel-inner > .active,
.cid-t8gjWkOBOE .carousel-inner > .next,
.cid-t8gjWkOBOE .carousel-inner > .prev {
  display: flex;
}
.cid-t8gjWkOBOE .carousel-control .icon-next,
.cid-t8gjWkOBOE .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8gjWkOBOE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8gjWkOBOE .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gjWkOBOE .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8gjWkOBOE .boxed-slider > div {
  position: relative;
}
.cid-t8gjWkOBOE .container img {
  width: 100%;
}
.cid-t8gjWkOBOE .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8gjWkOBOE .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gjWkOBOE .mbr-table-cell {
  padding: 0;
}
.cid-t8gjWkOBOE .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8gjWkOBOE .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t8gjWkOBOE .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gjWkOBOE .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8gjWkOBOE .carousel-item.active.right,
.cid-t8gjWkOBOE .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gjWkOBOE .carousel-item.active.left,
.cid-t8gjWkOBOE .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gjWkOBOE .carousel-item.active,
.cid-t8gjWkOBOE .carousel-item.next.left,
.cid-t8gjWkOBOE .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8gjWkOBOE .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-t8gjWkOBOE .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8gjWkOBOE .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8gjWkOBOE .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-t8gjWkOBOE .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8gjWkOBOE .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8gjWkOBOE .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t8gjWkOBOE .mbr-slider .carousel-indicators li.active,
.cid-t8gjWkOBOE .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t8gjWkOBOE .mbr-slider .carousel-indicators li::after,
.cid-t8gjWkOBOE .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8gjWkOBOE .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8gjWkOBOE .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8gjWkOBOE .mbr-slider > .container img {
  width: 100%;
}
.cid-t8gjWkOBOE .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8gjWkOBOE .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8gjWkOBOE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gjWkOBOE .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gjWkOBOE .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8gjWkOBOE .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8gjWkOBOE .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8gjWkOBOE .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8gjWkOBOE .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8gjWkOBOE .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gjWkOBOE .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8gjWkOBOE .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8gjWkOBOE .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t0JXkEFDvC {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-t0JXkEFDvC .carousel {
  width: 100%;
}
.cid-t0JXkEFDvC .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-t0JXkEFDvC .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-t0JXkEFDvC .carousel-caption {
  bottom: 40px;
}
.cid-t0JXkEFDvC .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t0JXkEFDvC .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t0JXkEFDvC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-t0JXkEFDvC .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0JXkEFDvC .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t0JXkEFDvC .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t0JXkEFDvC .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t0JXkEFDvC .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t0JXkEFDvC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t0JXkEFDvC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t0JXkEFDvC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t0JXkEFDvC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t0JXkEFDvC .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t0JXkEFDvC .carousel-indicators li.active,
.cid-t0JXkEFDvC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t0JXkEFDvC .carousel-indicators li::after,
.cid-t0JXkEFDvC .carousel-indicators li::before {
  content: none;
}
.cid-t0JXkEFDvC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t0JXkEFDvC .carousel-indicators {
    display: none !important;
  }
}
.cid-t0JXkEFDvC H5 {
  color: #870b0b;
}
.cid-t0JXkHonip {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0JXkHonip .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t0JXkHonip img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0JXkHonip .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0JXkHonip .mbr-section-title {
  color: #47b5ed;
  text-align: center;
}
.cid-t0JXkHonip .mbr-text {
  color: #8e8d8a;
}
.cid-t0JXkIXUxb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0JXkIXUxb .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t0JXkIXUxb .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t0JXkIXUxb .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-t0JXkIXUxb .mbr-text {
  color: #000000;
}
.cid-t0JXkKhhQf {
  background-color: #eae7dc;
}
.cid-t0JXkKhhQf .mbr-text,
.cid-t0JXkKhhQf .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-t0JXkKhhQf .mbr-text,
  .cid-t0JXkKhhQf .mbr-section-title {
    text-align: center;
  }
}
.cid-t0JXkKhhQf a.btn {
  height: 100%;
  margin: 0;
}
.cid-t0JXkKhhQf .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-t0JXkKhhQf .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t0JXkKhhQf .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t0JXkKhhQf .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t0JXkKhhQf .justify-content-center {
  align-items: center;
}
.cid-t0JXkKhhQf H1 {
  color: #e43f3f;
}
.cid-t8VDbeguHp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VDbeguHp .content {
    text-align: center;
  }
  .cid-t8VDbeguHp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VDbeguHp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VDbeguHp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VDbeguHp .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VDbeguHp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VDbeguHp .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VDbeguHp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VDbeguHp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VDbeguHp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VDbeguHp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VDbeguHp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VDbeguHp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0HA19mTjB .navbar-dropdown {
  position: relative !important;
}
.cid-t0HA19mTjB .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-t0HA19mTjB .dropdown-menu {
  padding: 0;
}
.cid-t0HA19mTjB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0HA19mTjB .dropdown-item:hover,
.cid-t0HA19mTjB .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t0HA19mTjB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t0HA19mTjB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0HA19mTjB .nav-link {
  position: relative;
}
.cid-t0HA19mTjB .container {
  display: flex;
  margin: auto;
}
.cid-t0HA19mTjB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t0HA19mTjB .navbar-caption {
  padding-right: 4rem;
}
.cid-t0HA19mTjB .dropdown-menu,
.cid-t0HA19mTjB .navbar.opened {
  background: #ffffff !important;
}
.cid-t0HA19mTjB .nav-item:focus,
.cid-t0HA19mTjB .nav-link:focus {
  outline: none;
}
.cid-t0HA19mTjB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0HA19mTjB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0HA19mTjB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0HA19mTjB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0HA19mTjB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0HA19mTjB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0HA19mTjB .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t0HA19mTjB .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0HA19mTjB .navbar.opened {
  transition: all .3s;
}
.cid-t0HA19mTjB .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t0HA19mTjB .navbar .navbar-logo img {
  width: auto;
}
.cid-t0HA19mTjB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0HA19mTjB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0HA19mTjB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0HA19mTjB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t0HA19mTjB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0HA19mTjB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0HA19mTjB .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: 55%;
}
.cid-t0HA19mTjB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0HA19mTjB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t0HA19mTjB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t0HA19mTjB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0HA19mTjB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0HA19mTjB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0HA19mTjB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0HA19mTjB .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: 55%;
  }
  .cid-t0HA19mTjB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t0HA19mTjB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0HA19mTjB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0HA19mTjB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0HA19mTjB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0HA19mTjB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t0HA19mTjB .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0HA19mTjB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0HA19mTjB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0HA19mTjB .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0HA19mTjB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0HA19mTjB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0HA19mTjB .dropdown-item.active,
.cid-t0HA19mTjB .dropdown-item:active {
  background-color: transparent;
}
.cid-t0HA19mTjB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0HA19mTjB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0HA19mTjB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0HA19mTjB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0HA19mTjB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0HA19mTjB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0HA19mTjB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0HA19mTjB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0HA19mTjB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t0HA19mTjB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t0HA19mTjB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t0HA19mTjB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t0HA19mTjB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t0HA19mTjB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t0HA19mTjB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0HA19mTjB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t0HA19mTjB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t0HA19mTjB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0HA19mTjB .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t0HA19mTjB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0HA19mTjB .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-t0HA19mTjB .navbar {
    height: 77px;
  }
  .cid-t0HA19mTjB .navbar.opened {
    height: auto;
  }
  .cid-t0HA19mTjB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5gD5k4JCn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t5gD5k4JCn .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t1LYQhAX1y {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-t1LYQhAX1y .img-wrapper {
  text-align: center;
}
.cid-t1LYQhAX1y img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-t1LYQhAX1y .row {
  align-items: flex-start;
}
.cid-t1LYQhAX1y .card-wrapper {
  border-radius: 4px;
  background: #edf5e1;
}
@media (max-width: 992px) {
  .cid-t1LYQhAX1y .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-t1LYQhAX1y .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1LYQhAX1y .card-wrapper {
    padding: 1rem;
  }
}
.cid-t1LYQhAX1y .card-title {
  color: #05386b;
}
.cid-t1LYQhAX1y .mbr-text,
.cid-t1LYQhAX1y .mbr-section-btn {
  color: #05386b;
}
.cid-t1LYP15AtH {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #edf5e1;
}
.cid-t1LYP15AtH .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-t1LYP15AtH .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t1LYP15AtH .img1 {
  background: #05386b;
}
.cid-t1LYP15AtH .img2 {
  background: #05386b;
}
.cid-t1LYP15AtH .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-t1LYP15AtH .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-t1LYP15AtH .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-t1LYP15AtH .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1LYP15AtH .card-wrapper {
    flex-direction: column;
  }
  .cid-t1LYP15AtH .card-box {
    padding: 1rem;
  }
  .cid-t1LYP15AtH .card-box,
  .cid-t1LYP15AtH .img-wrapper {
    width: 100%;
  }
  .cid-t1LYP15AtH .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-t1LYP15AtH .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-t1LYP15AtH .card-subtitle {
  color: #05386b;
}
.cid-t1LYP15AtH .mbr-text,
.cid-t1LYP15AtH .link-wrap {
  color: #555555;
}
.cid-t1LYP15AtH .card-title,
.cid-t1LYP15AtH .card-box {
  color: #05386b;
}
.cid-t1LYP15AtH .mbr-text,
.cid-t1LYP15AtH .mbr-section-btn {
  color: #555555;
}
.cid-t0HA1fx6uM {
  background-color: #ffffff;
}
.cid-t0HA1fx6uM .mbr-text,
.cid-t0HA1fx6uM .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-t0HA1fx6uM .mbr-text,
  .cid-t0HA1fx6uM .mbr-section-title {
    text-align: center;
  }
}
.cid-t0HA1fx6uM a.btn {
  height: 100%;
  margin: 0;
}
.cid-t0HA1fx6uM .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-t0HA1fx6uM .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t0HA1fx6uM .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t0HA1fx6uM .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t0HA1fx6uM .justify-content-center {
  align-items: center;
}
.cid-t0HA1fx6uM H1 {
  color: #e43f3f;
}
.cid-t0HA1fx6uM P {
  text-align: center;
}
.cid-t8VDrYmHLK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VDrYmHLK .content {
    text-align: center;
  }
  .cid-t8VDrYmHLK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VDrYmHLK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VDrYmHLK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VDrYmHLK .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VDrYmHLK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VDrYmHLK .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VDrYmHLK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VDrYmHLK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VDrYmHLK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VDrYmHLK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VDrYmHLK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VDrYmHLK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0CHzLdUob .navbar-dropdown {
  position: relative !important;
}
.cid-t0CHzLdUob .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-t0CHzLdUob .dropdown-menu {
  padding: 0;
}
.cid-t0CHzLdUob .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0CHzLdUob .dropdown-item:hover,
.cid-t0CHzLdUob .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t0CHzLdUob .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t0CHzLdUob .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0CHzLdUob .nav-link {
  position: relative;
}
.cid-t0CHzLdUob .container {
  display: flex;
  margin: auto;
}
.cid-t0CHzLdUob .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t0CHzLdUob .navbar-caption {
  padding-right: 4rem;
}
.cid-t0CHzLdUob .dropdown-menu,
.cid-t0CHzLdUob .navbar.opened {
  background: #ffffff !important;
}
.cid-t0CHzLdUob .nav-item:focus,
.cid-t0CHzLdUob .nav-link:focus {
  outline: none;
}
.cid-t0CHzLdUob .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0CHzLdUob .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0CHzLdUob .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0CHzLdUob .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0CHzLdUob .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0CHzLdUob .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0CHzLdUob .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t0CHzLdUob .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0CHzLdUob .navbar.opened {
  transition: all .3s;
}
.cid-t0CHzLdUob .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t0CHzLdUob .navbar .navbar-logo img {
  width: auto;
}
.cid-t0CHzLdUob .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0CHzLdUob .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0CHzLdUob .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0CHzLdUob .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t0CHzLdUob .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0CHzLdUob .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0CHzLdUob .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: 55%;
}
.cid-t0CHzLdUob .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0CHzLdUob .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t0CHzLdUob .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t0CHzLdUob .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0CHzLdUob .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0CHzLdUob .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0CHzLdUob .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0CHzLdUob .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: 55%;
  }
  .cid-t0CHzLdUob .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t0CHzLdUob .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0CHzLdUob .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0CHzLdUob .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0CHzLdUob .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0CHzLdUob .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t0CHzLdUob .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0CHzLdUob .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0CHzLdUob .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0CHzLdUob .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0CHzLdUob .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0CHzLdUob .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0CHzLdUob .dropdown-item.active,
.cid-t0CHzLdUob .dropdown-item:active {
  background-color: transparent;
}
.cid-t0CHzLdUob .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0CHzLdUob .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0CHzLdUob .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0CHzLdUob .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0CHzLdUob .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0CHzLdUob .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0CHzLdUob ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0CHzLdUob .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0CHzLdUob button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t0CHzLdUob button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t0CHzLdUob button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t0CHzLdUob button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t0CHzLdUob button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t0CHzLdUob button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t0CHzLdUob nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0CHzLdUob nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t0CHzLdUob nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t0CHzLdUob nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0CHzLdUob .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t0CHzLdUob a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0CHzLdUob .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-t0CHzLdUob .navbar {
    height: 77px;
  }
  .cid-t0CHzLdUob .navbar.opened {
    height: auto;
  }
  .cid-t0CHzLdUob .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8gjLd7Fya .modal-body .close {
  background: #1b1b1b;
}
.cid-t8gjLd7Fya .modal-body .close span {
  font-style: normal;
}
.cid-t8gjLd7Fya .carousel-inner > .active,
.cid-t8gjLd7Fya .carousel-inner > .next,
.cid-t8gjLd7Fya .carousel-inner > .prev {
  display: flex;
}
.cid-t8gjLd7Fya .carousel-control .icon-next,
.cid-t8gjLd7Fya .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8gjLd7Fya .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8gjLd7Fya .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gjLd7Fya .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8gjLd7Fya .boxed-slider > div {
  position: relative;
}
.cid-t8gjLd7Fya .container img {
  width: 100%;
}
.cid-t8gjLd7Fya .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8gjLd7Fya .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gjLd7Fya .mbr-table-cell {
  padding: 0;
}
.cid-t8gjLd7Fya .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8gjLd7Fya .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t8gjLd7Fya .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gjLd7Fya .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8gjLd7Fya .carousel-item.active.right,
.cid-t8gjLd7Fya .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gjLd7Fya .carousel-item.active.left,
.cid-t8gjLd7Fya .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gjLd7Fya .carousel-item.active,
.cid-t8gjLd7Fya .carousel-item.next.left,
.cid-t8gjLd7Fya .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8gjLd7Fya .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-t8gjLd7Fya .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8gjLd7Fya .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8gjLd7Fya .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-t8gjLd7Fya .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8gjLd7Fya .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8gjLd7Fya .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t8gjLd7Fya .mbr-slider .carousel-indicators li.active,
.cid-t8gjLd7Fya .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t8gjLd7Fya .mbr-slider .carousel-indicators li::after,
.cid-t8gjLd7Fya .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8gjLd7Fya .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8gjLd7Fya .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8gjLd7Fya .mbr-slider > .container img {
  width: 100%;
}
.cid-t8gjLd7Fya .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8gjLd7Fya .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8gjLd7Fya .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gjLd7Fya .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gjLd7Fya .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8gjLd7Fya .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8gjLd7Fya .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8gjLd7Fya .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8gjLd7Fya .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8gjLd7Fya .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gjLd7Fya .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8gjLd7Fya .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8gjLd7Fya .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t0CHQIVCXk {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0CHQIVCXk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t0CHQIVCXk img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0CHQIVCXk .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0CHQIVCXk .mbr-section-title {
  color: #47b5ed;
  text-align: center;
}
.cid-t0CHQIVCXk .mbr-text {
  color: #8e8d8a;
}
.cid-t0CWCWxVkK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0CWCWxVkK .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t0CWCWxVkK .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t0CWCWxVkK .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-t0CWCWxVkK .mbr-text {
  color: #000000;
}
.cid-t0CHzYqxMk {
  background-color: #ffffff;
}
.cid-t0CHzYqxMk .mbr-text,
.cid-t0CHzYqxMk .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-t0CHzYqxMk .mbr-text,
  .cid-t0CHzYqxMk .mbr-section-title {
    text-align: center;
  }
}
.cid-t0CHzYqxMk a.btn {
  height: 100%;
  margin: 0;
}
.cid-t0CHzYqxMk .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-t0CHzYqxMk .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t0CHzYqxMk .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t0CHzYqxMk .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t0CHzYqxMk .justify-content-center {
  align-items: center;
}
.cid-t0CHzYqxMk H1 {
  color: #e43f3f;
}
.cid-t8VD0lioJg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VD0lioJg .content {
    text-align: center;
  }
  .cid-t8VD0lioJg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VD0lioJg .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VD0lioJg .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VD0lioJg .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VD0lioJg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VD0lioJg .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VD0lioJg .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VD0lioJg .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VD0lioJg .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VD0lioJg .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VD0lioJg .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VD0lioJg .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0JZCagoiH .navbar-dropdown {
  position: relative !important;
}
.cid-t0JZCagoiH .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-t0JZCagoiH .dropdown-menu {
  padding: 0;
}
.cid-t0JZCagoiH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0JZCagoiH .dropdown-item:hover,
.cid-t0JZCagoiH .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t0JZCagoiH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t0JZCagoiH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0JZCagoiH .nav-link {
  position: relative;
}
.cid-t0JZCagoiH .container {
  display: flex;
  margin: auto;
}
.cid-t0JZCagoiH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t0JZCagoiH .navbar-caption {
  padding-right: 4rem;
}
.cid-t0JZCagoiH .dropdown-menu,
.cid-t0JZCagoiH .navbar.opened {
  background: #ffffff !important;
}
.cid-t0JZCagoiH .nav-item:focus,
.cid-t0JZCagoiH .nav-link:focus {
  outline: none;
}
.cid-t0JZCagoiH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0JZCagoiH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0JZCagoiH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0JZCagoiH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0JZCagoiH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0JZCagoiH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0JZCagoiH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t0JZCagoiH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0JZCagoiH .navbar.opened {
  transition: all .3s;
}
.cid-t0JZCagoiH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t0JZCagoiH .navbar .navbar-logo img {
  width: auto;
}
.cid-t0JZCagoiH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0JZCagoiH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0JZCagoiH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0JZCagoiH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t0JZCagoiH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0JZCagoiH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0JZCagoiH .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: 55%;
}
.cid-t0JZCagoiH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0JZCagoiH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t0JZCagoiH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t0JZCagoiH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0JZCagoiH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0JZCagoiH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0JZCagoiH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0JZCagoiH .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: 55%;
  }
  .cid-t0JZCagoiH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t0JZCagoiH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0JZCagoiH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0JZCagoiH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0JZCagoiH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0JZCagoiH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t0JZCagoiH .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0JZCagoiH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0JZCagoiH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0JZCagoiH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0JZCagoiH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0JZCagoiH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0JZCagoiH .dropdown-item.active,
.cid-t0JZCagoiH .dropdown-item:active {
  background-color: transparent;
}
.cid-t0JZCagoiH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0JZCagoiH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0JZCagoiH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0JZCagoiH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0JZCagoiH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0JZCagoiH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0JZCagoiH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0JZCagoiH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0JZCagoiH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t0JZCagoiH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t0JZCagoiH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t0JZCagoiH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t0JZCagoiH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t0JZCagoiH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t0JZCagoiH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0JZCagoiH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t0JZCagoiH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t0JZCagoiH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0JZCagoiH .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t0JZCagoiH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0JZCagoiH .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-t0JZCagoiH .navbar {
    height: 77px;
  }
  .cid-t0JZCagoiH .navbar.opened {
    height: auto;
  }
  .cid-t0JZCagoiH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0JZCbjwMx {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-t0JZCbjwMx .carousel {
  width: 100%;
}
.cid-t0JZCbjwMx .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-t0JZCbjwMx .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-t0JZCbjwMx .carousel-caption {
  bottom: 40px;
}
.cid-t0JZCbjwMx .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t0JZCbjwMx .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t0JZCbjwMx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-t0JZCbjwMx .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0JZCbjwMx .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t0JZCbjwMx .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t0JZCbjwMx .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t0JZCbjwMx .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t0JZCbjwMx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t0JZCbjwMx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t0JZCbjwMx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t0JZCbjwMx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t0JZCbjwMx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t0JZCbjwMx .carousel-indicators li.active,
.cid-t0JZCbjwMx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t0JZCbjwMx .carousel-indicators li::after,
.cid-t0JZCbjwMx .carousel-indicators li::before {
  content: none;
}
.cid-t0JZCbjwMx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t0JZCbjwMx .carousel-indicators {
    display: none !important;
  }
}
.cid-t0JZCbjwMx H5 {
  color: #ffffff;
}
.cid-t0JZCcCu1a {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0JZCcCu1a .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t0JZCcCu1a img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0JZCcCu1a .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0JZCcCu1a .mbr-section-title {
  color: #47b5ed;
  text-align: center;
}
.cid-t0JZCcCu1a .mbr-text {
  color: #8e8d8a;
}
.cid-t0JZCdBgyR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0JZCdBgyR .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t0JZCdBgyR .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t0JZCdBgyR .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-t0JZCdBgyR .mbr-text {
  color: #000000;
}
.cid-t0JZCemNNm {
  background-color: #ffffff;
}
.cid-t0JZCemNNm .mbr-text,
.cid-t0JZCemNNm .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-t0JZCemNNm .mbr-text,
  .cid-t0JZCemNNm .mbr-section-title {
    text-align: center;
  }
}
.cid-t0JZCemNNm a.btn {
  height: 100%;
  margin: 0;
}
.cid-t0JZCemNNm .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-t0JZCemNNm .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t0JZCemNNm .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t0JZCemNNm .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t0JZCemNNm .justify-content-center {
  align-items: center;
}
.cid-t0JZCemNNm H1 {
  color: #e43f3f;
}
.cid-t8VDljFMi2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VDljFMi2 .content {
    text-align: center;
  }
  .cid-t8VDljFMi2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VDljFMi2 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VDljFMi2 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VDljFMi2 .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VDljFMi2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VDljFMi2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VDljFMi2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VDljFMi2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VDljFMi2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VDljFMi2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VDljFMi2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VDljFMi2 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8gkIwUSeb .navbar-dropdown {
  position: relative !important;
}
.cid-t8gkIwUSeb .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-t8gkIwUSeb .dropdown-menu {
  padding: 0;
}
.cid-t8gkIwUSeb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8gkIwUSeb .dropdown-item:hover,
.cid-t8gkIwUSeb .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t8gkIwUSeb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t8gkIwUSeb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8gkIwUSeb .nav-link {
  position: relative;
}
.cid-t8gkIwUSeb .container {
  display: flex;
  margin: auto;
}
.cid-t8gkIwUSeb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t8gkIwUSeb .navbar-caption {
  padding-right: 4rem;
}
.cid-t8gkIwUSeb .dropdown-menu,
.cid-t8gkIwUSeb .navbar.opened {
  background: #ffffff !important;
}
.cid-t8gkIwUSeb .nav-item:focus,
.cid-t8gkIwUSeb .nav-link:focus {
  outline: none;
}
.cid-t8gkIwUSeb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8gkIwUSeb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8gkIwUSeb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t8gkIwUSeb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8gkIwUSeb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8gkIwUSeb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8gkIwUSeb .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t8gkIwUSeb .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8gkIwUSeb .navbar.opened {
  transition: all .3s;
}
.cid-t8gkIwUSeb .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t8gkIwUSeb .navbar .navbar-logo img {
  width: auto;
}
.cid-t8gkIwUSeb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8gkIwUSeb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8gkIwUSeb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8gkIwUSeb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t8gkIwUSeb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8gkIwUSeb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8gkIwUSeb .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: 55%;
}
.cid-t8gkIwUSeb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8gkIwUSeb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t8gkIwUSeb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t8gkIwUSeb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8gkIwUSeb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8gkIwUSeb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8gkIwUSeb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8gkIwUSeb .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: 55%;
  }
  .cid-t8gkIwUSeb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t8gkIwUSeb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8gkIwUSeb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8gkIwUSeb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8gkIwUSeb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8gkIwUSeb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t8gkIwUSeb .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8gkIwUSeb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t8gkIwUSeb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t8gkIwUSeb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t8gkIwUSeb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8gkIwUSeb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8gkIwUSeb .dropdown-item.active,
.cid-t8gkIwUSeb .dropdown-item:active {
  background-color: transparent;
}
.cid-t8gkIwUSeb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8gkIwUSeb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8gkIwUSeb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8gkIwUSeb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t8gkIwUSeb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8gkIwUSeb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8gkIwUSeb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8gkIwUSeb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8gkIwUSeb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t8gkIwUSeb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t8gkIwUSeb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8gkIwUSeb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8gkIwUSeb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8gkIwUSeb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8gkIwUSeb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8gkIwUSeb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8gkIwUSeb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8gkIwUSeb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8gkIwUSeb .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t8gkIwUSeb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8gkIwUSeb .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-t8gkIwUSeb .navbar {
    height: 77px;
  }
  .cid-t8gkIwUSeb .navbar.opened {
    height: auto;
  }
  .cid-t8gkIwUSeb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8gktNWB1Z .modal-body .close {
  background: #1b1b1b;
}
.cid-t8gktNWB1Z .modal-body .close span {
  font-style: normal;
}
.cid-t8gktNWB1Z .carousel-inner > .active,
.cid-t8gktNWB1Z .carousel-inner > .next,
.cid-t8gktNWB1Z .carousel-inner > .prev {
  display: flex;
}
.cid-t8gktNWB1Z .carousel-control .icon-next,
.cid-t8gktNWB1Z .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8gktNWB1Z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8gktNWB1Z .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gktNWB1Z .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8gktNWB1Z .boxed-slider > div {
  position: relative;
}
.cid-t8gktNWB1Z .container img {
  width: 100%;
}
.cid-t8gktNWB1Z .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8gktNWB1Z .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gktNWB1Z .mbr-table-cell {
  padding: 0;
}
.cid-t8gktNWB1Z .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8gktNWB1Z .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t8gktNWB1Z .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gktNWB1Z .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8gktNWB1Z .carousel-item.active.right,
.cid-t8gktNWB1Z .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gktNWB1Z .carousel-item.active.left,
.cid-t8gktNWB1Z .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gktNWB1Z .carousel-item.active,
.cid-t8gktNWB1Z .carousel-item.next.left,
.cid-t8gktNWB1Z .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8gktNWB1Z .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-t8gktNWB1Z .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8gktNWB1Z .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8gktNWB1Z .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-t8gktNWB1Z .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8gktNWB1Z .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8gktNWB1Z .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t8gktNWB1Z .mbr-slider .carousel-indicators li.active,
.cid-t8gktNWB1Z .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t8gktNWB1Z .mbr-slider .carousel-indicators li::after,
.cid-t8gktNWB1Z .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8gktNWB1Z .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8gktNWB1Z .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8gktNWB1Z .mbr-slider > .container img {
  width: 100%;
}
.cid-t8gktNWB1Z .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8gktNWB1Z .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8gktNWB1Z .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gktNWB1Z .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gktNWB1Z .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8gktNWB1Z .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8gktNWB1Z .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8gktNWB1Z .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8gktNWB1Z .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8gktNWB1Z .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gktNWB1Z .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8gktNWB1Z .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8gktNWB1Z .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t5gEkNMvcY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t5gEkNMvcY .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t5gFLV4n87 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5gFLV4n87 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t5gFLV4n87 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-t5gFLV4n87 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-t5gFLV4n87 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t5gFLV4n87 .mbr-section-title {
  color: #000000;
}
.cid-t5gFLV4n87 .mbr-section-subtitle {
  color: #000000;
}
.cid-t5gJ3lWOWQ {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t5gJ3lWOWQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-t5gJ3lWOWQ form {
    width: 50%;
  }
}
.cid-t5gJ3lWOWQ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-t5gJ3lWOWQ form .mbr-section-btn .btn {
  width: 100%;
}
.cid-t8VDv3b8sw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VDv3b8sw .content {
    text-align: center;
  }
  .cid-t8VDv3b8sw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VDv3b8sw .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VDv3b8sw .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VDv3b8sw .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VDv3b8sw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VDv3b8sw .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VDv3b8sw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VDv3b8sw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VDv3b8sw .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VDv3b8sw .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VDv3b8sw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VDv3b8sw .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0COTsUzd3 .navbar-dropdown {
  position: relative !important;
}
.cid-t0COTsUzd3 .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-t0COTsUzd3 .dropdown-menu {
  padding: 0;
}
.cid-t0COTsUzd3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0COTsUzd3 .dropdown-item:hover,
.cid-t0COTsUzd3 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t0COTsUzd3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t0COTsUzd3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0COTsUzd3 .nav-link {
  position: relative;
}
.cid-t0COTsUzd3 .container {
  display: flex;
  margin: auto;
}
.cid-t0COTsUzd3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t0COTsUzd3 .navbar-caption {
  padding-right: 4rem;
}
.cid-t0COTsUzd3 .dropdown-menu,
.cid-t0COTsUzd3 .navbar.opened {
  background: #ffffff !important;
}
.cid-t0COTsUzd3 .nav-item:focus,
.cid-t0COTsUzd3 .nav-link:focus {
  outline: none;
}
.cid-t0COTsUzd3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0COTsUzd3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0COTsUzd3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0COTsUzd3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0COTsUzd3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0COTsUzd3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0COTsUzd3 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t0COTsUzd3 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0COTsUzd3 .navbar.opened {
  transition: all .3s;
}
.cid-t0COTsUzd3 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t0COTsUzd3 .navbar .navbar-logo img {
  width: auto;
}
.cid-t0COTsUzd3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0COTsUzd3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0COTsUzd3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0COTsUzd3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t0COTsUzd3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0COTsUzd3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0COTsUzd3 .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: 55%;
}
.cid-t0COTsUzd3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0COTsUzd3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t0COTsUzd3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t0COTsUzd3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0COTsUzd3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0COTsUzd3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0COTsUzd3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0COTsUzd3 .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: 55%;
  }
  .cid-t0COTsUzd3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t0COTsUzd3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0COTsUzd3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0COTsUzd3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0COTsUzd3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0COTsUzd3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t0COTsUzd3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0COTsUzd3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0COTsUzd3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0COTsUzd3 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0COTsUzd3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0COTsUzd3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0COTsUzd3 .dropdown-item.active,
.cid-t0COTsUzd3 .dropdown-item:active {
  background-color: transparent;
}
.cid-t0COTsUzd3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0COTsUzd3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0COTsUzd3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0COTsUzd3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0COTsUzd3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0COTsUzd3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0COTsUzd3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0COTsUzd3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0COTsUzd3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t0COTsUzd3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t0COTsUzd3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t0COTsUzd3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t0COTsUzd3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t0COTsUzd3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t0COTsUzd3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0COTsUzd3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t0COTsUzd3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t0COTsUzd3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0COTsUzd3 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t0COTsUzd3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0COTsUzd3 .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-t0COTsUzd3 .navbar {
    height: 77px;
  }
  .cid-t0COTsUzd3 .navbar.opened {
    height: auto;
  }
  .cid-t0COTsUzd3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0CQotM4oV {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-t0CQotM4oV .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t0CQotM4oV .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-t0CQotM4oV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t0CQotM4oV .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-t0CQotM4oV .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-t0CQotM4oV .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t0CQotM4oV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t0CQotM4oV .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t0CQotM4oV .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t0CQotM4oV .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t8qF8CFuoK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-t8qF8CFuoK .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t8qF8CFuoK .team-card:hover {
  transform: translateY(-10px);
}
.cid-t8qF8CFuoK .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t8qF8CFuoK .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t8qF8CFuoK .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t8qF8CFuoK .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8qF8CFuoK .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t8qF8CFuoK .social-row {
  text-align: center;
}
.cid-t8qF8CFuoK .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-t8qF8CFuoK .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t8qF8CFuoK .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t8qF8CFuoK .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t0K8hvjthP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-t0K8hvjthP .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t0K8hvjthP .team-card:hover {
  transform: translateY(-10px);
}
.cid-t0K8hvjthP .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t0K8hvjthP .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t0K8hvjthP .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t0K8hvjthP .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t0K8hvjthP .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t0K8hvjthP .social-row {
  text-align: center;
}
.cid-t0K8hvjthP .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-t0K8hvjthP .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t0K8hvjthP .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t0K8hvjthP .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t0CRIOEJDO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-t0CRIOEJDO .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t0CRIOEJDO .team-card:hover {
  transform: translateY(-10px);
}
.cid-t0CRIOEJDO .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t0CRIOEJDO .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t0CRIOEJDO .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t0CRIOEJDO .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t0CRIOEJDO .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t0CRIOEJDO .social-row {
  text-align: center;
}
.cid-t0CRIOEJDO .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-t0CRIOEJDO .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t0CRIOEJDO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t0CRIOEJDO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t0COTxgjP7 {
  background-color: #ffffff;
}
.cid-t0COTxgjP7 .mbr-text,
.cid-t0COTxgjP7 .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-t0COTxgjP7 .mbr-text,
  .cid-t0COTxgjP7 .mbr-section-title {
    text-align: center;
  }
}
.cid-t0COTxgjP7 a.btn {
  height: 100%;
  margin: 0;
}
.cid-t0COTxgjP7 .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-t0COTxgjP7 .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t0COTxgjP7 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t0COTxgjP7 .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t0COTxgjP7 .justify-content-center {
  align-items: center;
}
.cid-t0COTxgjP7 H1 {
  color: #e43f3f;
}
.cid-t8VDoB6tNj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VDoB6tNj .content {
    text-align: center;
  }
  .cid-t8VDoB6tNj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VDoB6tNj .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VDoB6tNj .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VDoB6tNj .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VDoB6tNj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VDoB6tNj .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VDoB6tNj .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VDoB6tNj .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VDoB6tNj .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VDoB6tNj .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VDoB6tNj .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VDoB6tNj .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0CHhF5xEL .navbar-dropdown {
  position: relative !important;
}
.cid-t0CHhF5xEL .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-t0CHhF5xEL .dropdown-menu {
  padding: 0;
}
.cid-t0CHhF5xEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0CHhF5xEL .dropdown-item:hover,
.cid-t0CHhF5xEL .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t0CHhF5xEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t0CHhF5xEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0CHhF5xEL .nav-link {
  position: relative;
}
.cid-t0CHhF5xEL .container {
  display: flex;
  margin: auto;
}
.cid-t0CHhF5xEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t0CHhF5xEL .navbar-caption {
  padding-right: 4rem;
}
.cid-t0CHhF5xEL .dropdown-menu,
.cid-t0CHhF5xEL .navbar.opened {
  background: #ffffff !important;
}
.cid-t0CHhF5xEL .nav-item:focus,
.cid-t0CHhF5xEL .nav-link:focus {
  outline: none;
}
.cid-t0CHhF5xEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0CHhF5xEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0CHhF5xEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0CHhF5xEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0CHhF5xEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0CHhF5xEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0CHhF5xEL .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t0CHhF5xEL .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0CHhF5xEL .navbar.opened {
  transition: all .3s;
}
.cid-t0CHhF5xEL .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t0CHhF5xEL .navbar .navbar-logo img {
  width: auto;
}
.cid-t0CHhF5xEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0CHhF5xEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0CHhF5xEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0CHhF5xEL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t0CHhF5xEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0CHhF5xEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0CHhF5xEL .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: 55%;
}
.cid-t0CHhF5xEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0CHhF5xEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t0CHhF5xEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t0CHhF5xEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0CHhF5xEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0CHhF5xEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0CHhF5xEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0CHhF5xEL .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: 55%;
  }
  .cid-t0CHhF5xEL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t0CHhF5xEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0CHhF5xEL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0CHhF5xEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0CHhF5xEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0CHhF5xEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t0CHhF5xEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0CHhF5xEL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0CHhF5xEL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0CHhF5xEL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0CHhF5xEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0CHhF5xEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0CHhF5xEL .dropdown-item.active,
.cid-t0CHhF5xEL .dropdown-item:active {
  background-color: transparent;
}
.cid-t0CHhF5xEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0CHhF5xEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0CHhF5xEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0CHhF5xEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0CHhF5xEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0CHhF5xEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0CHhF5xEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0CHhF5xEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0CHhF5xEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t0CHhF5xEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t0CHhF5xEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t0CHhF5xEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t0CHhF5xEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t0CHhF5xEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t0CHhF5xEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0CHhF5xEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t0CHhF5xEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t0CHhF5xEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t0CHhF5xEL .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t0CHhF5xEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0CHhF5xEL .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-t0CHhF5xEL .navbar {
    height: 77px;
  }
  .cid-t0CHhF5xEL .navbar.opened {
    height: auto;
  }
  .cid-t0CHhF5xEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t1c54vCF5z .modal-body .close {
  background: #1b1b1b;
}
.cid-t1c54vCF5z .modal-body .close span {
  font-style: normal;
}
.cid-t1c54vCF5z .carousel-inner > .active,
.cid-t1c54vCF5z .carousel-inner > .next,
.cid-t1c54vCF5z .carousel-inner > .prev {
  display: flex;
}
.cid-t1c54vCF5z .carousel-control .icon-next,
.cid-t1c54vCF5z .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t1c54vCF5z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1c54vCF5z .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t1c54vCF5z .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t1c54vCF5z .boxed-slider > div {
  position: relative;
}
.cid-t1c54vCF5z .container img {
  width: 100%;
}
.cid-t1c54vCF5z .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t1c54vCF5z .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t1c54vCF5z .mbr-table-cell {
  padding: 0;
}
.cid-t1c54vCF5z .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t1c54vCF5z .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t1c54vCF5z .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t1c54vCF5z .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t1c54vCF5z .carousel-item.active.right,
.cid-t1c54vCF5z .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t1c54vCF5z .carousel-item.active.left,
.cid-t1c54vCF5z .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t1c54vCF5z .carousel-item.active,
.cid-t1c54vCF5z .carousel-item.next.left,
.cid-t1c54vCF5z .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t1c54vCF5z .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-t1c54vCF5z .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1c54vCF5z .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t1c54vCF5z .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-t1c54vCF5z .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t1c54vCF5z .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t1c54vCF5z .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t1c54vCF5z .mbr-slider .carousel-indicators li.active,
.cid-t1c54vCF5z .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t1c54vCF5z .mbr-slider .carousel-indicators li::after,
.cid-t1c54vCF5z .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t1c54vCF5z .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t1c54vCF5z .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t1c54vCF5z .mbr-slider > .container img {
  width: 100%;
}
.cid-t1c54vCF5z .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t1c54vCF5z .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t1c54vCF5z .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t1c54vCF5z .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t1c54vCF5z .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t1c54vCF5z .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t1c54vCF5z .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t1c54vCF5z .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t1c54vCF5z .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t1c54vCF5z .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t1c54vCF5z .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t1c54vCF5z .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t1c54vCF5z .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sSGyh0PhAL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSGyh0PhAL .mbr-section-subtitle {
  text-align: center;
  color: #2299aa;
}
.cid-sSGyh0PhAL .mbr-text {
  text-align: center;
  color: #2299aa;
}
.cid-sSHbtGPqvE {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSHbtGPqvE img,
.cid-sSHbtGPqvE .item-img {
  width: 100%;
}
.cid-sSHbtGPqvE .item:focus,
.cid-sSHbtGPqvE span:focus {
  outline: none;
}
.cid-sSHbtGPqvE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSHbtGPqvE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSHbtGPqvE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sSHbtGPqvE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSHbtGPqvE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sSHbtGPqvE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sSHbtGPqvE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSHbtGPqvE .mbr-section-title {
  color: #2299aa;
}
.cid-sSHbtGPqvE .mbr-text,
.cid-sSHbtGPqvE .mbr-section-btn {
  text-align: center;
}
.cid-sSHbtGPqvE .item-title {
  text-align: center;
}
.cid-sSHbtGPqvE .item-subtitle {
  text-align: left;
}
.cid-t8fBo8QP4U {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8fBo8QP4U img,
.cid-t8fBo8QP4U .item-img {
  width: 100%;
}
.cid-t8fBo8QP4U .item:focus,
.cid-t8fBo8QP4U span:focus {
  outline: none;
}
.cid-t8fBo8QP4U .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8fBo8QP4U .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8fBo8QP4U .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t8fBo8QP4U .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8fBo8QP4U .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t8fBo8QP4U .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t8fBo8QP4U .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8fBo8QP4U .mbr-section-title {
  color: #2299aa;
}
.cid-t8fBo8QP4U .mbr-text,
.cid-t8fBo8QP4U .mbr-section-btn {
  text-align: center;
}
.cid-t8fBo8QP4U .item-title {
  text-align: center;
}
.cid-t8fBo8QP4U .item-subtitle {
  text-align: left;
}
.cid-sSHc0CpW2g {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSHc0CpW2g .mbr-text {
  color: #767676;
}
.cid-sSHc0CpW2g .mbr-section-subtitle {
  color: #767676;
}
.cid-sSHc0CpW2g .title .num {
  width: 100%;
  display: block;
}
.cid-sSHc0CpW2g .title .card-title {
  z-index: 1;
}
.cid-sSHc0CpW2g .num {
  color: #6592e6;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sSHc0CpW2g * {
    text-align: center !important;
  }
  .cid-sSHc0CpW2g .content-column {
    margin-bottom: 2rem;
  }
}
.cid-sSHc0CpW2g .card-title,
.cid-sSHc0CpW2g .card-img {
  text-align: center;
}
.cid-sSHc0CpW2g .card-text {
  text-align: center;
}
.cid-t1fWqLYBVa {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-t1fWqLYBVa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t1fWqLYBVa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1fWqLYBVa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t1fWqLYBVa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t1fWqLYBVa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-t1fWqLYBVa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-t1fWqLYBVa .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-t1fWqLYBVa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-t1fWqLYBVa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-t1fRhbyfFL {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t1fRhbyfFL .carousel-control {
  background: #000;
}
.cid-t1fRhbyfFL .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-t1fRhbyfFL .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1fRhbyfFL .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-t1fRhbyfFL .carousel-item .wrap-img {
  text-align: center;
}
.cid-t1fRhbyfFL .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-t1fRhbyfFL .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1fRhbyfFL .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-t1fRhbyfFL .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-t1fRhbyfFL .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-t1fRhbyfFL .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-t1fRhbyfFL .cloneditem-1,
.cid-t1fRhbyfFL .cloneditem-2,
.cid-t1fRhbyfFL .cloneditem-3,
.cid-t1fRhbyfFL .cloneditem-4,
.cid-t1fRhbyfFL .cloneditem-5 {
  display: none;
}
.cid-t1fRhbyfFL .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t1fRhbyfFL .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-t1fRhbyfFL .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides2 .cloneditem-1,
  .cid-t1fRhbyfFL .carousel-inner.slides2 .cloneditem-2,
  .cid-t1fRhbyfFL .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-t1fRhbyfFL .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides3 .cloneditem-1,
  .cid-t1fRhbyfFL .carousel-inner.slides3 .cloneditem-2,
  .cid-t1fRhbyfFL .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-t1fRhbyfFL .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides4 .cloneditem-1,
  .cid-t1fRhbyfFL .carousel-inner.slides4 .cloneditem-2,
  .cid-t1fRhbyfFL .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-t1fRhbyfFL .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides5 .cloneditem-1,
  .cid-t1fRhbyfFL .carousel-inner.slides5 .cloneditem-2,
  .cid-t1fRhbyfFL .carousel-inner.slides5 .cloneditem-3,
  .cid-t1fRhbyfFL .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-t1fRhbyfFL .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-t1fRhbyfFL .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-t1fRhbyfFL .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-t1fRhbyfFL .carousel-inner.slides6 .cloneditem-1,
  .cid-t1fRhbyfFL .carousel-inner.slides6 .cloneditem-2,
  .cid-t1fRhbyfFL .carousel-inner.slides6 .cloneditem-3,
  .cid-t1fRhbyfFL .carousel-inner.slides6 .cloneditem-4,
  .cid-t1fRhbyfFL .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-sXfzaxHRsL {
  background-color: #ffffff;
}
.cid-sXfzaxHRsL .mbr-text,
.cid-sXfzaxHRsL .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-sXfzaxHRsL .mbr-text,
  .cid-sXfzaxHRsL .mbr-section-title {
    text-align: center;
  }
}
.cid-sXfzaxHRsL a.btn {
  height: 100%;
  margin: 0;
}
.cid-sXfzaxHRsL .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-sXfzaxHRsL .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sXfzaxHRsL .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sXfzaxHRsL .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-sXfzaxHRsL .justify-content-center {
  align-items: center;
}
.cid-sXfzaxHRsL H1 {
  color: #e43f3f;
  text-align: center;
}
.cid-t8VCWpYplB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VCWpYplB .content {
    text-align: center;
  }
  .cid-t8VCWpYplB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VCWpYplB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VCWpYplB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VCWpYplB .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VCWpYplB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VCWpYplB .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VCWpYplB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VCWpYplB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VCWpYplB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VCWpYplB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VCWpYplB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VCWpYplB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8fLnA8wtJ .navbar-dropdown {
  position: relative !important;
}
.cid-t8fLnA8wtJ .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-t8fLnA8wtJ .dropdown-menu {
  padding: 0;
}
.cid-t8fLnA8wtJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8fLnA8wtJ .dropdown-item:hover,
.cid-t8fLnA8wtJ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t8fLnA8wtJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t8fLnA8wtJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8fLnA8wtJ .nav-link {
  position: relative;
}
.cid-t8fLnA8wtJ .container {
  display: flex;
  margin: auto;
}
.cid-t8fLnA8wtJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t8fLnA8wtJ .navbar-caption {
  padding-right: 4rem;
}
.cid-t8fLnA8wtJ .dropdown-menu,
.cid-t8fLnA8wtJ .navbar.opened {
  background: #ffffff !important;
}
.cid-t8fLnA8wtJ .nav-item:focus,
.cid-t8fLnA8wtJ .nav-link:focus {
  outline: none;
}
.cid-t8fLnA8wtJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8fLnA8wtJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8fLnA8wtJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t8fLnA8wtJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8fLnA8wtJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8fLnA8wtJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8fLnA8wtJ .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t8fLnA8wtJ .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8fLnA8wtJ .navbar.opened {
  transition: all .3s;
}
.cid-t8fLnA8wtJ .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t8fLnA8wtJ .navbar .navbar-logo img {
  width: auto;
}
.cid-t8fLnA8wtJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8fLnA8wtJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8fLnA8wtJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8fLnA8wtJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t8fLnA8wtJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8fLnA8wtJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8fLnA8wtJ .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: 55%;
}
.cid-t8fLnA8wtJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8fLnA8wtJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t8fLnA8wtJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t8fLnA8wtJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8fLnA8wtJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8fLnA8wtJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8fLnA8wtJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8fLnA8wtJ .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: 55%;
  }
  .cid-t8fLnA8wtJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t8fLnA8wtJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8fLnA8wtJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8fLnA8wtJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8fLnA8wtJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8fLnA8wtJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t8fLnA8wtJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8fLnA8wtJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t8fLnA8wtJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t8fLnA8wtJ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t8fLnA8wtJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8fLnA8wtJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8fLnA8wtJ .dropdown-item.active,
.cid-t8fLnA8wtJ .dropdown-item:active {
  background-color: transparent;
}
.cid-t8fLnA8wtJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8fLnA8wtJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8fLnA8wtJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8fLnA8wtJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t8fLnA8wtJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8fLnA8wtJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8fLnA8wtJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8fLnA8wtJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8fLnA8wtJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t8fLnA8wtJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t8fLnA8wtJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8fLnA8wtJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8fLnA8wtJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8fLnA8wtJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8fLnA8wtJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8fLnA8wtJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8fLnA8wtJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8fLnA8wtJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8fLnA8wtJ .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t8fLnA8wtJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8fLnA8wtJ .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-t8fLnA8wtJ .navbar {
    height: 77px;
  }
  .cid-t8fLnA8wtJ .navbar.opened {
    height: auto;
  }
  .cid-t8fLnA8wtJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8gjPtLBhO .modal-body .close {
  background: #1b1b1b;
}
.cid-t8gjPtLBhO .modal-body .close span {
  font-style: normal;
}
.cid-t8gjPtLBhO .carousel-inner > .active,
.cid-t8gjPtLBhO .carousel-inner > .next,
.cid-t8gjPtLBhO .carousel-inner > .prev {
  display: flex;
}
.cid-t8gjPtLBhO .carousel-control .icon-next,
.cid-t8gjPtLBhO .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8gjPtLBhO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8gjPtLBhO .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gjPtLBhO .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8gjPtLBhO .boxed-slider > div {
  position: relative;
}
.cid-t8gjPtLBhO .container img {
  width: 100%;
}
.cid-t8gjPtLBhO .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8gjPtLBhO .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gjPtLBhO .mbr-table-cell {
  padding: 0;
}
.cid-t8gjPtLBhO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8gjPtLBhO .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t8gjPtLBhO .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gjPtLBhO .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8gjPtLBhO .carousel-item.active.right,
.cid-t8gjPtLBhO .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gjPtLBhO .carousel-item.active.left,
.cid-t8gjPtLBhO .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gjPtLBhO .carousel-item.active,
.cid-t8gjPtLBhO .carousel-item.next.left,
.cid-t8gjPtLBhO .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8gjPtLBhO .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-t8gjPtLBhO .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8gjPtLBhO .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8gjPtLBhO .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-t8gjPtLBhO .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8gjPtLBhO .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8gjPtLBhO .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t8gjPtLBhO .mbr-slider .carousel-indicators li.active,
.cid-t8gjPtLBhO .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t8gjPtLBhO .mbr-slider .carousel-indicators li::after,
.cid-t8gjPtLBhO .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8gjPtLBhO .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8gjPtLBhO .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8gjPtLBhO .mbr-slider > .container img {
  width: 100%;
}
.cid-t8gjPtLBhO .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8gjPtLBhO .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8gjPtLBhO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gjPtLBhO .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gjPtLBhO .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8gjPtLBhO .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8gjPtLBhO .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8gjPtLBhO .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8gjPtLBhO .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8gjPtLBhO .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gjPtLBhO .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8gjPtLBhO .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8gjPtLBhO .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t8fLnAzXwi {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t8fLnAzXwi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8fLnAzXwi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8fLnAzXwi .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8fLnAzXwi .mbr-section-title {
  color: #47b5ed;
  text-align: center;
}
.cid-t8fLnAzXwi .mbr-text {
  color: #8e8d8a;
}
.cid-t8fLnAMu1Y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8fLnAMu1Y .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t8fLnAMu1Y .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t8fLnAMu1Y .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-t8fLnAMu1Y .mbr-text {
  color: #000000;
}
.cid-t8fLnAMu1Y .mbr-section-title {
  text-align: center;
  color: #4479d9;
}
.cid-t8fLnAXtCG {
  background-color: #ffffff;
}
.cid-t8fLnAXtCG .mbr-text,
.cid-t8fLnAXtCG .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-t8fLnAXtCG .mbr-text,
  .cid-t8fLnAXtCG .mbr-section-title {
    text-align: center;
  }
}
.cid-t8fLnAXtCG a.btn {
  height: 100%;
  margin: 0;
}
.cid-t8fLnAXtCG .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-t8fLnAXtCG .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t8fLnAXtCG .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t8fLnAXtCG .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t8fLnAXtCG .justify-content-center {
  align-items: center;
}
.cid-t8fLnAXtCG H1 {
  color: #e43f3f;
}
.cid-t8VD3RimLy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VD3RimLy .content {
    text-align: center;
  }
  .cid-t8VD3RimLy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VD3RimLy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VD3RimLy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VD3RimLy .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VD3RimLy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VD3RimLy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VD3RimLy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VD3RimLy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VD3RimLy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VD3RimLy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VD3RimLy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VD3RimLy .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8fLqh5tsd .navbar-dropdown {
  position: relative !important;
}
.cid-t8fLqh5tsd .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-t8fLqh5tsd .dropdown-menu {
  padding: 0;
}
.cid-t8fLqh5tsd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8fLqh5tsd .dropdown-item:hover,
.cid-t8fLqh5tsd .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-t8fLqh5tsd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t8fLqh5tsd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8fLqh5tsd .nav-link {
  position: relative;
}
.cid-t8fLqh5tsd .container {
  display: flex;
  margin: auto;
}
.cid-t8fLqh5tsd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t8fLqh5tsd .navbar-caption {
  padding-right: 4rem;
}
.cid-t8fLqh5tsd .dropdown-menu,
.cid-t8fLqh5tsd .navbar.opened {
  background: #ffffff !important;
}
.cid-t8fLqh5tsd .nav-item:focus,
.cid-t8fLqh5tsd .nav-link:focus {
  outline: none;
}
.cid-t8fLqh5tsd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8fLqh5tsd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8fLqh5tsd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t8fLqh5tsd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8fLqh5tsd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8fLqh5tsd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8fLqh5tsd .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
}
.cid-t8fLqh5tsd .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8fLqh5tsd .navbar.opened {
  transition: all .3s;
}
.cid-t8fLqh5tsd .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t8fLqh5tsd .navbar .navbar-logo img {
  width: auto;
}
.cid-t8fLqh5tsd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8fLqh5tsd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8fLqh5tsd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8fLqh5tsd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t8fLqh5tsd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8fLqh5tsd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8fLqh5tsd .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: 55%;
}
.cid-t8fLqh5tsd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8fLqh5tsd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t8fLqh5tsd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t8fLqh5tsd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8fLqh5tsd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8fLqh5tsd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8fLqh5tsd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8fLqh5tsd .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: 55%;
  }
  .cid-t8fLqh5tsd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t8fLqh5tsd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8fLqh5tsd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8fLqh5tsd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8fLqh5tsd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8fLqh5tsd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t8fLqh5tsd .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8fLqh5tsd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t8fLqh5tsd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t8fLqh5tsd .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t8fLqh5tsd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8fLqh5tsd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8fLqh5tsd .dropdown-item.active,
.cid-t8fLqh5tsd .dropdown-item:active {
  background-color: transparent;
}
.cid-t8fLqh5tsd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8fLqh5tsd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8fLqh5tsd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8fLqh5tsd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t8fLqh5tsd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8fLqh5tsd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8fLqh5tsd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8fLqh5tsd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8fLqh5tsd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t8fLqh5tsd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t8fLqh5tsd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8fLqh5tsd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8fLqh5tsd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8fLqh5tsd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8fLqh5tsd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8fLqh5tsd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8fLqh5tsd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8fLqh5tsd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8fLqh5tsd .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-t8fLqh5tsd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8fLqh5tsd .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-t8fLqh5tsd .navbar {
    height: 77px;
  }
  .cid-t8fLqh5tsd .navbar.opened {
    height: auto;
  }
  .cid-t8fLqh5tsd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8gjTmCCPw .modal-body .close {
  background: #1b1b1b;
}
.cid-t8gjTmCCPw .modal-body .close span {
  font-style: normal;
}
.cid-t8gjTmCCPw .carousel-inner > .active,
.cid-t8gjTmCCPw .carousel-inner > .next,
.cid-t8gjTmCCPw .carousel-inner > .prev {
  display: flex;
}
.cid-t8gjTmCCPw .carousel-control .icon-next,
.cid-t8gjTmCCPw .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8gjTmCCPw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8gjTmCCPw .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gjTmCCPw .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8gjTmCCPw .boxed-slider > div {
  position: relative;
}
.cid-t8gjTmCCPw .container img {
  width: 100%;
}
.cid-t8gjTmCCPw .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8gjTmCCPw .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gjTmCCPw .mbr-table-cell {
  padding: 0;
}
.cid-t8gjTmCCPw .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8gjTmCCPw .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t8gjTmCCPw .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gjTmCCPw .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8gjTmCCPw .carousel-item.active.right,
.cid-t8gjTmCCPw .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gjTmCCPw .carousel-item.active.left,
.cid-t8gjTmCCPw .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8gjTmCCPw .carousel-item.active,
.cid-t8gjTmCCPw .carousel-item.next.left,
.cid-t8gjTmCCPw .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8gjTmCCPw .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-t8gjTmCCPw .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8gjTmCCPw .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8gjTmCCPw .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-t8gjTmCCPw .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8gjTmCCPw .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8gjTmCCPw .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t8gjTmCCPw .mbr-slider .carousel-indicators li.active,
.cid-t8gjTmCCPw .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t8gjTmCCPw .mbr-slider .carousel-indicators li::after,
.cid-t8gjTmCCPw .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8gjTmCCPw .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8gjTmCCPw .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8gjTmCCPw .mbr-slider > .container img {
  width: 100%;
}
.cid-t8gjTmCCPw .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8gjTmCCPw .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8gjTmCCPw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8gjTmCCPw .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8gjTmCCPw .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8gjTmCCPw .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8gjTmCCPw .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8gjTmCCPw .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8gjTmCCPw .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8gjTmCCPw .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8gjTmCCPw .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8gjTmCCPw .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8gjTmCCPw .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t8fLqhtCXi {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t8fLqhtCXi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8fLqhtCXi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8fLqhtCXi .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8fLqhtCXi .mbr-section-title {
  color: #47b5ed;
  text-align: center;
}
.cid-t8fLqhtCXi .mbr-text {
  color: #8e8d8a;
}
.cid-t8fLqhIQ5G {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8fLqhIQ5G .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t8fLqhIQ5G .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-t8fLqhIQ5G .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-t8fLqhIQ5G .mbr-text {
  color: #000000;
}
.cid-t8fLqhIQ5G .mbr-text UL {
  text-align: center;
}
.cid-t8fLqhSnPG {
  background-color: #ffffff;
}
.cid-t8fLqhSnPG .mbr-text,
.cid-t8fLqhSnPG .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-t8fLqhSnPG .mbr-text,
  .cid-t8fLqhSnPG .mbr-section-title {
    text-align: center;
  }
}
.cid-t8fLqhSnPG a.btn {
  height: 100%;
  margin: 0;
}
.cid-t8fLqhSnPG .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-t8fLqhSnPG .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t8fLqhSnPG .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t8fLqhSnPG .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t8fLqhSnPG .justify-content-center {
  align-items: center;
}
.cid-t8fLqhSnPG H1 {
  color: #e43f3f;
}
.cid-t8VD6ln3HM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
@media (max-width: 767px) {
  .cid-t8VD6ln3HM .content {
    text-align: center;
  }
  .cid-t8VD6ln3HM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8VD6ln3HM .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8VD6ln3HM .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8VD6ln3HM .media-wrap img {
  height: 6rem;
  display: block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t8VD6ln3HM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t8VD6ln3HM .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t8VD6ln3HM .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8VD6ln3HM .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t8VD6ln3HM .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8VD6ln3HM .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8VD6ln3HM .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VD6ln3HM .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
