body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.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: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #c50c0c !important;
}
.bg-success {
  background-color: #2299aa !important;
}
.bg-info {
  background-color: #4479d9 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c50c0c !important;
  border-color: #c50c0c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #730707 !important;
  border-color: #730707 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #730707 !important;
  border-color: #730707 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #65c6d4 !important;
  border-color: #65c6d4 !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: #31a1b1 !important;
  border-color: #31a1b1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #31a1b1 !important;
  border-color: #31a1b1 !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: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c50c0c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #730707 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c50c0c !important;
  border-color: #c50c0c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #65c6d4;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #31a1b1 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #65c6d4 !important;
  border-color: #65c6d4 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #c50c0c !important;
}
.text-secondary {
  color: #65c6d4 !important;
}
.text-success {
  color: #2299aa !important;
}
.text-info {
  color: #4479d9 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #650606 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #2e96a5 !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: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #c50c0c;
}
.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: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c50c0c;
  border-color: #c50c0c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c50c0c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f55b5b;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #c50c0c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #c50c0c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c50c0c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #c50c0c;
}
.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: #c50c0c;
  border-bottom-color: #c50c0c;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #c50c0c !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: #65c6d4 !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='%23c50c0c' %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-tGmVKO0FGX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tGmVKO0FGX nav.navbar {
  position: fixed;
}
.cid-tGmVKO0FGX .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-tGmVKO0FGX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGmVKO0FGX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGmVKO0FGX .dropdown-item:hover,
.cid-tGmVKO0FGX .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-tGmVKO0FGX .dropdown-item:hover span {
  color: white;
}
.cid-tGmVKO0FGX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGmVKO0FGX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGmVKO0FGX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGmVKO0FGX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGmVKO0FGX .nav-link {
  position: relative;
}
.cid-tGmVKO0FGX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tGmVKO0FGX .container {
    flex-wrap: nowrap;
  }
}
.cid-tGmVKO0FGX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGmVKO0FGX .dropdown-menu,
.cid-tGmVKO0FGX .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-tGmVKO0FGX .nav-item:focus,
.cid-tGmVKO0FGX .nav-link:focus {
  outline: none;
}
.cid-tGmVKO0FGX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGmVKO0FGX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGmVKO0FGX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGmVKO0FGX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGmVKO0FGX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGmVKO0FGX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGmVKO0FGX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-tGmVKO0FGX .navbar.opened {
  transition: all 0.3s;
}
.cid-tGmVKO0FGX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGmVKO0FGX .navbar .navbar-logo img {
  width: auto;
}
.cid-tGmVKO0FGX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGmVKO0FGX .navbar.collapsed {
  justify-content: center;
}
.cid-tGmVKO0FGX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGmVKO0FGX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGmVKO0FGX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGmVKO0FGX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGmVKO0FGX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tGmVKO0FGX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGmVKO0FGX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGmVKO0FGX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGmVKO0FGX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGmVKO0FGX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGmVKO0FGX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGmVKO0FGX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGmVKO0FGX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tGmVKO0FGX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGmVKO0FGX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGmVKO0FGX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGmVKO0FGX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGmVKO0FGX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGmVKO0FGX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tGmVKO0FGX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tGmVKO0FGX .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGmVKO0FGX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGmVKO0FGX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGmVKO0FGX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGmVKO0FGX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGmVKO0FGX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGmVKO0FGX .dropdown-item.active,
.cid-tGmVKO0FGX .dropdown-item:active {
  background-color: transparent;
}
.cid-tGmVKO0FGX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGmVKO0FGX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGmVKO0FGX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGmVKO0FGX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-tGmVKO0FGX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGmVKO0FGX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGmVKO0FGX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGmVKO0FGX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGmVKO0FGX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGmVKO0FGX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGmVKO0FGX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGmVKO0FGX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGmVKO0FGX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGmVKO0FGX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGmVKO0FGX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGmVKO0FGX .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-tGmVKO0FGX .navbar {
    height: 70px;
  }
  .cid-tGmVKO0FGX .navbar.opened {
    height: auto;
  }
  .cid-tGmVKO0FGX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urZtLVSiKW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-urZtLVSiKW .mbr-fallback-image.disabled {
  display: none;
}
.cid-urZtLVSiKW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urZtLVSiKW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-urZtLVSiKW .row {
  flex-direction: row-reverse;
}
.cid-urZtLVSiKW img {
  width: 100%;
}
.cid-urTLyCwOgr {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-urTLyCwOgr .mbr-fallback-image.disabled {
  display: none;
}
.cid-urTLyCwOgr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urTLyCwOgr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-urTLyCwOgr .row {
  flex-direction: row-reverse;
}
.cid-urTLyCwOgr img {
  width: 100%;
}
.cid-urs6fC4WZc {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-urs6fC4WZc .mbr-fallback-image.disabled {
  display: none;
}
.cid-urs6fC4WZc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-urs6fC4WZc .row {
    flex-direction: column-reverse;
  }
  .cid-urs6fC4WZc .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-urs6fC4WZc .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-urs6fC4WZc .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-urs6fC4WZc .media-content,
.cid-urs6fC4WZc .mbr-figure {
  align-self: center;
}
.cid-urs6fC4WZc .mbr-figure iframe {
  width: 100%;
}
.cid-umJXSEDbs9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-umJXSEDbs9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umJXSEDbs9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umJXSEDbs9 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-umJXSEDbs9 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-umJXSEDbs9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-umJXSEDbs9 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-umJXSEDbs9 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urTA3PJev0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-urTA3PJev0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urTA3PJev0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urTA3PJev0 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-urTA3PJev0 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uovNMZjjJQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-uovNMZjjJQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uovNMZjjJQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uovNMZjjJQ .row {
  flex-direction: row-reverse;
}
.cid-uovNMZjjJQ .video-wrapper iframe {
  width: 100%;
}
.cid-uovNMZjjJQ .mbr-section-title,
.cid-uovNMZjjJQ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uovNMZjjJQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uovNMZjjJQ .mbr-section-title {
  color: #ffffff;
}
.cid-uovNMZjjJQ .mbr-text {
  color: #353535;
}
.cid-uq6z1M4EOw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-uq6z1M4EOw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq6z1M4EOw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq6z1M4EOw .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uq6z1M4EOw .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-umJ8O0vpSv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-umJ8O0vpSv .mbr-fallback-image.disabled {
  display: none;
}
.cid-umJ8O0vpSv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umJ8O0vpSv .video-wrapper iframe {
  width: 100%;
}
.cid-umJ8O0vpSv .mbr-section-title,
.cid-umJ8O0vpSv .mbr-section-subtitle,
.cid-umJ8O0vpSv .mbr-text {
  text-align: center;
}
.cid-urTQOtHPCW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-urTQOtHPCW img,
.cid-urTQOtHPCW .item-img {
  width: 100%;
}
.cid-urTQOtHPCW .item:focus,
.cid-urTQOtHPCW span:focus {
  outline: none;
}
.cid-urTQOtHPCW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urTQOtHPCW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d6d3d3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urTQOtHPCW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-urTQOtHPCW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urTQOtHPCW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-urTQOtHPCW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-urTQOtHPCW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urTQOtHPCW .mbr-section-title {
  color: #232323;
}
.cid-urTQOtHPCW .mbr-text,
.cid-urTQOtHPCW .mbr-section-btn {
  text-align: left;
}
.cid-urTQOtHPCW .item-title {
  text-align: center;
}
.cid-urTQOtHPCW .item-subtitle {
  text-align: center;
}
.cid-urfPQTuXDr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-urfPQTuXDr img,
.cid-urfPQTuXDr .item-img {
  width: 100%;
}
.cid-urfPQTuXDr .item:focus,
.cid-urfPQTuXDr span:focus {
  outline: none;
}
.cid-urfPQTuXDr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urfPQTuXDr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d6d3d3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urfPQTuXDr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-urfPQTuXDr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urfPQTuXDr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-urfPQTuXDr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-urfPQTuXDr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urfPQTuXDr .mbr-section-title {
  color: #232323;
}
.cid-urfPQTuXDr .mbr-text,
.cid-urfPQTuXDr .mbr-section-btn {
  text-align: left;
}
.cid-urfPQTuXDr .item-title {
  text-align: center;
}
.cid-urfPQTuXDr .item-subtitle {
  text-align: center;
}
.cid-uq7dVywQB8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-uq7dVywQB8 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uq7dVywQB8 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uq7dVywQB8 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uq7dVywQB8 .mbr-section-title {
  text-align: center;
}
.cid-uq7dVywQB8 .mbr-text UL {
  text-align: left;
}
.cid-uq73032N6F {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-uq73032N6F img,
.cid-uq73032N6F .item-img {
  width: 100%;
}
.cid-uq73032N6F .item:focus,
.cid-uq73032N6F span:focus {
  outline: none;
}
.cid-uq73032N6F .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uq73032N6F .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d6d3d3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uq73032N6F .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uq73032N6F .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uq73032N6F .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uq73032N6F .mbr-section-title {
  color: #232323;
}
.cid-uq73032N6F .mbr-text,
.cid-uq73032N6F .mbr-section-btn {
  text-align: left;
}
.cid-uq73032N6F .item-title {
  text-align: center;
}
.cid-uq73032N6F .item-subtitle {
  text-align: center;
}
.cid-uowW7E1xx4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-uowW7E1xx4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uowW7E1xx4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uowW7E1xx4 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uowW7E1xx4 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uowW7E1xx4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uowW7E1xx4 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uowW7E1xx4 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uowW7E1xx4 .mbr-text,
.cid-uowW7E1xx4 .mbr-section-btn {
  text-align: left;
}
.cid-uovDV35Od7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-uovDV35Od7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uovDV35Od7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uovDV35Od7 .row {
  flex-direction: row-reverse;
}
.cid-uovDV35Od7 .video-wrapper iframe {
  width: 100%;
}
.cid-uovDV35Od7 .mbr-section-title,
.cid-uovDV35Od7 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uovDV35Od7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uovDV35Od7 .mbr-section-title {
  color: #ffffff;
}
.cid-uovDV35Od7 .mbr-text {
  color: #353535;
}
.cid-usyXQbp7st {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #d6d3d3;
}
.cid-usyXQbp7st .mbr-fallback-image.disabled {
  display: none;
}
.cid-usyXQbp7st .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usyXQbp7st .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-usyXQbp7st .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-usyXQbp7st .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-usyXQbp7st .mbr-text,
.cid-usyXQbp7st .mbr-section-btn {
  text-align: left;
}
.cid-usyXQbp7st .mbr-section-title {
  text-align: left;
}
.cid-uovO0kpl9A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-uovO0kpl9A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uovO0kpl9A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uovO0kpl9A .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uovO0kpl9A .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uovO0kpl9A .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uovO0kpl9A .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uovO0kpl9A .mbr-iconfont {
  font-size: 4rem;
  padding-right: 1.5rem;
  color: #c50c0c;
}
.cid-uovO0kpl9A .card-title {
  text-align: center;
}
.cid-uovO0kpl9A .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-uovO0kpl9A .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uovO0kpl9A .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-urkvwcMX3d {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-urkvwcMX3d .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-urkvwcMX3d form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-urkvwcMX3d form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-urkvwcMX3d form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uq2fi9MLQi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-uq2fi9MLQi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq2fi9MLQi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq2fi9MLQi .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uq2fi9MLQi .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-urgnyB7qR2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-urgnyB7qR2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgnyB7qR2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgnyB7qR2 .video-wrapper iframe {
  width: 100%;
}
.cid-urgnyB7qR2 .mbr-section-title,
.cid-urgnyB7qR2 .mbr-section-subtitle,
.cid-urgnyB7qR2 .mbr-text {
  text-align: center;
}
.cid-uq8d6LJpCZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-uq8d6LJpCZ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uq8d6LJpCZ .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uq8d6LJpCZ .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uq8d6LJpCZ .mbr-section-title {
  text-align: center;
}
.cid-tZ2Yxn2Tc6 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-tZ2Yxn2Tc6 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tZ2Yxn2Tc6 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-tZ2Yxn2Tc6 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #d6d3d3;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-tZ2Yxn2Tc6 .mbr-text UL {
  text-align: left;
}
.cid-uquAGSELQa {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-uquAGSELQa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uquAGSELQa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uquAGSELQa .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uquAGSELQa .mbr-section-title,
.cid-uquAGSELQa .mbr-section-subtitle {
  text-align: center;
}
.cid-uquAGSELQa .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uquAGSELQa .card-wrapper {
  border-radius: 4px;
  background-color: #bbbbbb;
}
.cid-uquAGSELQa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uquAGSELQa .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uquAGSELQa .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uquAGSELQa .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uquAGSELQa .cost {
  color: #d6d3d3;
}
.cid-uquAGSELQa .card-title {
  color: #353535;
}
.cid-urxGYRzi6T {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-urxGYRzi6T img,
.cid-urxGYRzi6T .item-img {
  width: 100%;
}
.cid-urxGYRzi6T .item:focus,
.cid-urxGYRzi6T span:focus {
  outline: none;
}
.cid-urxGYRzi6T .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urxGYRzi6T .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urxGYRzi6T .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urxGYRzi6T .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urxGYRzi6T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urxGYRzi6T .mbr-section-title {
  color: #232323;
}
.cid-urxGYRzi6T .mbr-text,
.cid-urxGYRzi6T .mbr-section-btn {
  text-align: left;
}
.cid-urxGYRzi6T .item-title {
  text-align: left;
}
.cid-urxGYRzi6T .item-subtitle {
  text-align: left;
}
.cid-urxGYRzi6T .mbr-section-subtitle {
  text-align: left;
}
.cid-tGFn4w5wNJ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-tGFn4w5wNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGFn4w5wNJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGFn4w5wNJ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tGFn4w5wNJ .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tGFn4w5wNJ .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGFn4w5wNJ .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tGFn4w5wNJ .mbr-iconfont {
  font-size: 4rem;
  padding-right: 1.5rem;
  color: #c50c0c;
}
.cid-tGFn4w5wNJ .card-title {
  text-align: center;
}
.cid-tGFn4w5wNJ .mbr-section-title {
  text-align: center;
}
.cid-tGFn4w5wNJ .mbr-section-subtitle {
  color: #353535;
}
.cid-tGFn4w5wNJ .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tDHpXcbsvh {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #d6d3d3;
}
.cid-tDHpXcbsvh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDHpXcbsvh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDHpXcbsvh .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tDHpXcbsvh .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tDHpXcbsvh .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tDHpXcbsvh .bg-instagram:hover {
  background: #bd005c;
}
.cid-tDHpXcbsvh .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tDHpXcbsvh .bg-youtube:hover {
  background: #cc0000;
}
.cid-tDHpXcbsvh .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tDHpXcbsvh [class^="socicon-"]:before,
.cid-tDHpXcbsvh [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-urPEiuzr7R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-urPEiuzr7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPEiuzr7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPEiuzr7R .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-urPEiuzr7R .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urPEiuzr7R .row {
    text-align: center;
  }
  .cid-urPEiuzr7R .social-row {
    justify-content: center;
  }
}
.cid-urPEiuzr7R .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 0rem;
  }
}
.cid-urPEiuzr7R .mbr-text {
  color: #bbbbbb;
}
.cid-urPEiuzr7R .mbr-iconfont {
  color: black;
}
.cid-uqAwwn2YSq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqAwwn2YSq nav.navbar {
  position: fixed;
}
.cid-uqAwwn2YSq .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-uqAwwn2YSq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqAwwn2YSq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqAwwn2YSq .dropdown-item:hover,
.cid-uqAwwn2YSq .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-uqAwwn2YSq .dropdown-item:hover span {
  color: white;
}
.cid-uqAwwn2YSq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqAwwn2YSq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqAwwn2YSq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqAwwn2YSq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqAwwn2YSq .nav-link {
  position: relative;
}
.cid-uqAwwn2YSq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqAwwn2YSq .container {
    flex-wrap: nowrap;
  }
}
.cid-uqAwwn2YSq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqAwwn2YSq .dropdown-menu,
.cid-uqAwwn2YSq .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-uqAwwn2YSq .nav-item:focus,
.cid-uqAwwn2YSq .nav-link:focus {
  outline: none;
}
.cid-uqAwwn2YSq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqAwwn2YSq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqAwwn2YSq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqAwwn2YSq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqAwwn2YSq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqAwwn2YSq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqAwwn2YSq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-uqAwwn2YSq .navbar.opened {
  transition: all 0.3s;
}
.cid-uqAwwn2YSq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqAwwn2YSq .navbar .navbar-logo img {
  width: auto;
}
.cid-uqAwwn2YSq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqAwwn2YSq .navbar.collapsed {
  justify-content: center;
}
.cid-uqAwwn2YSq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqAwwn2YSq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqAwwn2YSq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqAwwn2YSq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqAwwn2YSq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqAwwn2YSq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqAwwn2YSq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqAwwn2YSq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqAwwn2YSq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqAwwn2YSq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqAwwn2YSq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqAwwn2YSq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqAwwn2YSq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqAwwn2YSq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqAwwn2YSq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqAwwn2YSq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqAwwn2YSq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqAwwn2YSq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqAwwn2YSq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqAwwn2YSq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqAwwn2YSq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqAwwn2YSq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqAwwn2YSq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqAwwn2YSq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uqAwwn2YSq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqAwwn2YSq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqAwwn2YSq .dropdown-item.active,
.cid-uqAwwn2YSq .dropdown-item:active {
  background-color: transparent;
}
.cid-uqAwwn2YSq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqAwwn2YSq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqAwwn2YSq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqAwwn2YSq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-uqAwwn2YSq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqAwwn2YSq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqAwwn2YSq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqAwwn2YSq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqAwwn2YSq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqAwwn2YSq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqAwwn2YSq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqAwwn2YSq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqAwwn2YSq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqAwwn2YSq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqAwwn2YSq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqAwwn2YSq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqAwwn2YSq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqAwwn2YSq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqAwwn2YSq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqAwwn2YSq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqAwwn2YSq .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-uqAwwn2YSq .navbar {
    height: 70px;
  }
  .cid-uqAwwn2YSq .navbar.opened {
    height: auto;
  }
  .cid-uqAwwn2YSq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqAwwnDbo2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-uqAwwnDbo2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAwwnDbo2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAwwnDbo2 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uqAwwnDbo2 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqAwwnDbo2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqAwwnDbo2 .mbr-text,
.cid-uqAwwnDbo2 .mbr-section-btn {
  text-align: left;
}
.cid-uqAwwnDbo2 .mbr-section-title {
  text-align: left;
}
.cid-uqAwwnW1Ay {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-uqAwwnW1Ay .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqAwwnW1Ay .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uqAwwnW1Ay .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uqAwwnW1Ay .mbr-section-title {
  text-align: left;
}
.cid-urU6Ff6jP7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-urU6Ff6jP7 img,
.cid-urU6Ff6jP7 .item-img {
  width: 100%;
}
.cid-urU6Ff6jP7 .item:focus,
.cid-urU6Ff6jP7 span:focus {
  outline: none;
}
.cid-urU6Ff6jP7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urU6Ff6jP7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d6d3d3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urU6Ff6jP7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urU6Ff6jP7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urU6Ff6jP7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urU6Ff6jP7 .mbr-section-title {
  color: #232323;
}
.cid-urU6Ff6jP7 .mbr-text,
.cid-urU6Ff6jP7 .mbr-section-btn {
  text-align: left;
}
.cid-urU6Ff6jP7 .item-title {
  text-align: center;
}
.cid-urU6Ff6jP7 .item-subtitle {
  text-align: center;
}
.cid-urxP6BD8Mf {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #d6d3d3;
}
.cid-urxP6BD8Mf .mbr-fallback-image.disabled {
  display: none;
}
.cid-urxP6BD8Mf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urxP6BD8Mf .video-wrapper iframe {
  width: 100%;
}
.cid-urxP6BD8Mf .mbr-section-title,
.cid-urxP6BD8Mf .mbr-section-subtitle,
.cid-urxP6BD8Mf .mbr-text {
  text-align: center;
}
.cid-urPEiuzr7R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-urPEiuzr7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPEiuzr7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPEiuzr7R .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-urPEiuzr7R .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urPEiuzr7R .row {
    text-align: center;
  }
  .cid-urPEiuzr7R .social-row {
    justify-content: center;
  }
}
.cid-urPEiuzr7R .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 0rem;
  }
}
.cid-urPEiuzr7R .mbr-text {
  color: #bbbbbb;
}
.cid-urPEiuzr7R .mbr-iconfont {
  color: black;
}
.cid-uqB2KkRhgt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqB2KkRhgt nav.navbar {
  position: fixed;
}
.cid-uqB2KkRhgt .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-uqB2KkRhgt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqB2KkRhgt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqB2KkRhgt .dropdown-item:hover,
.cid-uqB2KkRhgt .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-uqB2KkRhgt .dropdown-item:hover span {
  color: white;
}
.cid-uqB2KkRhgt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqB2KkRhgt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqB2KkRhgt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqB2KkRhgt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqB2KkRhgt .nav-link {
  position: relative;
}
.cid-uqB2KkRhgt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqB2KkRhgt .container {
    flex-wrap: nowrap;
  }
}
.cid-uqB2KkRhgt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqB2KkRhgt .dropdown-menu,
.cid-uqB2KkRhgt .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-uqB2KkRhgt .nav-item:focus,
.cid-uqB2KkRhgt .nav-link:focus {
  outline: none;
}
.cid-uqB2KkRhgt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqB2KkRhgt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqB2KkRhgt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqB2KkRhgt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqB2KkRhgt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqB2KkRhgt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqB2KkRhgt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-uqB2KkRhgt .navbar.opened {
  transition: all 0.3s;
}
.cid-uqB2KkRhgt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqB2KkRhgt .navbar .navbar-logo img {
  width: auto;
}
.cid-uqB2KkRhgt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqB2KkRhgt .navbar.collapsed {
  justify-content: center;
}
.cid-uqB2KkRhgt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqB2KkRhgt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqB2KkRhgt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqB2KkRhgt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqB2KkRhgt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqB2KkRhgt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqB2KkRhgt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqB2KkRhgt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqB2KkRhgt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqB2KkRhgt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqB2KkRhgt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqB2KkRhgt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqB2KkRhgt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqB2KkRhgt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqB2KkRhgt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqB2KkRhgt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqB2KkRhgt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqB2KkRhgt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqB2KkRhgt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqB2KkRhgt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqB2KkRhgt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqB2KkRhgt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqB2KkRhgt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqB2KkRhgt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uqB2KkRhgt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqB2KkRhgt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqB2KkRhgt .dropdown-item.active,
.cid-uqB2KkRhgt .dropdown-item:active {
  background-color: transparent;
}
.cid-uqB2KkRhgt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqB2KkRhgt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqB2KkRhgt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqB2KkRhgt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-uqB2KkRhgt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqB2KkRhgt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqB2KkRhgt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqB2KkRhgt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqB2KkRhgt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqB2KkRhgt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqB2KkRhgt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqB2KkRhgt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqB2KkRhgt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqB2KkRhgt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqB2KkRhgt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqB2KkRhgt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqB2KkRhgt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqB2KkRhgt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqB2KkRhgt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqB2KkRhgt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqB2KkRhgt .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-uqB2KkRhgt .navbar {
    height: 70px;
  }
  .cid-uqB2KkRhgt .navbar.opened {
    height: auto;
  }
  .cid-uqB2KkRhgt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqB2KlcbE8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-uqB2KlcbE8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqB2KlcbE8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqB2KlcbE8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uqB2KlcbE8 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqB2KlcbE8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqB2KlcbE8 .mbr-text,
.cid-uqB2KlcbE8 .mbr-section-btn {
  text-align: left;
}
.cid-uqB2KlcbE8 .mbr-section-title {
  text-align: left;
}
.cid-uqB2Kluzq2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-uqB2Kluzq2 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqB2Kluzq2 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uqB2Kluzq2 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uqB2Kluzq2 .mbr-section-title {
  text-align: left;
}
.cid-urU8ng04o5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-urU8ng04o5 img,
.cid-urU8ng04o5 .item-img {
  width: 100%;
}
.cid-urU8ng04o5 .item:focus,
.cid-urU8ng04o5 span:focus {
  outline: none;
}
.cid-urU8ng04o5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urU8ng04o5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d6d3d3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urU8ng04o5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urU8ng04o5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urU8ng04o5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urU8ng04o5 .mbr-section-title {
  color: #232323;
}
.cid-urU8ng04o5 .mbr-text,
.cid-urU8ng04o5 .mbr-section-btn {
  text-align: left;
}
.cid-urU8ng04o5 .item-title {
  text-align: center;
}
.cid-urU8ng04o5 .item-subtitle {
  text-align: center;
}
.cid-uqB2KlGGsD {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #d6d3d3;
}
.cid-uqB2KlGGsD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqB2KlGGsD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqB2KlGGsD .video-wrapper iframe {
  width: 100%;
}
.cid-uqB2KlGGsD .mbr-section-title,
.cid-uqB2KlGGsD .mbr-section-subtitle,
.cid-uqB2KlGGsD .mbr-text {
  text-align: center;
}
.cid-urPEiuzr7R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-urPEiuzr7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPEiuzr7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPEiuzr7R .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-urPEiuzr7R .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urPEiuzr7R .row {
    text-align: center;
  }
  .cid-urPEiuzr7R .social-row {
    justify-content: center;
  }
}
.cid-urPEiuzr7R .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 0rem;
  }
}
.cid-urPEiuzr7R .mbr-text {
  color: #bbbbbb;
}
.cid-urPEiuzr7R .mbr-iconfont {
  color: black;
}
.cid-uqB7iQX8rl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqB7iQX8rl nav.navbar {
  position: fixed;
}
.cid-uqB7iQX8rl .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-uqB7iQX8rl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqB7iQX8rl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqB7iQX8rl .dropdown-item:hover,
.cid-uqB7iQX8rl .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-uqB7iQX8rl .dropdown-item:hover span {
  color: white;
}
.cid-uqB7iQX8rl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqB7iQX8rl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqB7iQX8rl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqB7iQX8rl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqB7iQX8rl .nav-link {
  position: relative;
}
.cid-uqB7iQX8rl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqB7iQX8rl .container {
    flex-wrap: nowrap;
  }
}
.cid-uqB7iQX8rl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqB7iQX8rl .dropdown-menu,
.cid-uqB7iQX8rl .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-uqB7iQX8rl .nav-item:focus,
.cid-uqB7iQX8rl .nav-link:focus {
  outline: none;
}
.cid-uqB7iQX8rl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqB7iQX8rl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqB7iQX8rl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqB7iQX8rl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqB7iQX8rl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqB7iQX8rl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqB7iQX8rl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-uqB7iQX8rl .navbar.opened {
  transition: all 0.3s;
}
.cid-uqB7iQX8rl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqB7iQX8rl .navbar .navbar-logo img {
  width: auto;
}
.cid-uqB7iQX8rl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqB7iQX8rl .navbar.collapsed {
  justify-content: center;
}
.cid-uqB7iQX8rl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqB7iQX8rl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqB7iQX8rl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqB7iQX8rl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqB7iQX8rl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqB7iQX8rl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqB7iQX8rl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqB7iQX8rl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqB7iQX8rl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqB7iQX8rl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqB7iQX8rl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqB7iQX8rl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqB7iQX8rl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqB7iQX8rl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqB7iQX8rl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqB7iQX8rl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqB7iQX8rl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqB7iQX8rl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqB7iQX8rl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqB7iQX8rl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqB7iQX8rl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqB7iQX8rl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqB7iQX8rl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqB7iQX8rl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uqB7iQX8rl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqB7iQX8rl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqB7iQX8rl .dropdown-item.active,
.cid-uqB7iQX8rl .dropdown-item:active {
  background-color: transparent;
}
.cid-uqB7iQX8rl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqB7iQX8rl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqB7iQX8rl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqB7iQX8rl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-uqB7iQX8rl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqB7iQX8rl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqB7iQX8rl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqB7iQX8rl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqB7iQX8rl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqB7iQX8rl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqB7iQX8rl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqB7iQX8rl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqB7iQX8rl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqB7iQX8rl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqB7iQX8rl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqB7iQX8rl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqB7iQX8rl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqB7iQX8rl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqB7iQX8rl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqB7iQX8rl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqB7iQX8rl .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-uqB7iQX8rl .navbar {
    height: 70px;
  }
  .cid-uqB7iQX8rl .navbar.opened {
    height: auto;
  }
  .cid-uqB7iQX8rl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqB7iRwQgW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-uqB7iRwQgW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqB7iRwQgW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqB7iRwQgW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uqB7iRwQgW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqB7iRwQgW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqB7iRwQgW .mbr-text,
.cid-uqB7iRwQgW .mbr-section-btn {
  text-align: left;
}
.cid-uqB7iRwQgW .mbr-section-title {
  text-align: left;
}
.cid-uqB7iRXfiv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-uqB7iRXfiv .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqB7iRXfiv .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uqB7iRXfiv .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uqB7iRXfiv .mbr-section-title {
  text-align: left;
}
.cid-uqB7iSdfAa {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #d6d3d3;
}
.cid-uqB7iSdfAa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqB7iSdfAa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqB7iSdfAa .video-wrapper iframe {
  width: 100%;
}
.cid-uqB7iSdfAa .mbr-section-title,
.cid-uqB7iSdfAa .mbr-section-subtitle,
.cid-uqB7iSdfAa .mbr-text {
  text-align: center;
}
.cid-urPEiuzr7R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-urPEiuzr7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPEiuzr7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPEiuzr7R .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-urPEiuzr7R .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urPEiuzr7R .row {
    text-align: center;
  }
  .cid-urPEiuzr7R .social-row {
    justify-content: center;
  }
}
.cid-urPEiuzr7R .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 0rem;
  }
}
.cid-urPEiuzr7R .mbr-text {
  color: #bbbbbb;
}
.cid-urPEiuzr7R .mbr-iconfont {
  color: black;
}
.cid-tGmVKO0FGX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tGmVKO0FGX nav.navbar {
  position: fixed;
}
.cid-tGmVKO0FGX .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-tGmVKO0FGX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGmVKO0FGX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGmVKO0FGX .dropdown-item:hover,
.cid-tGmVKO0FGX .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-tGmVKO0FGX .dropdown-item:hover span {
  color: white;
}
.cid-tGmVKO0FGX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGmVKO0FGX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGmVKO0FGX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGmVKO0FGX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGmVKO0FGX .nav-link {
  position: relative;
}
.cid-tGmVKO0FGX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tGmVKO0FGX .container {
    flex-wrap: nowrap;
  }
}
.cid-tGmVKO0FGX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGmVKO0FGX .dropdown-menu,
.cid-tGmVKO0FGX .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-tGmVKO0FGX .nav-item:focus,
.cid-tGmVKO0FGX .nav-link:focus {
  outline: none;
}
.cid-tGmVKO0FGX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGmVKO0FGX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGmVKO0FGX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGmVKO0FGX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGmVKO0FGX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGmVKO0FGX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGmVKO0FGX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-tGmVKO0FGX .navbar.opened {
  transition: all 0.3s;
}
.cid-tGmVKO0FGX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGmVKO0FGX .navbar .navbar-logo img {
  width: auto;
}
.cid-tGmVKO0FGX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGmVKO0FGX .navbar.collapsed {
  justify-content: center;
}
.cid-tGmVKO0FGX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGmVKO0FGX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGmVKO0FGX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGmVKO0FGX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGmVKO0FGX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tGmVKO0FGX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGmVKO0FGX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGmVKO0FGX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGmVKO0FGX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGmVKO0FGX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGmVKO0FGX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGmVKO0FGX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGmVKO0FGX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tGmVKO0FGX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGmVKO0FGX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGmVKO0FGX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGmVKO0FGX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGmVKO0FGX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGmVKO0FGX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tGmVKO0FGX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tGmVKO0FGX .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGmVKO0FGX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGmVKO0FGX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGmVKO0FGX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGmVKO0FGX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGmVKO0FGX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGmVKO0FGX .dropdown-item.active,
.cid-tGmVKO0FGX .dropdown-item:active {
  background-color: transparent;
}
.cid-tGmVKO0FGX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGmVKO0FGX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGmVKO0FGX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGmVKO0FGX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-tGmVKO0FGX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGmVKO0FGX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGmVKO0FGX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGmVKO0FGX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGmVKO0FGX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGmVKO0FGX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGmVKO0FGX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGmVKO0FGX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGmVKO0FGX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGmVKO0FGX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGmVKO0FGX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGmVKO0FGX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGmVKO0FGX .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-tGmVKO0FGX .navbar {
    height: 70px;
  }
  .cid-tGmVKO0FGX .navbar.opened {
    height: auto;
  }
  .cid-tGmVKO0FGX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urTHSNkEBR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-urTHSNkEBR .mbr-fallback-image.disabled {
  display: none;
}
.cid-urTHSNkEBR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urTHSNkEBR .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-urTHSNkEBR .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-urTHSNkEBR .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-urTHSNkEBR .mbr-text,
.cid-urTHSNkEBR .mbr-section-btn {
  text-align: left;
}
.cid-urTHSNkEBR .mbr-section-title {
  text-align: left;
}
.cid-uqvBdaL2wY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-uqvBdaL2wY .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqvBdaL2wY .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uqvBdaL2wY .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uqvBdaL2wY .mbr-section-title {
  text-align: left;
}
.cid-urU6zjpK10 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-urU6zjpK10 img,
.cid-urU6zjpK10 .item-img {
  width: 100%;
}
.cid-urU6zjpK10 .item:focus,
.cid-urU6zjpK10 span:focus {
  outline: none;
}
.cid-urU6zjpK10 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urU6zjpK10 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d6d3d3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urU6zjpK10 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urU6zjpK10 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urU6zjpK10 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urU6zjpK10 .mbr-section-title {
  color: #232323;
}
.cid-urU6zjpK10 .mbr-text,
.cid-urU6zjpK10 .mbr-section-btn {
  text-align: left;
}
.cid-urU6zjpK10 .item-title {
  text-align: center;
}
.cid-urU6zjpK10 .item-subtitle {
  text-align: center;
}
.cid-urxOTBjkay {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #d6d3d3;
}
.cid-urxOTBjkay .mbr-fallback-image.disabled {
  display: none;
}
.cid-urxOTBjkay .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urxOTBjkay .video-wrapper iframe {
  width: 100%;
}
.cid-urxOTBjkay .mbr-section-title,
.cid-urxOTBjkay .mbr-section-subtitle,
.cid-urxOTBjkay .mbr-text {
  text-align: center;
}
.cid-urPEiuzr7R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-urPEiuzr7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPEiuzr7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPEiuzr7R .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-urPEiuzr7R .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urPEiuzr7R .row {
    text-align: center;
  }
  .cid-urPEiuzr7R .social-row {
    justify-content: center;
  }
}
.cid-urPEiuzr7R .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 0rem;
  }
}
.cid-urPEiuzr7R .mbr-text {
  color: #bbbbbb;
}
.cid-urPEiuzr7R .mbr-iconfont {
  color: black;
}
.cid-urxRB1foM0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-urxRB1foM0 nav.navbar {
  position: fixed;
}
.cid-urxRB1foM0 .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-urxRB1foM0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urxRB1foM0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urxRB1foM0 .dropdown-item:hover,
.cid-urxRB1foM0 .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-urxRB1foM0 .dropdown-item:hover span {
  color: white;
}
.cid-urxRB1foM0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urxRB1foM0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urxRB1foM0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urxRB1foM0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urxRB1foM0 .nav-link {
  position: relative;
}
.cid-urxRB1foM0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-urxRB1foM0 .container {
    flex-wrap: nowrap;
  }
}
.cid-urxRB1foM0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urxRB1foM0 .dropdown-menu,
.cid-urxRB1foM0 .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-urxRB1foM0 .nav-item:focus,
.cid-urxRB1foM0 .nav-link:focus {
  outline: none;
}
.cid-urxRB1foM0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urxRB1foM0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urxRB1foM0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urxRB1foM0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urxRB1foM0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urxRB1foM0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urxRB1foM0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-urxRB1foM0 .navbar.opened {
  transition: all 0.3s;
}
.cid-urxRB1foM0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urxRB1foM0 .navbar .navbar-logo img {
  width: auto;
}
.cid-urxRB1foM0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urxRB1foM0 .navbar.collapsed {
  justify-content: center;
}
.cid-urxRB1foM0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urxRB1foM0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urxRB1foM0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urxRB1foM0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urxRB1foM0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-urxRB1foM0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urxRB1foM0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urxRB1foM0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urxRB1foM0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urxRB1foM0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urxRB1foM0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urxRB1foM0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urxRB1foM0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-urxRB1foM0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urxRB1foM0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urxRB1foM0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urxRB1foM0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urxRB1foM0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urxRB1foM0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-urxRB1foM0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-urxRB1foM0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-urxRB1foM0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urxRB1foM0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urxRB1foM0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urxRB1foM0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urxRB1foM0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urxRB1foM0 .dropdown-item.active,
.cid-urxRB1foM0 .dropdown-item:active {
  background-color: transparent;
}
.cid-urxRB1foM0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urxRB1foM0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urxRB1foM0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urxRB1foM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-urxRB1foM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urxRB1foM0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urxRB1foM0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urxRB1foM0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urxRB1foM0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urxRB1foM0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urxRB1foM0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urxRB1foM0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urxRB1foM0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urxRB1foM0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urxRB1foM0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urxRB1foM0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urxRB1foM0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urxRB1foM0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urxRB1foM0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urxRB1foM0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urxRB1foM0 .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-urxRB1foM0 .navbar {
    height: 70px;
  }
  .cid-urxRB1foM0 .navbar.opened {
    height: auto;
  }
  .cid-urxRB1foM0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urxRB1BNo5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-urxRB1BNo5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urxRB1BNo5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urxRB1BNo5 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-urxRB1BNo5 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-urxRB1BNo5 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-urxRB1BNo5 .mbr-text,
.cid-urxRB1BNo5 .mbr-section-btn {
  text-align: left;
}
.cid-urxRB1BNo5 .mbr-section-title {
  text-align: left;
}
.cid-urxRB1T0wC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-urxRB1T0wC .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-urxRB1T0wC .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-urxRB1T0wC .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-urxRB1T0wC .mbr-section-title {
  text-align: left;
}
.cid-urU6a1Jzcd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-urU6a1Jzcd img,
.cid-urU6a1Jzcd .item-img {
  width: 100%;
}
.cid-urU6a1Jzcd .item:focus,
.cid-urU6a1Jzcd span:focus {
  outline: none;
}
.cid-urU6a1Jzcd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urU6a1Jzcd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d6d3d3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urU6a1Jzcd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urU6a1Jzcd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urU6a1Jzcd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urU6a1Jzcd .mbr-section-title {
  color: #232323;
}
.cid-urU6a1Jzcd .mbr-text,
.cid-urU6a1Jzcd .mbr-section-btn {
  text-align: left;
}
.cid-urU6a1Jzcd .item-title {
  text-align: center;
}
.cid-urU6a1Jzcd .item-subtitle {
  text-align: center;
}
.cid-urxSAB7lfI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-urxSAB7lfI .mbr-fallback-image.disabled {
  display: none;
}
.cid-urxSAB7lfI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urxSAB7lfI .video-wrapper iframe {
  width: 100%;
}
.cid-urxSAB7lfI .mbr-section-title,
.cid-urxSAB7lfI .mbr-section-subtitle,
.cid-urxSAB7lfI .mbr-text {
  text-align: center;
}
.cid-urxSFOcfYF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #d6d3d3;
}
.cid-urxSFOcfYF .mbr-fallback-image.disabled {
  display: none;
}
.cid-urxSFOcfYF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urxSFOcfYF .video-wrapper iframe {
  width: 100%;
}
.cid-urxSFOcfYF .mbr-section-title,
.cid-urxSFOcfYF .mbr-section-subtitle,
.cid-urxSFOcfYF .mbr-text {
  text-align: center;
}
.cid-urPEiuzr7R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-urPEiuzr7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPEiuzr7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPEiuzr7R .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-urPEiuzr7R .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urPEiuzr7R .row {
    text-align: center;
  }
  .cid-urPEiuzr7R .social-row {
    justify-content: center;
  }
}
.cid-urPEiuzr7R .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPEiuzr7R .list {
    margin-bottom: 0rem;
  }
}
.cid-urPEiuzr7R .mbr-text {
  color: #bbbbbb;
}
.cid-urPEiuzr7R .mbr-iconfont {
  color: black;
}
.cid-ussSvxnYQq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ussSvxnYQq nav.navbar {
  position: fixed;
}
.cid-ussSvxnYQq .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-ussSvxnYQq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ussSvxnYQq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ussSvxnYQq .dropdown-item:hover,
.cid-ussSvxnYQq .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-ussSvxnYQq .dropdown-item:hover span {
  color: white;
}
.cid-ussSvxnYQq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ussSvxnYQq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ussSvxnYQq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ussSvxnYQq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ussSvxnYQq .nav-link {
  position: relative;
}
.cid-ussSvxnYQq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ussSvxnYQq .container {
    flex-wrap: nowrap;
  }
}
.cid-ussSvxnYQq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ussSvxnYQq .dropdown-menu,
.cid-ussSvxnYQq .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-ussSvxnYQq .nav-item:focus,
.cid-ussSvxnYQq .nav-link:focus {
  outline: none;
}
.cid-ussSvxnYQq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ussSvxnYQq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ussSvxnYQq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ussSvxnYQq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ussSvxnYQq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ussSvxnYQq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ussSvxnYQq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-ussSvxnYQq .navbar.opened {
  transition: all 0.3s;
}
.cid-ussSvxnYQq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ussSvxnYQq .navbar .navbar-logo img {
  width: auto;
}
.cid-ussSvxnYQq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ussSvxnYQq .navbar.collapsed {
  justify-content: center;
}
.cid-ussSvxnYQq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ussSvxnYQq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ussSvxnYQq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ussSvxnYQq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ussSvxnYQq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ussSvxnYQq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ussSvxnYQq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ussSvxnYQq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ussSvxnYQq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ussSvxnYQq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ussSvxnYQq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ussSvxnYQq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ussSvxnYQq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ussSvxnYQq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ussSvxnYQq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ussSvxnYQq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ussSvxnYQq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ussSvxnYQq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ussSvxnYQq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ussSvxnYQq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ussSvxnYQq .navbar.navbar-short {
  min-height: 60px;
}
.cid-ussSvxnYQq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ussSvxnYQq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ussSvxnYQq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ussSvxnYQq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ussSvxnYQq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ussSvxnYQq .dropdown-item.active,
.cid-ussSvxnYQq .dropdown-item:active {
  background-color: transparent;
}
.cid-ussSvxnYQq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ussSvxnYQq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ussSvxnYQq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ussSvxnYQq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-ussSvxnYQq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ussSvxnYQq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ussSvxnYQq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ussSvxnYQq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ussSvxnYQq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ussSvxnYQq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ussSvxnYQq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ussSvxnYQq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ussSvxnYQq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ussSvxnYQq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ussSvxnYQq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ussSvxnYQq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ussSvxnYQq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ussSvxnYQq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ussSvxnYQq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ussSvxnYQq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ussSvxnYQq .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-ussSvxnYQq .navbar {
    height: 70px;
  }
  .cid-ussSvxnYQq .navbar.opened {
    height: auto;
  }
  .cid-ussSvxnYQq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ussSvy598J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-ussSvy598J .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ussSvy598J .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-ussSvy598J .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-ussSvy598J .mbr-section-title {
  text-align: left;
}
.cid-ussSvyz87F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ussSvyz87F .mbr-fallback-image.disabled {
  display: none;
}
.cid-ussSvyz87F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ussSvyz87F .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ussSvyz87F .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ussSvyz87F .row {
    text-align: center;
  }
  .cid-ussSvyz87F .social-row {
    justify-content: center;
  }
}
.cid-ussSvyz87F .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ussSvyz87F .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ussSvyz87F .list {
    margin-bottom: 0rem;
  }
}
.cid-ussSvyz87F .mbr-text {
  color: #bbbbbb;
}
.cid-ussSvyz87F .mbr-iconfont {
  color: black;
}
.cid-ustb24nVxv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ustb24nVxv nav.navbar {
  position: fixed;
}
.cid-ustb24nVxv .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-ustb24nVxv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ustb24nVxv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ustb24nVxv .dropdown-item:hover,
.cid-ustb24nVxv .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-ustb24nVxv .dropdown-item:hover span {
  color: white;
}
.cid-ustb24nVxv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ustb24nVxv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ustb24nVxv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ustb24nVxv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ustb24nVxv .nav-link {
  position: relative;
}
.cid-ustb24nVxv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ustb24nVxv .container {
    flex-wrap: nowrap;
  }
}
.cid-ustb24nVxv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ustb24nVxv .dropdown-menu,
.cid-ustb24nVxv .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-ustb24nVxv .nav-item:focus,
.cid-ustb24nVxv .nav-link:focus {
  outline: none;
}
.cid-ustb24nVxv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ustb24nVxv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ustb24nVxv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ustb24nVxv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ustb24nVxv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ustb24nVxv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ustb24nVxv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-ustb24nVxv .navbar.opened {
  transition: all 0.3s;
}
.cid-ustb24nVxv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ustb24nVxv .navbar .navbar-logo img {
  width: auto;
}
.cid-ustb24nVxv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ustb24nVxv .navbar.collapsed {
  justify-content: center;
}
.cid-ustb24nVxv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ustb24nVxv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ustb24nVxv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ustb24nVxv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ustb24nVxv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ustb24nVxv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ustb24nVxv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ustb24nVxv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ustb24nVxv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ustb24nVxv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ustb24nVxv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ustb24nVxv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ustb24nVxv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ustb24nVxv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ustb24nVxv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ustb24nVxv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ustb24nVxv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ustb24nVxv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ustb24nVxv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ustb24nVxv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ustb24nVxv .navbar.navbar-short {
  min-height: 60px;
}
.cid-ustb24nVxv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ustb24nVxv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ustb24nVxv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ustb24nVxv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ustb24nVxv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ustb24nVxv .dropdown-item.active,
.cid-ustb24nVxv .dropdown-item:active {
  background-color: transparent;
}
.cid-ustb24nVxv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ustb24nVxv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ustb24nVxv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ustb24nVxv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-ustb24nVxv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ustb24nVxv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ustb24nVxv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ustb24nVxv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ustb24nVxv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ustb24nVxv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ustb24nVxv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ustb24nVxv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ustb24nVxv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ustb24nVxv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ustb24nVxv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ustb24nVxv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ustb24nVxv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ustb24nVxv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ustb24nVxv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ustb24nVxv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ustb24nVxv .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-ustb24nVxv .navbar {
    height: 70px;
  }
  .cid-ustb24nVxv .navbar.opened {
    height: auto;
  }
  .cid-ustb24nVxv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ustbCPzrBh {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-ustbCPzrBh .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ustbCPzrBh .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-ustbCPzrBh .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-ustbCPzrBh .mbr-section-title {
  text-align: center;
}
.cid-ustbCPzrBh .mbr-text UL {
  text-align: left;
}
.cid-ustbDvzkqc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-ustbDvzkqc img,
.cid-ustbDvzkqc .item-img {
  width: 100%;
}
.cid-ustbDvzkqc .item:focus,
.cid-ustbDvzkqc span:focus {
  outline: none;
}
.cid-ustbDvzkqc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ustbDvzkqc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d6d3d3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ustbDvzkqc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ustbDvzkqc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ustbDvzkqc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ustbDvzkqc .mbr-section-title {
  color: #232323;
}
.cid-ustbDvzkqc .mbr-text,
.cid-ustbDvzkqc .mbr-section-btn {
  text-align: left;
}
.cid-ustbDvzkqc .item-title {
  text-align: center;
}
.cid-ustbDvzkqc .item-subtitle {
  text-align: center;
}
.cid-ustb254NbQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ustb254NbQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ustb254NbQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ustb254NbQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ustb254NbQ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ustb254NbQ .row {
    text-align: center;
  }
  .cid-ustb254NbQ .social-row {
    justify-content: center;
  }
}
.cid-ustb254NbQ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ustb254NbQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ustb254NbQ .list {
    margin-bottom: 0rem;
  }
}
.cid-ustb254NbQ .mbr-text {
  color: #bbbbbb;
}
.cid-ustb254NbQ .mbr-iconfont {
  color: black;
}
.cid-ustdqWH01R {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ustdqWH01R nav.navbar {
  position: fixed;
}
.cid-ustdqWH01R .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-ustdqWH01R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ustdqWH01R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ustdqWH01R .dropdown-item:hover,
.cid-ustdqWH01R .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-ustdqWH01R .dropdown-item:hover span {
  color: white;
}
.cid-ustdqWH01R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ustdqWH01R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ustdqWH01R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ustdqWH01R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ustdqWH01R .nav-link {
  position: relative;
}
.cid-ustdqWH01R .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ustdqWH01R .container {
    flex-wrap: nowrap;
  }
}
.cid-ustdqWH01R .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ustdqWH01R .dropdown-menu,
.cid-ustdqWH01R .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-ustdqWH01R .nav-item:focus,
.cid-ustdqWH01R .nav-link:focus {
  outline: none;
}
.cid-ustdqWH01R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ustdqWH01R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ustdqWH01R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ustdqWH01R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ustdqWH01R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ustdqWH01R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ustdqWH01R .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-ustdqWH01R .navbar.opened {
  transition: all 0.3s;
}
.cid-ustdqWH01R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ustdqWH01R .navbar .navbar-logo img {
  width: auto;
}
.cid-ustdqWH01R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ustdqWH01R .navbar.collapsed {
  justify-content: center;
}
.cid-ustdqWH01R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ustdqWH01R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ustdqWH01R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ustdqWH01R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ustdqWH01R .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ustdqWH01R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ustdqWH01R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ustdqWH01R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ustdqWH01R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ustdqWH01R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ustdqWH01R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ustdqWH01R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ustdqWH01R .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ustdqWH01R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ustdqWH01R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ustdqWH01R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ustdqWH01R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ustdqWH01R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ustdqWH01R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ustdqWH01R .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ustdqWH01R .navbar.navbar-short {
  min-height: 60px;
}
.cid-ustdqWH01R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ustdqWH01R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ustdqWH01R .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ustdqWH01R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ustdqWH01R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ustdqWH01R .dropdown-item.active,
.cid-ustdqWH01R .dropdown-item:active {
  background-color: transparent;
}
.cid-ustdqWH01R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ustdqWH01R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ustdqWH01R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ustdqWH01R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-ustdqWH01R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ustdqWH01R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ustdqWH01R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ustdqWH01R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ustdqWH01R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ustdqWH01R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ustdqWH01R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ustdqWH01R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ustdqWH01R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ustdqWH01R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ustdqWH01R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ustdqWH01R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ustdqWH01R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ustdqWH01R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ustdqWH01R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ustdqWH01R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ustdqWH01R .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-ustdqWH01R .navbar {
    height: 70px;
  }
  .cid-ustdqWH01R .navbar.opened {
    height: auto;
  }
  .cid-ustdqWH01R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ustdxuVbBF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-ustdxuVbBF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ustdxuVbBF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ustdxuVbBF .text-wrapper {
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-ustdxuVbBF .text-wrapper {
    padding: 2rem;
  }
}
.cid-ustdxuVbBF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-ustdxuVbBF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ustdyB0t9k {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-ustdyB0t9k .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ustdyB0t9k form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ustdyB0t9k form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-ustdyB0t9k form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-usyONszZPk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #d6d3d3;
}
.cid-usyONszZPk .mbr-fallback-image.disabled {
  display: none;
}
.cid-usyONszZPk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usyONszZPk .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-usyONszZPk .item {
    margin-bottom: 4rem;
  }
}
.cid-usyONszZPk .item:last-child .icon-box:before {
  display: none;
}
.cid-usyONszZPk .item.last .icon-box:before {
  display: none;
}
.cid-usyONszZPk .icon-box {
  background: #4479d9;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-usyONszZPk .icon-box {
    margin-right: 1rem;
  }
}
.cid-usyONszZPk .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #4479d9;
  transform: translate(-50%, 0);
}
.cid-usyONszZPk span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-usyONszZPk .card {
    margin-bottom: 2rem;
  }
  .cid-usyONszZPk .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-usyONszZPk .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-usyONszZPk .icon-box::before {
    top: 114%;
  }
}
.cid-ustdzGDuGl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-ustdzGDuGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ustdzGDuGl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ustdzGDuGl .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ustdzGDuGl .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-ustdAcpAcF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #d6d3d3;
}
.cid-ustdAcpAcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ustdAcpAcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ustdAcpAcF .video-wrapper iframe {
  width: 100%;
}
.cid-ustdAcpAcF .mbr-section-title,
.cid-ustdAcpAcF .mbr-section-subtitle,
.cid-ustdAcpAcF .mbr-text {
  text-align: center;
}
.cid-ustdAXbYYt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-ustdAXbYYt .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ustdAXbYYt .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-ustdAXbYYt .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-ustdAXbYYt .mbr-section-title {
  text-align: center;
}
.cid-ustdCjVHr6 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-ustdCjVHr6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ustdCjVHr6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ustdCjVHr6 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-ustdCjVHr6 .mbr-section-title,
.cid-ustdCjVHr6 .mbr-section-subtitle {
  text-align: center;
}
.cid-ustdCjVHr6 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ustdCjVHr6 .card-wrapper {
  border-radius: 4px;
  background-color: #bbbbbb;
}
.cid-ustdCjVHr6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-ustdCjVHr6 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ustdCjVHr6 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ustdCjVHr6 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ustdCjVHr6 .cost {
  color: #d6d3d3;
}
.cid-ustdCjVHr6 .card-title {
  color: #353535;
}
.cid-ustdqXq1Wd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ustdqXq1Wd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ustdqXq1Wd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ustdqXq1Wd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ustdqXq1Wd .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ustdqXq1Wd .row {
    text-align: center;
  }
  .cid-ustdqXq1Wd .social-row {
    justify-content: center;
  }
}
.cid-ustdqXq1Wd .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ustdqXq1Wd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ustdqXq1Wd .list {
    margin-bottom: 0rem;
  }
}
.cid-ustdqXq1Wd .mbr-text {
  color: #bbbbbb;
}
.cid-ustdqXq1Wd .mbr-iconfont {
  color: black;
}
.cid-usAe7NATxr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-usAe7NATxr nav.navbar {
  position: fixed;
}
.cid-usAe7NATxr .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-usAe7NATxr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-usAe7NATxr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-usAe7NATxr .dropdown-item:hover,
.cid-usAe7NATxr .dropdown-item:focus {
  background: #c50c0c !important;
  color: white !important;
}
.cid-usAe7NATxr .dropdown-item:hover span {
  color: white;
}
.cid-usAe7NATxr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-usAe7NATxr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-usAe7NATxr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-usAe7NATxr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-usAe7NATxr .nav-link {
  position: relative;
}
.cid-usAe7NATxr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-usAe7NATxr .container {
    flex-wrap: nowrap;
  }
}
.cid-usAe7NATxr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-usAe7NATxr .dropdown-menu,
.cid-usAe7NATxr .navbar.opened {
  background: #d6d3d3 !important;
}
.cid-usAe7NATxr .nav-item:focus,
.cid-usAe7NATxr .nav-link:focus {
  outline: none;
}
.cid-usAe7NATxr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-usAe7NATxr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-usAe7NATxr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-usAe7NATxr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-usAe7NATxr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-usAe7NATxr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-usAe7NATxr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d6d3d3;
}
.cid-usAe7NATxr .navbar.opened {
  transition: all 0.3s;
}
.cid-usAe7NATxr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-usAe7NATxr .navbar .navbar-logo img {
  width: auto;
}
.cid-usAe7NATxr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-usAe7NATxr .navbar.collapsed {
  justify-content: center;
}
.cid-usAe7NATxr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-usAe7NATxr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-usAe7NATxr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-usAe7NATxr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-usAe7NATxr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-usAe7NATxr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-usAe7NATxr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-usAe7NATxr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-usAe7NATxr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-usAe7NATxr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-usAe7NATxr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-usAe7NATxr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-usAe7NATxr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-usAe7NATxr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-usAe7NATxr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-usAe7NATxr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-usAe7NATxr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-usAe7NATxr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-usAe7NATxr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-usAe7NATxr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-usAe7NATxr .navbar.navbar-short {
  min-height: 60px;
}
.cid-usAe7NATxr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-usAe7NATxr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-usAe7NATxr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-usAe7NATxr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-usAe7NATxr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-usAe7NATxr .dropdown-item.active,
.cid-usAe7NATxr .dropdown-item:active {
  background-color: transparent;
}
.cid-usAe7NATxr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-usAe7NATxr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-usAe7NATxr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-usAe7NATxr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d6d3d3;
}
.cid-usAe7NATxr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-usAe7NATxr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-usAe7NATxr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-usAe7NATxr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-usAe7NATxr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-usAe7NATxr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-usAe7NATxr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-usAe7NATxr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usAe7NATxr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usAe7NATxr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-usAe7NATxr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usAe7NATxr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-usAe7NATxr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-usAe7NATxr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usAe7NATxr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-usAe7NATxr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-usAe7NATxr .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-usAe7NATxr .navbar {
    height: 70px;
  }
  .cid-usAe7NATxr .navbar.opened {
    height: auto;
  }
  .cid-usAe7NATxr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usAeq417iC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-usAeq417iC img,
.cid-usAeq417iC .item-img {
  width: 100%;
}
.cid-usAeq417iC .item:focus,
.cid-usAeq417iC span:focus {
  outline: none;
}
.cid-usAeq417iC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-usAeq417iC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #d6d3d3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-usAeq417iC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usAeq417iC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-usAeq417iC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-usAeq417iC .mbr-section-title {
  color: #232323;
}
.cid-usAeq417iC .mbr-text,
.cid-usAeq417iC .mbr-section-btn {
  text-align: left;
}
.cid-usAeq417iC .item-title {
  text-align: center;
}
.cid-usAeq417iC .item-subtitle {
  text-align: center;
}
.cid-usAeqK1HPG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #d6d3d3;
}
.cid-usAeqK1HPG .mbr-fallback-image.disabled {
  display: none;
}
.cid-usAeqK1HPG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usAeqK1HPG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-usAeqK1HPG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-usAeqK1HPG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-usAeqK1HPG .mbr-section-title {
  text-align: left;
}
.cid-usAeqK1HPG .mbr-text,
.cid-usAeqK1HPG .mbr-section-btn {
  text-align: left;
}
.cid-usAeseCdv0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-usAeseCdv0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usAeseCdv0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usAeseCdv0 .video-wrapper iframe {
  width: 100%;
}
.cid-usAeseCdv0 .mbr-section-title,
.cid-usAeseCdv0 .mbr-section-subtitle,
.cid-usAeseCdv0 .mbr-text {
  text-align: center;
}
.cid-usAeudq5oK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #d6d3d3;
}
.cid-usAeudq5oK .mbr-fallback-image.disabled {
  display: none;
}
.cid-usAeudq5oK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usAeudq5oK .video-wrapper iframe {
  width: 100%;
}
.cid-usAeudq5oK .mbr-section-title,
.cid-usAeudq5oK .mbr-section-subtitle,
.cid-usAeudq5oK .mbr-text {
  text-align: center;
}
.cid-usAe7RedpM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-usAe7RedpM .mbr-fallback-image.disabled {
  display: none;
}
.cid-usAe7RedpM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usAe7RedpM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-usAe7RedpM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usAe7RedpM .row {
    text-align: center;
  }
  .cid-usAe7RedpM .social-row {
    justify-content: center;
  }
}
.cid-usAe7RedpM .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-usAe7RedpM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usAe7RedpM .list {
    margin-bottom: 0rem;
  }
}
.cid-usAe7RedpM .mbr-text {
  color: #bbbbbb;
}
.cid-usAe7RedpM .mbr-iconfont {
  color: black;
}
