body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-2 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-4 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 0.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 0.75rem;
}
/* ---- 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: 1.12rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.98rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.48rem;
    font-size: calc( 0.86rem + (0.6 - 0.86) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.86rem + (0.6 - 0.86) * ((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: #727272 !important;
}
.bg-success {
  background-color: #22aa87 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffed00 !important;
}
.bg-danger {
  background-color: #e32213 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #727272 !important;
  border-color: #727272 !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: #474747 !important;
  border-color: #474747 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #474747 !important;
  border-color: #474747 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #b18e57 !important;
  border-color: #b18e57 !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: #796038 !important;
  border-color: #796038 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #796038 !important;
  border-color: #796038 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #22aa87 !important;
  border-color: #22aa87 !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: #14624e !important;
  border-color: #14624e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #14624e !important;
  border-color: #14624e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffed00 !important;
  border-color: #ffed00 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a89c00 !important;
  border-color: #a89c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #a89c00 !important;
  border-color: #a89c00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e32213 !important;
  border-color: #e32213 !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: #93160c !important;
  border-color: #93160c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #93160c !important;
  border-color: #93160c !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: #727272;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #474747 !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: #727272 !important;
  border-color: #727272 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b18e57;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #796038 !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: #b18e57 !important;
  border-color: #b18e57 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !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: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #22aa87;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #14624e !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: #22aa87 !important;
  border-color: #22aa87 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffed00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a89c00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #ffed00 !important;
  border-color: #ffed00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e32213;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #93160c !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: #e32213 !important;
  border-color: #e32213 !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: #727272 !important;
}
.text-secondary {
  color: #b18e57 !important;
}
.text-success {
  color: #22aa87 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffed00 !important;
}
.text-danger {
  color: #e32213 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #3f3f3f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #6f5833 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #115543 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #998e00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #85140b !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: #727272;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffed00;
}
.alert-danger {
  background-color: #e32213;
}
.mbr-gallery-filter li.active .btn {
  background-color: #727272;
  border-color: #727272;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #727272;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b2b2b2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #6ae1c3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffbcc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #facbc8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #727272 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #727272;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #727272;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #727272;
}
.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: #727272;
  border-bottom-color: #727272;
}
.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: #727272 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #b18e57 !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='%23727272' %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-sFHpMqcXGj .navbar-dropdown {
  position: relative !important;
}
.cid-sFHpMqcXGj .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-sFHpMqcXGj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFHpMqcXGj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFHpMqcXGj .dropdown-item:hover,
.cid-sFHpMqcXGj .dropdown-item:focus {
  background: #727272 !important;
  color: white !important;
}
.cid-sFHpMqcXGj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFHpMqcXGj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFHpMqcXGj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFHpMqcXGj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFHpMqcXGj .nav-link {
  position: relative;
}
.cid-sFHpMqcXGj .container {
  display: flex;
  margin: auto;
}
.cid-sFHpMqcXGj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFHpMqcXGj .dropdown-menu,
.cid-sFHpMqcXGj .navbar.opened {
  background: #000000 !important;
}
.cid-sFHpMqcXGj .nav-item:focus,
.cid-sFHpMqcXGj .nav-link:focus {
  outline: none;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFHpMqcXGj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFHpMqcXGj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFHpMqcXGj .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: #000000;
}
.cid-sFHpMqcXGj .navbar.opened {
  transition: all 0.3s;
}
.cid-sFHpMqcXGj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFHpMqcXGj .navbar .navbar-logo img {
  width: auto;
}
.cid-sFHpMqcXGj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFHpMqcXGj .navbar.collapsed {
  justify-content: center;
}
.cid-sFHpMqcXGj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFHpMqcXGj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFHpMqcXGj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFHpMqcXGj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFHpMqcXGj .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-sFHpMqcXGj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFHpMqcXGj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFHpMqcXGj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFHpMqcXGj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFHpMqcXGj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFHpMqcXGj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFHpMqcXGj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFHpMqcXGj .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-sFHpMqcXGj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFHpMqcXGj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFHpMqcXGj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFHpMqcXGj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFHpMqcXGj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFHpMqcXGj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFHpMqcXGj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFHpMqcXGj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFHpMqcXGj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFHpMqcXGj .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-sFHpMqcXGj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFHpMqcXGj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFHpMqcXGj .dropdown-item.active,
.cid-sFHpMqcXGj .dropdown-item:active {
  background-color: transparent;
}
.cid-sFHpMqcXGj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFHpMqcXGj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFHpMqcXGj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFHpMqcXGj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sFHpMqcXGj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFHpMqcXGj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFHpMqcXGj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFHpMqcXGj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFHpMqcXGj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFHpMqcXGj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFHpMqcXGj .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-sFHpMqcXGj .navbar {
    height: 70px;
  }
  .cid-sFHpMqcXGj .navbar.opened {
    height: auto;
  }
  .cid-sFHpMqcXGj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyvsugBBm4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tyvsugBBm4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyvsugBBm4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyvsugBBm4 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyvsugBBm4 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tyvsugBBm4 .mbr-section-title {
  color: #ffffff;
}
.cid-tAWzvRSPRW {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tAWzvRSPRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAWzvRSPRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAWzvRSPRW .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAWzvRSPRW .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAWzvRSPRW .mbr-section-title {
  color: #ddb16a;
  text-align: left;
}
.cid-tAWzvRSPRW .mbr-section-title DIV {
  text-align: left;
}
.cid-tAWzvRSPRW .mbr-section-title P {
  text-align: center;
}
.cid-tAWzvRSPRW .mbr-text,
.cid-tAWzvRSPRW .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sFHu4seZjP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-sFHu4seZjP .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFHu4seZjP .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFHu4seZjP .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFHu4seZjP .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFHu4seZjP .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sFHu4seZjP .mbr-section-title {
  color: #ffffff;
}
.cid-sFHu2wLoQp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sFHu2wLoQp .row .mbr-text {
  color: #e32213;
}
.cid-txKTibfQhl {
  background-color: #000000;
}
.cid-txKTibfQhl .mbr-fallback-image.disabled {
  display: none;
}
.cid-txKTibfQhl .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-txKTibfQhl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txKTibfQhl .row {
  flex-direction: row-reverse;
}
.cid-txKTibfQhl img {
  width: 100%;
}
.cid-txKUQcB5xD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-txKUQcB5xD .mbr-fallback-image.disabled {
  display: none;
}
.cid-txKUQcB5xD .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-txKUQcB5xD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txKUQcB5xD .row {
  flex-direction: row-reverse;
}
.cid-txKUQcB5xD img {
  width: 100%;
}
.cid-txKXodEpw5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-txKXodEpw5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txKXodEpw5 .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-txKXodEpw5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txKXodEpw5 .row {
  flex-direction: row-reverse;
}
.cid-txKXodEpw5 img {
  width: 100%;
}
.cid-txKXpmL3E8 {
  background-color: #000000;
}
.cid-txKXpmL3E8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txKXpmL3E8 .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-txKXpmL3E8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txKXpmL3E8 .row {
  flex-direction: row-reverse;
}
.cid-txKXpmL3E8 img {
  width: 100%;
}
.cid-tzf5LeOCkL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e32213;
}
.cid-tzf5LeOCkL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzf5LeOCkL .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-tzf5LeOCkL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzf5LeOCkL .row {
  flex-direction: row-reverse;
}
.cid-tzf5LeOCkL img {
  width: 100%;
}
.cid-tzfdevnZP3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e32213;
}
.cid-tzfdevnZP3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfdevnZP3 .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-tzfdevnZP3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzfdevnZP3 .row {
  flex-direction: row-reverse;
}
.cid-tzfdevnZP3 img {
  width: 100%;
}
.cid-tzfdfz20zc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e32213;
}
.cid-tzfdfz20zc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfdfz20zc .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-tzfdfz20zc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzfdfz20zc .row {
  flex-direction: row-reverse;
}
.cid-tzfdfz20zc img {
  width: 100%;
}
.cid-tzfdgdo02Z {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #e32213;
}
.cid-tzfdgdo02Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfdgdo02Z .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-tzfdgdo02Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzfdgdo02Z .row {
  flex-direction: row-reverse;
}
.cid-tzfdgdo02Z img {
  width: 100%;
}
.cid-tyv1ZkxINE {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tyv1ZkxINE .row .mbr-text {
  color: #e32213;
}
.cid-tyv1ZkGCHv {
  background-color: #e32213;
}
.cid-tyv1ZkGCHv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyv1ZkGCHv .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-tyv1ZkGCHv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyv1ZkGCHv .row {
  flex-direction: row-reverse;
}
.cid-tyv1ZkGCHv img {
  width: 100%;
}
.cid-tyv1Zl5ywc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e32213;
}
.cid-tyv1Zl5ywc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyv1Zl5ywc .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-tyv1Zl5ywc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyv1Zl5ywc .row {
  flex-direction: row-reverse;
}
.cid-tyv1Zl5ywc img {
  width: 100%;
}
.cid-tyv1Zlh47a {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e32213;
}
.cid-tyv1Zlh47a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyv1Zlh47a .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-tyv1Zlh47a .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyv1Zlh47a .row {
  flex-direction: row-reverse;
}
.cid-tyv1Zlh47a img {
  width: 100%;
}
.cid-tyv1ZluSsg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e32213;
}
.cid-tyv1ZluSsg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyv1ZluSsg .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-tyv1ZluSsg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyv1ZluSsg .row {
  flex-direction: row-reverse;
}
.cid-tyv1ZluSsg img {
  width: 100%;
}
.cid-tzff2K1rcy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e32213;
}
.cid-tzff2K1rcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzff2K1rcy .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-tzff2K1rcy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzff2K1rcy .row {
  flex-direction: row-reverse;
}
.cid-tzff2K1rcy img {
  width: 100%;
}
.cid-tzff2KG4gm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e32213;
}
.cid-tzff2KG4gm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzff2KG4gm .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-tzff2KG4gm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzff2KG4gm .row {
  flex-direction: row-reverse;
}
.cid-tzff2KG4gm img {
  width: 100%;
}
.cid-tzff2KQnbK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e32213;
}
.cid-tzff2KQnbK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzff2KQnbK .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-tzff2KQnbK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzff2KQnbK .row {
  flex-direction: row-reverse;
}
.cid-tzff2KQnbK img {
  width: 100%;
}
.cid-tzff2KZGUf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e32213;
}
.cid-tzff2KZGUf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzff2KZGUf .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-tzff2KZGUf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzff2KZGUf .row {
  flex-direction: row-reverse;
}
.cid-tzff2KZGUf img {
  width: 100%;
}
.cid-tzffA5qzK5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e32213;
}
.cid-tzffA5qzK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzffA5qzK5 .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-tzffA5qzK5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzffA5qzK5 .row {
  flex-direction: row-reverse;
}
.cid-tzffA5qzK5 img {
  width: 100%;
}
.cid-tzff2L9RrR {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tzff2L9RrR .row .mbr-text {
  color: #e32213;
}
.cid-tzff2LgKIj {
  background-color: #e32213;
}
.cid-tzff2LgKIj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzff2LgKIj .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-tzff2LgKIj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzff2LgKIj .row {
  flex-direction: row-reverse;
}
.cid-tzff2LgKIj img {
  width: 100%;
}
.cid-tzff2Lp2uc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e32213;
}
.cid-tzff2Lp2uc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzff2Lp2uc .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-tzff2Lp2uc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzff2Lp2uc .row {
  flex-direction: row-reverse;
}
.cid-tzff2Lp2uc img {
  width: 100%;
}
.cid-tzff2LyKTg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e32213;
}
.cid-tzff2LyKTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzff2LyKTg .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-tzff2LyKTg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzff2LyKTg .row {
  flex-direction: row-reverse;
}
.cid-tzff2LyKTg img {
  width: 100%;
}
.cid-tzff2LFmpo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e32213;
}
.cid-tzff2LFmpo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzff2LFmpo .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-tzff2LFmpo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzff2LFmpo .row {
  flex-direction: row-reverse;
}
.cid-tzff2LFmpo img {
  width: 100%;
}
.cid-tzYzbPMK3Q .navbar-dropdown {
  position: relative !important;
}
.cid-tzYzbPMK3Q .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-tzYzbPMK3Q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tzYzbPMK3Q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzYzbPMK3Q .dropdown-item:hover,
.cid-tzYzbPMK3Q .dropdown-item:focus {
  background: #727272 !important;
  color: white !important;
}
.cid-tzYzbPMK3Q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tzYzbPMK3Q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tzYzbPMK3Q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tzYzbPMK3Q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzYzbPMK3Q .nav-link {
  position: relative;
}
.cid-tzYzbPMK3Q .container {
  display: flex;
  margin: auto;
}
.cid-tzYzbPMK3Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzYzbPMK3Q .dropdown-menu,
.cid-tzYzbPMK3Q .navbar.opened {
  background: #000000 !important;
}
.cid-tzYzbPMK3Q .nav-item:focus,
.cid-tzYzbPMK3Q .nav-link:focus {
  outline: none;
}
.cid-tzYzbPMK3Q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzYzbPMK3Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzYzbPMK3Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzYzbPMK3Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzYzbPMK3Q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzYzbPMK3Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzYzbPMK3Q .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: #000000;
}
.cid-tzYzbPMK3Q .navbar.opened {
  transition: all 0.3s;
}
.cid-tzYzbPMK3Q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzYzbPMK3Q .navbar .navbar-logo img {
  width: auto;
}
.cid-tzYzbPMK3Q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzYzbPMK3Q .navbar.collapsed {
  justify-content: center;
}
.cid-tzYzbPMK3Q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzYzbPMK3Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tzYzbPMK3Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzYzbPMK3Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzYzbPMK3Q .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-tzYzbPMK3Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzYzbPMK3Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzYzbPMK3Q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzYzbPMK3Q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzYzbPMK3Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzYzbPMK3Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzYzbPMK3Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzYzbPMK3Q .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-tzYzbPMK3Q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzYzbPMK3Q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzYzbPMK3Q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzYzbPMK3Q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzYzbPMK3Q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzYzbPMK3Q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzYzbPMK3Q .navbar.navbar-short {
  min-height: 60px;
}
.cid-tzYzbPMK3Q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tzYzbPMK3Q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tzYzbPMK3Q .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-tzYzbPMK3Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzYzbPMK3Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzYzbPMK3Q .dropdown-item.active,
.cid-tzYzbPMK3Q .dropdown-item:active {
  background-color: transparent;
}
.cid-tzYzbPMK3Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzYzbPMK3Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzYzbPMK3Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzYzbPMK3Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzYzbPMK3Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzYzbPMK3Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzYzbPMK3Q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tzYzbPMK3Q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzYzbPMK3Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tzYzbPMK3Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzYzbPMK3Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzYzbPMK3Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzYzbPMK3Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzYzbPMK3Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzYzbPMK3Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzYzbPMK3Q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzYzbPMK3Q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzYzbPMK3Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzYzbPMK3Q .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tzYzbPMK3Q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzYzbPMK3Q .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-tzYzbPMK3Q .navbar {
    height: 70px;
  }
  .cid-tzYzbPMK3Q .navbar.opened {
    height: auto;
  }
  .cid-tzYzbPMK3Q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzYzbQxZR7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tzYzbQxZR7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzYzbQxZR7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzYzbQxZR7 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzYzbQxZR7 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tzYzbQxZR7 .mbr-section-title {
  color: #ffe161;
  text-align: left;
}
.cid-tzYzbQxZR7 .mbr-section-title DIV {
  text-align: left;
}
.cid-tzYzbQxZR7 .mbr-section-title P {
  text-align: left;
}
.cid-tzYzbQxZR7 .mbr-text,
.cid-tzYzbQxZR7 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tAJFAK4BTz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAJFAK4BTz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAJFAK4BTz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAJFAK4BTz .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAJFAK4BTz .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAJFAK4BTz .mbr-section-title {
  color: #ffed00;
  text-align: left;
}
.cid-tAJFAK4BTz .mbr-text,
.cid-tAJFAK4BTz .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tAF0n7ytX1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAF0n7ytX1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAF0n7ytX1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAF0n7ytX1 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAF0n7ytX1 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAF0n7ytX1 .mbr-section-title {
  color: #ffed00;
  text-align: left;
}
.cid-tAF0n7ytX1 .mbr-section-title DIV {
  text-align: left;
}
.cid-tAF0n7ytX1 .mbr-section-title P {
  text-align: left;
}
.cid-tAF0n7ytX1 .mbr-text,
.cid-tAF0n7ytX1 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tAFYJ8m4pn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAFYJ8m4pn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAFYJ8m4pn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAFYJ8m4pn .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAFYJ8m4pn .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAFYJ8m4pn .mbr-section-title {
  color: #ffed00;
  text-align: left;
}
.cid-tAFYJ8m4pn .mbr-section-title DIV {
  text-align: left;
}
.cid-tAFYJ8m4pn .mbr-section-title P {
  text-align: left;
}
.cid-tAFYJ8m4pn .mbr-text,
.cid-tAFYJ8m4pn .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tzYzbTn5XE {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tzYzbTn5XE .row .mbr-text {
  color: #e32213;
}
.cid-tzYzbTvRAZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tzYzbTvRAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzYzbTvRAZ .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-tzYzbTvRAZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzYzbTvRAZ .row {
  flex-direction: row-reverse;
}
.cid-tzYzbTvRAZ img {
  width: 100%;
}
.cid-tzYzbTEjgx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tzYzbTEjgx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzYzbTEjgx .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-tzYzbTEjgx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzYzbTEjgx .row {
  flex-direction: row-reverse;
}
.cid-tzYzbTEjgx img {
  width: 100%;
}
.cid-tzYzbTLlRk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tzYzbTLlRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzYzbTLlRk .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-tzYzbTLlRk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzYzbTLlRk .row {
  flex-direction: row-reverse;
}
.cid-tzYzbTLlRk img {
  width: 100%;
}
.cid-tzYzbU0Wxr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tzYzbU0Wxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzYzbU0Wxr .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-tzYzbU0Wxr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzYzbU0Wxr .row {
  flex-direction: row-reverse;
}
.cid-tzYzbU0Wxr img {
  width: 100%;
}
.cid-tAEyIPTbIW .navbar-dropdown {
  position: relative !important;
}
.cid-tAEyIPTbIW .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-tAEyIPTbIW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAEyIPTbIW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAEyIPTbIW .dropdown-item:hover,
.cid-tAEyIPTbIW .dropdown-item:focus {
  background: #727272 !important;
  color: white !important;
}
.cid-tAEyIPTbIW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAEyIPTbIW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAEyIPTbIW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAEyIPTbIW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAEyIPTbIW .nav-link {
  position: relative;
}
.cid-tAEyIPTbIW .container {
  display: flex;
  margin: auto;
}
.cid-tAEyIPTbIW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAEyIPTbIW .dropdown-menu,
.cid-tAEyIPTbIW .navbar.opened {
  background: #000000 !important;
}
.cid-tAEyIPTbIW .nav-item:focus,
.cid-tAEyIPTbIW .nav-link:focus {
  outline: none;
}
.cid-tAEyIPTbIW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAEyIPTbIW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAEyIPTbIW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAEyIPTbIW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAEyIPTbIW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAEyIPTbIW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAEyIPTbIW .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: #000000;
}
.cid-tAEyIPTbIW .navbar.opened {
  transition: all 0.3s;
}
.cid-tAEyIPTbIW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAEyIPTbIW .navbar .navbar-logo img {
  width: auto;
}
.cid-tAEyIPTbIW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAEyIPTbIW .navbar.collapsed {
  justify-content: center;
}
.cid-tAEyIPTbIW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAEyIPTbIW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tAEyIPTbIW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAEyIPTbIW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAEyIPTbIW .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-tAEyIPTbIW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAEyIPTbIW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAEyIPTbIW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAEyIPTbIW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAEyIPTbIW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAEyIPTbIW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAEyIPTbIW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAEyIPTbIW .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-tAEyIPTbIW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAEyIPTbIW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAEyIPTbIW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAEyIPTbIW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAEyIPTbIW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAEyIPTbIW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tAEyIPTbIW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAEyIPTbIW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAEyIPTbIW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAEyIPTbIW .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-tAEyIPTbIW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAEyIPTbIW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAEyIPTbIW .dropdown-item.active,
.cid-tAEyIPTbIW .dropdown-item:active {
  background-color: transparent;
}
.cid-tAEyIPTbIW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAEyIPTbIW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAEyIPTbIW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAEyIPTbIW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tAEyIPTbIW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAEyIPTbIW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAEyIPTbIW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAEyIPTbIW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAEyIPTbIW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAEyIPTbIW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tAEyIPTbIW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAEyIPTbIW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAEyIPTbIW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAEyIPTbIW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAEyIPTbIW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAEyIPTbIW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAEyIPTbIW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAEyIPTbIW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAEyIPTbIW .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tAEyIPTbIW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAEyIPTbIW .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-tAEyIPTbIW .navbar {
    height: 70px;
  }
  .cid-tAEyIPTbIW .navbar.opened {
    height: auto;
  }
  .cid-tAEyIPTbIW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uC8hrUN3iv {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uC8hrUN3iv img,
.cid-uC8hrUN3iv .item-img {
  width: 100%;
}
.cid-uC8hrUN3iv .item:focus,
.cid-uC8hrUN3iv span:focus {
  outline: none;
}
.cid-uC8hrUN3iv .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uC8hrUN3iv .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uC8hrUN3iv .item {
  padding: 0;
  margin: 0;
}
.cid-uC8hrUN3iv .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uC8hrUN3iv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uC8hrUN3iv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uC8hrUN3iv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uC8hrUN3iv .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uC8hrUN3iv .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uC8hrUN3iv .mbr-text,
.cid-uC8hrUN3iv .mbr-section-btn {
  color: #727272;
}
.cid-uC8hrUN3iv .item-title {
  color: #232323;
}
.cid-tAEyIRjn1w {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEyIRjn1w img,
.cid-tAEyIRjn1w .item-img {
  width: 100%;
}
.cid-tAEyIRjn1w .item:focus,
.cid-tAEyIRjn1w span:focus {
  outline: none;
}
.cid-tAEyIRjn1w .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEyIRjn1w .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEyIRjn1w .item {
  padding: 0;
  margin: 0;
}
.cid-tAEyIRjn1w .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEyIRjn1w .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEyIRjn1w .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEyIRjn1w .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEyIRjn1w .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyIRjn1w .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyIRjn1w .mbr-text,
.cid-tAEyIRjn1w .mbr-section-btn {
  color: #727272;
}
.cid-tAEyIRjn1w .item-title {
  color: #232323;
}
.cid-u9yroFBAlr {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u9yroFBAlr img,
.cid-u9yroFBAlr .item-img {
  width: 100%;
}
.cid-u9yroFBAlr .item:focus,
.cid-u9yroFBAlr span:focus {
  outline: none;
}
.cid-u9yroFBAlr .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u9yroFBAlr .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u9yroFBAlr .item {
  padding: 0;
  margin: 0;
}
.cid-u9yroFBAlr .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u9yroFBAlr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u9yroFBAlr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u9yroFBAlr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u9yroFBAlr .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-u9yroFBAlr .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u9yroFBAlr .mbr-text,
.cid-u9yroFBAlr .mbr-section-btn {
  color: #727272;
}
.cid-u9yroFBAlr .item-title {
  color: #232323;
}
.cid-tAEyIScTSg {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEyIScTSg img,
.cid-tAEyIScTSg .item-img {
  width: 100%;
}
.cid-tAEyIScTSg .item:focus,
.cid-tAEyIScTSg span:focus {
  outline: none;
}
.cid-tAEyIScTSg .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEyIScTSg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEyIScTSg .item {
  padding: 0;
  margin: 0;
}
.cid-tAEyIScTSg .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEyIScTSg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEyIScTSg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEyIScTSg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEyIScTSg .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyIScTSg .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyIScTSg .item-title {
  color: #232323;
}
.cid-tAEyIScTSg .mbr-text,
.cid-tAEyIScTSg .mbr-section-btn {
  color: #727272;
}
.cid-tAEyISn7Ue {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEyISn7Ue img,
.cid-tAEyISn7Ue .item-img {
  width: 100%;
}
.cid-tAEyISn7Ue .item:focus,
.cid-tAEyISn7Ue span:focus {
  outline: none;
}
.cid-tAEyISn7Ue .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEyISn7Ue .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEyISn7Ue .item {
  padding: 0;
  margin: 0;
}
.cid-tAEyISn7Ue .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEyISn7Ue .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEyISn7Ue .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEyISn7Ue .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEyISn7Ue .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyISn7Ue .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyISn7Ue .item-title {
  color: #232323;
}
.cid-tAEyISn7Ue .mbr-text,
.cid-tAEyISn7Ue .mbr-section-btn {
  color: #727272;
}
.cid-tAEyISxHKZ {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEyISxHKZ img,
.cid-tAEyISxHKZ .item-img {
  width: 100%;
}
.cid-tAEyISxHKZ .item:focus,
.cid-tAEyISxHKZ span:focus {
  outline: none;
}
.cid-tAEyISxHKZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEyISxHKZ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEyISxHKZ .item {
  padding: 0;
  margin: 0;
}
.cid-tAEyISxHKZ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEyISxHKZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEyISxHKZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEyISxHKZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEyISxHKZ .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyISxHKZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyISxHKZ .mbr-text,
.cid-tAEyISxHKZ .mbr-section-btn {
  color: #727272;
}
.cid-tAEyISxHKZ .item-title {
  color: #232323;
}
.cid-tAEyISKJEx {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEyISKJEx img,
.cid-tAEyISKJEx .item-img {
  width: 100%;
}
.cid-tAEyISKJEx .item:focus,
.cid-tAEyISKJEx span:focus {
  outline: none;
}
.cid-tAEyISKJEx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEyISKJEx .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEyISKJEx .item {
  padding: 0;
  margin: 0;
}
.cid-tAEyISKJEx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEyISKJEx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEyISKJEx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEyISKJEx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEyISKJEx .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyISKJEx .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEyISKJEx .item-title {
  color: #232323;
}
.cid-tAEyISKJEx .mbr-text,
.cid-tAEyISKJEx .mbr-section-btn {
  color: #727272;
}
.cid-tAENoHWxfQ {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAENoHWxfQ img,
.cid-tAENoHWxfQ .item-img {
  width: 100%;
}
.cid-tAENoHWxfQ .item:focus,
.cid-tAENoHWxfQ span:focus {
  outline: none;
}
.cid-tAENoHWxfQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAENoHWxfQ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAENoHWxfQ .item {
  padding: 0;
  margin: 0;
}
.cid-tAENoHWxfQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAENoHWxfQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAENoHWxfQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAENoHWxfQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAENoHWxfQ .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAENoHWxfQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAENoHWxfQ .item-title {
  color: #232323;
}
.cid-tAENoHWxfQ .mbr-text,
.cid-tAENoHWxfQ .mbr-section-btn {
  color: #727272;
}
.cid-tAERpIgjC2 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAERpIgjC2 img,
.cid-tAERpIgjC2 .item-img {
  width: 100%;
}
.cid-tAERpIgjC2 .item:focus,
.cid-tAERpIgjC2 span:focus {
  outline: none;
}
.cid-tAERpIgjC2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAERpIgjC2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAERpIgjC2 .item {
  padding: 0;
  margin: 0;
}
.cid-tAERpIgjC2 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAERpIgjC2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAERpIgjC2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAERpIgjC2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAERpIgjC2 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAERpIgjC2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAERpIgjC2 .item-title {
  color: #232323;
}
.cid-tAERpIgjC2 .mbr-text,
.cid-tAERpIgjC2 .mbr-section-btn {
  color: #727272;
}
.cid-tAES2vCT6X {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAES2vCT6X img,
.cid-tAES2vCT6X .item-img {
  width: 100%;
}
.cid-tAES2vCT6X .item:focus,
.cid-tAES2vCT6X span:focus {
  outline: none;
}
.cid-tAES2vCT6X .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAES2vCT6X .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAES2vCT6X .item {
  padding: 0;
  margin: 0;
}
.cid-tAES2vCT6X .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAES2vCT6X .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAES2vCT6X .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAES2vCT6X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAES2vCT6X .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAES2vCT6X .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAES2vCT6X .item-title {
  color: #232323;
}
.cid-tAES2vCT6X .mbr-text,
.cid-tAES2vCT6X .mbr-section-btn {
  color: #727272;
}
.cid-tAES3JbS2M {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAES3JbS2M img,
.cid-tAES3JbS2M .item-img {
  width: 100%;
}
.cid-tAES3JbS2M .item:focus,
.cid-tAES3JbS2M span:focus {
  outline: none;
}
.cid-tAES3JbS2M .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAES3JbS2M .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAES3JbS2M .item {
  padding: 0;
  margin: 0;
}
.cid-tAES3JbS2M .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAES3JbS2M .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAES3JbS2M .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAES3JbS2M .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAES3JbS2M .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAES3JbS2M .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAES3JbS2M .item-title {
  color: #232323;
}
.cid-tAES3JbS2M .mbr-text,
.cid-tAES3JbS2M .mbr-section-btn {
  color: #727272;
}
.cid-tAEU6eDuCT {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEU6eDuCT img,
.cid-tAEU6eDuCT .item-img {
  width: 100%;
}
.cid-tAEU6eDuCT .item:focus,
.cid-tAEU6eDuCT span:focus {
  outline: none;
}
.cid-tAEU6eDuCT .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEU6eDuCT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEU6eDuCT .item {
  padding: 0;
  margin: 0;
}
.cid-tAEU6eDuCT .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEU6eDuCT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEU6eDuCT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEU6eDuCT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEU6eDuCT .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEU6eDuCT .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEU6eDuCT .item-title {
  color: #232323;
}
.cid-tAEU6eDuCT .mbr-text,
.cid-tAEU6eDuCT .mbr-section-btn {
  color: #727272;
}
.cid-tAEU6XiNvE {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEU6XiNvE img,
.cid-tAEU6XiNvE .item-img {
  width: 100%;
}
.cid-tAEU6XiNvE .item:focus,
.cid-tAEU6XiNvE span:focus {
  outline: none;
}
.cid-tAEU6XiNvE .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEU6XiNvE .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEU6XiNvE .item {
  padding: 0;
  margin: 0;
}
.cid-tAEU6XiNvE .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEU6XiNvE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEU6XiNvE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEU6XiNvE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEU6XiNvE .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEU6XiNvE .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEU6XiNvE .item-title {
  color: #232323;
}
.cid-tAEU6XiNvE .mbr-text,
.cid-tAEU6XiNvE .mbr-section-btn {
  color: #727272;
}
.cid-tAEVf4ggFg {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEVf4ggFg img,
.cid-tAEVf4ggFg .item-img {
  width: 100%;
}
.cid-tAEVf4ggFg .item:focus,
.cid-tAEVf4ggFg span:focus {
  outline: none;
}
.cid-tAEVf4ggFg .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEVf4ggFg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEVf4ggFg .item {
  padding: 0;
  margin: 0;
}
.cid-tAEVf4ggFg .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEVf4ggFg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEVf4ggFg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEVf4ggFg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEVf4ggFg .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEVf4ggFg .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEVf4ggFg .item-title {
  color: #232323;
}
.cid-tAEVf4ggFg .mbr-text,
.cid-tAEVf4ggFg .mbr-section-btn {
  color: #727272;
}
.cid-tAEVh8KBZU {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEVh8KBZU img,
.cid-tAEVh8KBZU .item-img {
  width: 100%;
}
.cid-tAEVh8KBZU .item:focus,
.cid-tAEVh8KBZU span:focus {
  outline: none;
}
.cid-tAEVh8KBZU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEVh8KBZU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEVh8KBZU .item {
  padding: 0;
  margin: 0;
}
.cid-tAEVh8KBZU .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEVh8KBZU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEVh8KBZU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEVh8KBZU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEVh8KBZU .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEVh8KBZU .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEVh8KBZU .item-title {
  color: #232323;
}
.cid-tAEVh8KBZU .mbr-text,
.cid-tAEVh8KBZU .mbr-section-btn {
  color: #727272;
}
.cid-tAEX7V2mPJ {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAEX7V2mPJ img,
.cid-tAEX7V2mPJ .item-img {
  width: 100%;
}
.cid-tAEX7V2mPJ .item:focus,
.cid-tAEX7V2mPJ span:focus {
  outline: none;
}
.cid-tAEX7V2mPJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAEX7V2mPJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAEX7V2mPJ .item {
  padding: 0;
  margin: 0;
}
.cid-tAEX7V2mPJ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAEX7V2mPJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAEX7V2mPJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAEX7V2mPJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAEX7V2mPJ .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAEX7V2mPJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAEX7V2mPJ .item-title {
  color: #232323;
}
.cid-tAEX7V2mPJ .mbr-text,
.cid-tAEX7V2mPJ .mbr-section-btn {
  color: #727272;
}
.cid-tAGAvvwAUq {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGAvvwAUq img,
.cid-tAGAvvwAUq .item-img {
  width: 100%;
}
.cid-tAGAvvwAUq .item:focus,
.cid-tAGAvvwAUq span:focus {
  outline: none;
}
.cid-tAGAvvwAUq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGAvvwAUq .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGAvvwAUq .item {
  padding: 0;
  margin: 0;
}
.cid-tAGAvvwAUq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGAvvwAUq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGAvvwAUq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGAvvwAUq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGAvvwAUq .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGAvvwAUq .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGAvvwAUq .item-title {
  color: #232323;
}
.cid-tAGAvvwAUq .mbr-text,
.cid-tAGAvvwAUq .mbr-section-btn {
  color: #727272;
}
.cid-tAGAwBNqO5 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGAwBNqO5 img,
.cid-tAGAwBNqO5 .item-img {
  width: 100%;
}
.cid-tAGAwBNqO5 .item:focus,
.cid-tAGAwBNqO5 span:focus {
  outline: none;
}
.cid-tAGAwBNqO5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGAwBNqO5 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGAwBNqO5 .item {
  padding: 0;
  margin: 0;
}
.cid-tAGAwBNqO5 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGAwBNqO5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGAwBNqO5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGAwBNqO5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGAwBNqO5 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGAwBNqO5 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGAwBNqO5 .item-title {
  color: #232323;
}
.cid-tAGAwBNqO5 .mbr-text,
.cid-tAGAwBNqO5 .mbr-section-btn {
  color: #727272;
}
.cid-tAGDH2oqWx {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGDH2oqWx img,
.cid-tAGDH2oqWx .item-img {
  width: 100%;
}
.cid-tAGDH2oqWx .item:focus,
.cid-tAGDH2oqWx span:focus {
  outline: none;
}
.cid-tAGDH2oqWx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGDH2oqWx .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGDH2oqWx .item {
  padding: 0;
  margin: 0;
}
.cid-tAGDH2oqWx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGDH2oqWx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGDH2oqWx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGDH2oqWx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGDH2oqWx .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGDH2oqWx .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGDH2oqWx .item-title {
  color: #232323;
}
.cid-tAGDH2oqWx .mbr-text,
.cid-tAGDH2oqWx .mbr-section-btn {
  color: #727272;
}
.cid-tAGEKfRw55 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGEKfRw55 img,
.cid-tAGEKfRw55 .item-img {
  width: 100%;
}
.cid-tAGEKfRw55 .item:focus,
.cid-tAGEKfRw55 span:focus {
  outline: none;
}
.cid-tAGEKfRw55 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGEKfRw55 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGEKfRw55 .item {
  padding: 0;
  margin: 0;
}
.cid-tAGEKfRw55 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGEKfRw55 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGEKfRw55 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGEKfRw55 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGEKfRw55 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGEKfRw55 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGEKfRw55 .item-title {
  color: #232323;
}
.cid-tAGEKfRw55 .mbr-text,
.cid-tAGEKfRw55 .mbr-section-btn {
  color: #727272;
}
.cid-tAGEKGkHoJ {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGEKGkHoJ img,
.cid-tAGEKGkHoJ .item-img {
  width: 100%;
}
.cid-tAGEKGkHoJ .item:focus,
.cid-tAGEKGkHoJ span:focus {
  outline: none;
}
.cid-tAGEKGkHoJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGEKGkHoJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGEKGkHoJ .item {
  padding: 0;
  margin: 0;
}
.cid-tAGEKGkHoJ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGEKGkHoJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGEKGkHoJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGEKGkHoJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGEKGkHoJ .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGEKGkHoJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGEKGkHoJ .item-title {
  color: #232323;
}
.cid-tAGEKGkHoJ .mbr-text,
.cid-tAGEKGkHoJ .mbr-section-btn {
  color: #727272;
}
.cid-tAGELd0zBN {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGELd0zBN img,
.cid-tAGELd0zBN .item-img {
  width: 100%;
}
.cid-tAGELd0zBN .item:focus,
.cid-tAGELd0zBN span:focus {
  outline: none;
}
.cid-tAGELd0zBN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGELd0zBN .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGELd0zBN .item {
  padding: 0;
  margin: 0;
}
.cid-tAGELd0zBN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGELd0zBN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGELd0zBN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGELd0zBN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGELd0zBN .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGELd0zBN .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGELd0zBN .item-title {
  color: #232323;
}
.cid-tAGELd0zBN .mbr-text,
.cid-tAGELd0zBN .mbr-section-btn {
  color: #727272;
}
.cid-tAGHdoNLqE {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGHdoNLqE img,
.cid-tAGHdoNLqE .item-img {
  width: 100%;
}
.cid-tAGHdoNLqE .item:focus,
.cid-tAGHdoNLqE span:focus {
  outline: none;
}
.cid-tAGHdoNLqE .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGHdoNLqE .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGHdoNLqE .item {
  padding: 0;
  margin: 0;
}
.cid-tAGHdoNLqE .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGHdoNLqE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGHdoNLqE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGHdoNLqE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGHdoNLqE .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGHdoNLqE .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGHdoNLqE .item-title {
  color: #232323;
}
.cid-tAGHdoNLqE .mbr-text,
.cid-tAGHdoNLqE .mbr-section-btn {
  color: #727272;
}
.cid-tAGHdW2FMo {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGHdW2FMo img,
.cid-tAGHdW2FMo .item-img {
  width: 100%;
}
.cid-tAGHdW2FMo .item:focus,
.cid-tAGHdW2FMo span:focus {
  outline: none;
}
.cid-tAGHdW2FMo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGHdW2FMo .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGHdW2FMo .item {
  padding: 0;
  margin: 0;
}
.cid-tAGHdW2FMo .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGHdW2FMo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGHdW2FMo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGHdW2FMo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGHdW2FMo .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGHdW2FMo .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGHdW2FMo .item-title {
  color: #232323;
}
.cid-tAGHdW2FMo .mbr-text,
.cid-tAGHdW2FMo .mbr-section-btn {
  color: #727272;
}
.cid-tAGKacANFn {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGKacANFn img,
.cid-tAGKacANFn .item-img {
  width: 100%;
}
.cid-tAGKacANFn .item:focus,
.cid-tAGKacANFn span:focus {
  outline: none;
}
.cid-tAGKacANFn .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGKacANFn .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGKacANFn .item {
  padding: 0;
  margin: 0;
}
.cid-tAGKacANFn .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGKacANFn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGKacANFn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGKacANFn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGKacANFn .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGKacANFn .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGKacANFn .item-title {
  color: #232323;
}
.cid-tAGKacANFn .mbr-text,
.cid-tAGKacANFn .mbr-section-btn {
  color: #727272;
}
.cid-tAGKbs3Xld {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGKbs3Xld img,
.cid-tAGKbs3Xld .item-img {
  width: 100%;
}
.cid-tAGKbs3Xld .item:focus,
.cid-tAGKbs3Xld span:focus {
  outline: none;
}
.cid-tAGKbs3Xld .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGKbs3Xld .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGKbs3Xld .item {
  padding: 0;
  margin: 0;
}
.cid-tAGKbs3Xld .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGKbs3Xld .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGKbs3Xld .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGKbs3Xld .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGKbs3Xld .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGKbs3Xld .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGKbs3Xld .item-title {
  color: #232323;
}
.cid-tAGKbs3Xld .mbr-text,
.cid-tAGKbs3Xld .mbr-section-btn {
  color: #727272;
}
.cid-tAGBk6Erii {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAGBk6Erii .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAGBk6Erii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAGBk6Erii .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAGBk6Erii .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAGBk6Erii .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-tAGBk6Erii .mbr-section-title DIV {
  text-align: left;
}
.cid-tAGBk6Erii .mbr-section-title P {
  text-align: left;
}
.cid-tAGBk6Erii .mbr-text,
.cid-tAGBk6Erii .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tAGK8WzIo1 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGK8WzIo1 img,
.cid-tAGK8WzIo1 .item-img {
  width: 100%;
}
.cid-tAGK8WzIo1 .item:focus,
.cid-tAGK8WzIo1 span:focus {
  outline: none;
}
.cid-tAGK8WzIo1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGK8WzIo1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGK8WzIo1 .item {
  padding: 0;
  margin: 0;
}
.cid-tAGK8WzIo1 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGK8WzIo1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGK8WzIo1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGK8WzIo1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGK8WzIo1 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGK8WzIo1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGK8WzIo1 .item-title {
  color: #232323;
}
.cid-tAGK8WzIo1 .mbr-text,
.cid-tAGK8WzIo1 .mbr-section-btn {
  color: #727272;
}
.cid-tAGNDcgTry {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGNDcgTry img,
.cid-tAGNDcgTry .item-img {
  width: 100%;
}
.cid-tAGNDcgTry .item:focus,
.cid-tAGNDcgTry span:focus {
  outline: none;
}
.cid-tAGNDcgTry .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGNDcgTry .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGNDcgTry .item {
  padding: 0;
  margin: 0;
}
.cid-tAGNDcgTry .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGNDcgTry .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGNDcgTry .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGNDcgTry .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGNDcgTry .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGNDcgTry .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGNDcgTry .item-title {
  color: #232323;
}
.cid-tAGNDcgTry .mbr-text,
.cid-tAGNDcgTry .mbr-section-btn {
  color: #727272;
}
.cid-tAGNEQNdAm {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGNEQNdAm img,
.cid-tAGNEQNdAm .item-img {
  width: 100%;
}
.cid-tAGNEQNdAm .item:focus,
.cid-tAGNEQNdAm span:focus {
  outline: none;
}
.cid-tAGNEQNdAm .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGNEQNdAm .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGNEQNdAm .item {
  padding: 0;
  margin: 0;
}
.cid-tAGNEQNdAm .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGNEQNdAm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGNEQNdAm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGNEQNdAm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGNEQNdAm .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGNEQNdAm .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGNEQNdAm .item-title {
  color: #232323;
}
.cid-tAGNEQNdAm .mbr-text,
.cid-tAGNEQNdAm .mbr-section-btn {
  color: #727272;
}
.cid-tAGOu5Heza {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGOu5Heza img,
.cid-tAGOu5Heza .item-img {
  width: 100%;
}
.cid-tAGOu5Heza .item:focus,
.cid-tAGOu5Heza span:focus {
  outline: none;
}
.cid-tAGOu5Heza .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGOu5Heza .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGOu5Heza .item {
  padding: 0;
  margin: 0;
}
.cid-tAGOu5Heza .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGOu5Heza .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGOu5Heza .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGOu5Heza .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGOu5Heza .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGOu5Heza .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGOu5Heza .item-title {
  color: #232323;
}
.cid-tAGOu5Heza .mbr-text,
.cid-tAGOu5Heza .mbr-section-btn {
  color: #727272;
}
.cid-tAGOuuqhW5 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGOuuqhW5 img,
.cid-tAGOuuqhW5 .item-img {
  width: 100%;
}
.cid-tAGOuuqhW5 .item:focus,
.cid-tAGOuuqhW5 span:focus {
  outline: none;
}
.cid-tAGOuuqhW5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGOuuqhW5 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGOuuqhW5 .item {
  padding: 0;
  margin: 0;
}
.cid-tAGOuuqhW5 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGOuuqhW5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGOuuqhW5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGOuuqhW5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGOuuqhW5 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGOuuqhW5 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGOuuqhW5 .item-title {
  color: #232323;
}
.cid-tAGOuuqhW5 .mbr-text,
.cid-tAGOuuqhW5 .mbr-section-btn {
  color: #727272;
}
.cid-tAGOv1OMGT {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGOv1OMGT img,
.cid-tAGOv1OMGT .item-img {
  width: 100%;
}
.cid-tAGOv1OMGT .item:focus,
.cid-tAGOv1OMGT span:focus {
  outline: none;
}
.cid-tAGOv1OMGT .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGOv1OMGT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGOv1OMGT .item {
  padding: 0;
  margin: 0;
}
.cid-tAGOv1OMGT .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGOv1OMGT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGOv1OMGT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGOv1OMGT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGOv1OMGT .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGOv1OMGT .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGOv1OMGT .item-title {
  color: #232323;
}
.cid-tAGOv1OMGT .mbr-text,
.cid-tAGOv1OMGT .mbr-section-btn {
  color: #727272;
}
.cid-tAGPApMt9h {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGPApMt9h img,
.cid-tAGPApMt9h .item-img {
  width: 100%;
}
.cid-tAGPApMt9h .item:focus,
.cid-tAGPApMt9h span:focus {
  outline: none;
}
.cid-tAGPApMt9h .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGPApMt9h .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGPApMt9h .item {
  padding: 0;
  margin: 0;
}
.cid-tAGPApMt9h .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGPApMt9h .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGPApMt9h .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGPApMt9h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGPApMt9h .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGPApMt9h .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGPApMt9h .item-title {
  color: #232323;
}
.cid-tAGPApMt9h .mbr-text,
.cid-tAGPApMt9h .mbr-section-btn {
  color: #727272;
}
.cid-tAGPAYxIBG {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGPAYxIBG img,
.cid-tAGPAYxIBG .item-img {
  width: 100%;
}
.cid-tAGPAYxIBG .item:focus,
.cid-tAGPAYxIBG span:focus {
  outline: none;
}
.cid-tAGPAYxIBG .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGPAYxIBG .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGPAYxIBG .item {
  padding: 0;
  margin: 0;
}
.cid-tAGPAYxIBG .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGPAYxIBG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGPAYxIBG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGPAYxIBG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGPAYxIBG .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGPAYxIBG .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGPAYxIBG .item-title {
  color: #232323;
}
.cid-tAGPAYxIBG .mbr-text,
.cid-tAGPAYxIBG .mbr-section-btn {
  color: #727272;
}
.cid-tAGPBwVZNl {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGPBwVZNl img,
.cid-tAGPBwVZNl .item-img {
  width: 100%;
}
.cid-tAGPBwVZNl .item:focus,
.cid-tAGPBwVZNl span:focus {
  outline: none;
}
.cid-tAGPBwVZNl .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGPBwVZNl .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGPBwVZNl .item {
  padding: 0;
  margin: 0;
}
.cid-tAGPBwVZNl .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGPBwVZNl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGPBwVZNl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGPBwVZNl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGPBwVZNl .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGPBwVZNl .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGPBwVZNl .item-title {
  color: #232323;
}
.cid-tAGPBwVZNl .mbr-text,
.cid-tAGPBwVZNl .mbr-section-btn {
  color: #727272;
}
.cid-tAGPBU94op {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tAGPBU94op img,
.cid-tAGPBU94op .item-img {
  width: 100%;
}
.cid-tAGPBU94op .item:focus,
.cid-tAGPBU94op span:focus {
  outline: none;
}
.cid-tAGPBU94op .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAGPBU94op .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAGPBU94op .item {
  padding: 0;
  margin: 0;
}
.cid-tAGPBU94op .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAGPBU94op .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAGPBU94op .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAGPBU94op .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAGPBU94op .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tAGPBU94op .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tAGPBU94op .item-title {
  color: #232323;
}
.cid-tAGPBU94op .mbr-text,
.cid-tAGPBU94op .mbr-section-btn {
  color: #727272;
}
.cid-tAEyISXnpj {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tAEyISXnpj .row .mbr-text {
  color: #e32213;
}
.cid-tAEyIT8jCu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAEyIT8jCu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAEyIT8jCu .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-tAEyIT8jCu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAEyIT8jCu .row {
  flex-direction: row-reverse;
}
.cid-tAEyIT8jCu img {
  width: 100%;
}
.cid-tAEyITlQkc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAEyITlQkc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAEyITlQkc .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-tAEyITlQkc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAEyITlQkc .row {
  flex-direction: row-reverse;
}
.cid-tAEyITlQkc img {
  width: 100%;
}
.cid-tAEyITCXwM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAEyITCXwM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAEyITCXwM .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-tAEyITCXwM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAEyITCXwM .row {
  flex-direction: row-reverse;
}
.cid-tAEyITCXwM img {
  width: 100%;
}
.cid-tAEyITMkSv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAEyITMkSv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAEyITMkSv .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-tAEyITMkSv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAEyITMkSv .row {
  flex-direction: row-reverse;
}
.cid-tAEyITMkSv img {
  width: 100%;
}
.cid-tAG2z9xsfb .navbar-dropdown {
  position: relative !important;
}
.cid-tAG2z9xsfb .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-tAG2z9xsfb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAG2z9xsfb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAG2z9xsfb .dropdown-item:hover,
.cid-tAG2z9xsfb .dropdown-item:focus {
  background: #727272 !important;
  color: white !important;
}
.cid-tAG2z9xsfb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAG2z9xsfb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAG2z9xsfb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAG2z9xsfb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAG2z9xsfb .nav-link {
  position: relative;
}
.cid-tAG2z9xsfb .container {
  display: flex;
  margin: auto;
}
.cid-tAG2z9xsfb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAG2z9xsfb .dropdown-menu,
.cid-tAG2z9xsfb .navbar.opened {
  background: #000000 !important;
}
.cid-tAG2z9xsfb .nav-item:focus,
.cid-tAG2z9xsfb .nav-link:focus {
  outline: none;
}
.cid-tAG2z9xsfb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAG2z9xsfb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAG2z9xsfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAG2z9xsfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAG2z9xsfb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAG2z9xsfb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAG2z9xsfb .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: #000000;
}
.cid-tAG2z9xsfb .navbar.opened {
  transition: all 0.3s;
}
.cid-tAG2z9xsfb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAG2z9xsfb .navbar .navbar-logo img {
  width: auto;
}
.cid-tAG2z9xsfb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAG2z9xsfb .navbar.collapsed {
  justify-content: center;
}
.cid-tAG2z9xsfb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAG2z9xsfb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tAG2z9xsfb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAG2z9xsfb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAG2z9xsfb .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-tAG2z9xsfb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAG2z9xsfb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAG2z9xsfb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAG2z9xsfb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAG2z9xsfb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAG2z9xsfb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAG2z9xsfb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAG2z9xsfb .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-tAG2z9xsfb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAG2z9xsfb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAG2z9xsfb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAG2z9xsfb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAG2z9xsfb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAG2z9xsfb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tAG2z9xsfb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAG2z9xsfb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAG2z9xsfb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAG2z9xsfb .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-tAG2z9xsfb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAG2z9xsfb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAG2z9xsfb .dropdown-item.active,
.cid-tAG2z9xsfb .dropdown-item:active {
  background-color: transparent;
}
.cid-tAG2z9xsfb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAG2z9xsfb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAG2z9xsfb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAG2z9xsfb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tAG2z9xsfb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAG2z9xsfb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAG2z9xsfb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAG2z9xsfb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAG2z9xsfb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAG2z9xsfb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tAG2z9xsfb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAG2z9xsfb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAG2z9xsfb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAG2z9xsfb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAG2z9xsfb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAG2z9xsfb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAG2z9xsfb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAG2z9xsfb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAG2z9xsfb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tAG2z9xsfb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAG2z9xsfb .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-tAG2z9xsfb .navbar {
    height: 70px;
  }
  .cid-tAG2z9xsfb .navbar.opened {
    height: auto;
  }
  .cid-tAG2z9xsfb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9yvWfWJV9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u9yvWfWJV9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9yvWfWJV9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9yvWfWJV9 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9yvWfWJV9 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-u9yvWfWJV9 .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-u9yvWfWJV9 .mbr-text,
.cid-u9yvWfWJV9 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-u9yvWfWJV9 P {
  color: #000000;
}
.cid-uEzmqdGHZ5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uEzmqdGHZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEzmqdGHZ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEzmqdGHZ5 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uEzmqdGHZ5 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uEzmqdGHZ5 .mbr-section-title {
  color: #ddb16a;
  text-align: left;
}
.cid-uEzmqdGHZ5 .mbr-section-title DIV {
  text-align: left;
}
.cid-uEzmqdGHZ5 .mbr-section-title P {
  text-align: left;
}
.cid-uEzmqdGHZ5 .mbr-text,
.cid-uEzmqdGHZ5 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uEzlQJRMUE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uEzlQJRMUE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEzlQJRMUE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEzlQJRMUE .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uEzlQJRMUE .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uEzlQJRMUE .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-uEzlQJRMUE .mbr-text,
.cid-uEzlQJRMUE .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uEzlQJRMUE P {
  color: #000000;
}
.cid-uEzm30OVkv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uEzm30OVkv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEzm30OVkv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEzm30OVkv .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uEzm30OVkv .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uEzm30OVkv .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-uEzm30OVkv .mbr-text,
.cid-uEzm30OVkv .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uEzm30OVkv P {
  color: #000000;
}
.cid-uEzlx2mVbP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uEzlx2mVbP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEzlx2mVbP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEzlx2mVbP .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uEzlx2mVbP .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uEzlx2mVbP .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-uEzlx2mVbP .mbr-text,
.cid-uEzlx2mVbP .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uEzlx2mVbP P {
  color: #000000;
}
.cid-u9yzm6xuHI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u9yzm6xuHI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9yzm6xuHI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9yzm6xuHI .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9yzm6xuHI .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-u9yzm6xuHI .mbr-section-title {
  color: #22a5e5;
  text-align: left;
}
.cid-u9yzm6xuHI .mbr-section-title DIV {
  text-align: left;
}
.cid-u9yzm6xuHI .mbr-section-title P {
  text-align: left;
}
.cid-u9yzm6xuHI .mbr-text,
.cid-u9yzm6xuHI .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-u9yE36d6Y5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u9yE36d6Y5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9yE36d6Y5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9yE36d6Y5 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9yE36d6Y5 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-u9yE36d6Y5 .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-u9yE36d6Y5 .mbr-text,
.cid-u9yE36d6Y5 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-u9yE36d6Y5 P {
  color: #000000;
}
.cid-u9yFPvNGlZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u9yFPvNGlZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9yFPvNGlZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9yFPvNGlZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9yFPvNGlZ .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-u9yFPvNGlZ .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-u9yFPvNGlZ .mbr-text,
.cid-u9yFPvNGlZ .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-u9yFPvNGlZ P {
  color: #000000;
}
.cid-tAH9pbLXsN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAH9pbLXsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAH9pbLXsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAH9pbLXsN .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAH9pbLXsN .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAH9pbLXsN .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-tAH9pbLXsN .mbr-text,
.cid-tAH9pbLXsN .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tAH9pbLXsN P {
  color: #000000;
}
.cid-tAGSsifCrp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAGSsifCrp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAGSsifCrp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAGSsifCrp .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAGSsifCrp .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAGSsifCrp .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-tAGSsifCrp .mbr-section-title DIV {
  text-align: left;
}
.cid-tAGSsifCrp .mbr-section-title P {
  text-align: left;
}
.cid-tAGSsifCrp .mbr-text,
.cid-tAGSsifCrp .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tAGYmqFnGy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAGYmqFnGy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAGYmqFnGy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAGYmqFnGy .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAGYmqFnGy .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAGYmqFnGy .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-tAGYmqFnGy .mbr-text,
.cid-tAGYmqFnGy .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tAGYmqFnGy P {
  color: #000000;
}
.cid-tAH1Jk1h2j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAH1Jk1h2j .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAH1Jk1h2j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAH1Jk1h2j .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAH1Jk1h2j .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAH1Jk1h2j .mbr-section-title {
  color: #22aa87;
  text-align: left;
}
.cid-tAH1Jk1h2j .mbr-text,
.cid-tAH1Jk1h2j .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tAJEAJ0g6o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAJEAJ0g6o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAJEAJ0g6o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAJEAJ0g6o .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAJEAJ0g6o .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAJEAJ0g6o .mbr-section-title {
  color: #ffed00;
  text-align: left;
}
.cid-tAJEAJ0g6o .mbr-text,
.cid-tAJEAJ0g6o .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tAG2zb3q0e {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tAG2zb3q0e .row .mbr-text {
  color: #e32213;
}
.cid-tAH42NUeCX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAH42NUeCX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAH42NUeCX .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-tAH42NUeCX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAH42NUeCX .row {
  flex-direction: row-reverse;
}
.cid-tAH42NUeCX img {
  width: 100%;
}
.cid-tAG2zbbA4i {
  background-color: #000000;
}
.cid-tAG2zbbA4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAG2zbbA4i .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-tAG2zbbA4i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAG2zbbA4i .row {
  flex-direction: row-reverse;
}
.cid-tAG2zbbA4i img {
  width: 100%;
}
.cid-tAG2zboicx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAG2zboicx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAG2zboicx .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-tAG2zboicx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAG2zboicx .row {
  flex-direction: row-reverse;
}
.cid-tAG2zboicx img {
  width: 100%;
}
.cid-tAG2zbELFV {
  background-color: #000000;
}
.cid-tAG2zbELFV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAG2zbELFV .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-tAG2zbELFV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAG2zbELFV .row {
  flex-direction: row-reverse;
}
.cid-tAG2zbELFV img {
  width: 100%;
}
.cid-tAR2eMIHvJ .navbar-dropdown {
  position: relative !important;
}
.cid-tAR2eMIHvJ .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-tAR2eMIHvJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAR2eMIHvJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAR2eMIHvJ .dropdown-item:hover,
.cid-tAR2eMIHvJ .dropdown-item:focus {
  background: #727272 !important;
  color: white !important;
}
.cid-tAR2eMIHvJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAR2eMIHvJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAR2eMIHvJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAR2eMIHvJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAR2eMIHvJ .nav-link {
  position: relative;
}
.cid-tAR2eMIHvJ .container {
  display: flex;
  margin: auto;
}
.cid-tAR2eMIHvJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAR2eMIHvJ .dropdown-menu,
.cid-tAR2eMIHvJ .navbar.opened {
  background: #000000 !important;
}
.cid-tAR2eMIHvJ .nav-item:focus,
.cid-tAR2eMIHvJ .nav-link:focus {
  outline: none;
}
.cid-tAR2eMIHvJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAR2eMIHvJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAR2eMIHvJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAR2eMIHvJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAR2eMIHvJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAR2eMIHvJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAR2eMIHvJ .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: #000000;
}
.cid-tAR2eMIHvJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tAR2eMIHvJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAR2eMIHvJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tAR2eMIHvJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAR2eMIHvJ .navbar.collapsed {
  justify-content: center;
}
.cid-tAR2eMIHvJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAR2eMIHvJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tAR2eMIHvJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAR2eMIHvJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAR2eMIHvJ .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-tAR2eMIHvJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAR2eMIHvJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAR2eMIHvJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAR2eMIHvJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAR2eMIHvJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAR2eMIHvJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAR2eMIHvJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAR2eMIHvJ .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-tAR2eMIHvJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAR2eMIHvJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAR2eMIHvJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAR2eMIHvJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAR2eMIHvJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAR2eMIHvJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tAR2eMIHvJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAR2eMIHvJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAR2eMIHvJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAR2eMIHvJ .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-tAR2eMIHvJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAR2eMIHvJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAR2eMIHvJ .dropdown-item.active,
.cid-tAR2eMIHvJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tAR2eMIHvJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAR2eMIHvJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAR2eMIHvJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAR2eMIHvJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tAR2eMIHvJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAR2eMIHvJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAR2eMIHvJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAR2eMIHvJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAR2eMIHvJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAR2eMIHvJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tAR2eMIHvJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAR2eMIHvJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAR2eMIHvJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAR2eMIHvJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAR2eMIHvJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAR2eMIHvJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAR2eMIHvJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAR2eMIHvJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAR2eMIHvJ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tAR2eMIHvJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAR2eMIHvJ .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-tAR2eMIHvJ .navbar {
    height: 70px;
  }
  .cid-tAR2eMIHvJ .navbar.opened {
    height: auto;
  }
  .cid-tAR2eMIHvJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAR2J4Zqqh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAR2J4Zqqh .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAR2J4Zqqh .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAR2J4Zqqh .mbr-text,
.cid-tAR2J4Zqqh .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tAR2J4Zqqh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tAR2eNWWCx {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tAR2eNWWCx .row .mbr-text {
  color: #e32213;
}
.cid-tAR2eO5BJ8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAR2eO5BJ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAR2eO5BJ8 .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-tAR2eO5BJ8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAR2eO5BJ8 .row {
  flex-direction: row-reverse;
}
.cid-tAR2eO5BJ8 img {
  width: 100%;
}
.cid-tAR2eOd9ta {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAR2eOd9ta .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAR2eOd9ta .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-tAR2eOd9ta .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAR2eOd9ta .row {
  flex-direction: row-reverse;
}
.cid-tAR2eOd9ta img {
  width: 100%;
}
.cid-tAR2eOl4Ep {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAR2eOl4Ep .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAR2eOl4Ep .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-tAR2eOl4Ep .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAR2eOl4Ep .row {
  flex-direction: row-reverse;
}
.cid-tAR2eOl4Ep img {
  width: 100%;
}
.cid-tAR2eOv71v {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAR2eOv71v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAR2eOv71v .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-tAR2eOv71v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAR2eOv71v .row {
  flex-direction: row-reverse;
}
.cid-tAR2eOv71v img {
  width: 100%;
}
.cid-tAR2QvhC4A .navbar-dropdown {
  position: relative !important;
}
.cid-tAR2QvhC4A .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-tAR2QvhC4A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAR2QvhC4A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAR2QvhC4A .dropdown-item:hover,
.cid-tAR2QvhC4A .dropdown-item:focus {
  background: #727272 !important;
  color: white !important;
}
.cid-tAR2QvhC4A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAR2QvhC4A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAR2QvhC4A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAR2QvhC4A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAR2QvhC4A .nav-link {
  position: relative;
}
.cid-tAR2QvhC4A .container {
  display: flex;
  margin: auto;
}
.cid-tAR2QvhC4A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAR2QvhC4A .dropdown-menu,
.cid-tAR2QvhC4A .navbar.opened {
  background: #000000 !important;
}
.cid-tAR2QvhC4A .nav-item:focus,
.cid-tAR2QvhC4A .nav-link:focus {
  outline: none;
}
.cid-tAR2QvhC4A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAR2QvhC4A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAR2QvhC4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAR2QvhC4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAR2QvhC4A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAR2QvhC4A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAR2QvhC4A .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: #000000;
}
.cid-tAR2QvhC4A .navbar.opened {
  transition: all 0.3s;
}
.cid-tAR2QvhC4A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAR2QvhC4A .navbar .navbar-logo img {
  width: auto;
}
.cid-tAR2QvhC4A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAR2QvhC4A .navbar.collapsed {
  justify-content: center;
}
.cid-tAR2QvhC4A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAR2QvhC4A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tAR2QvhC4A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAR2QvhC4A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAR2QvhC4A .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-tAR2QvhC4A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAR2QvhC4A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAR2QvhC4A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAR2QvhC4A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAR2QvhC4A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAR2QvhC4A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAR2QvhC4A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAR2QvhC4A .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-tAR2QvhC4A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAR2QvhC4A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAR2QvhC4A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAR2QvhC4A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAR2QvhC4A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAR2QvhC4A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tAR2QvhC4A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAR2QvhC4A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAR2QvhC4A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAR2QvhC4A .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-tAR2QvhC4A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAR2QvhC4A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAR2QvhC4A .dropdown-item.active,
.cid-tAR2QvhC4A .dropdown-item:active {
  background-color: transparent;
}
.cid-tAR2QvhC4A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAR2QvhC4A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAR2QvhC4A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAR2QvhC4A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tAR2QvhC4A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAR2QvhC4A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAR2QvhC4A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAR2QvhC4A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAR2QvhC4A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAR2QvhC4A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tAR2QvhC4A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAR2QvhC4A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAR2QvhC4A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAR2QvhC4A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAR2QvhC4A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAR2QvhC4A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAR2QvhC4A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAR2QvhC4A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAR2QvhC4A .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tAR2QvhC4A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAR2QvhC4A .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-tAR2QvhC4A .navbar {
    height: 70px;
  }
  .cid-tAR2QvhC4A .navbar.opened {
    height: auto;
  }
  .cid-tAR2QvhC4A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAR31ssTdI {
  padding-top: 3rem;
  padding-bottom: 15rem;
  background-color: #000000;
}
.cid-tAR31ssTdI .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAR31ssTdI .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tAR31ssTdI .mbr-text,
.cid-tAR31ssTdI .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tAR31ssTdI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tAR2QwqANF {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tAR2QwqANF .row .mbr-text {
  color: #e32213;
}
.cid-tAR2QwCTm2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAR2QwCTm2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAR2QwCTm2 .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-tAR2QwCTm2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAR2QwCTm2 .row {
  flex-direction: row-reverse;
}
.cid-tAR2QwCTm2 img {
  width: 100%;
}
.cid-tAR2QwNygV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAR2QwNygV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAR2QwNygV .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-tAR2QwNygV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAR2QwNygV .row {
  flex-direction: row-reverse;
}
.cid-tAR2QwNygV img {
  width: 100%;
}
.cid-tAR2QwUViE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAR2QwUViE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAR2QwUViE .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-tAR2QwUViE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAR2QwUViE .row {
  flex-direction: row-reverse;
}
.cid-tAR2QwUViE img {
  width: 100%;
}
.cid-tAR2Qx1XkR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAR2Qx1XkR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAR2Qx1XkR .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-tAR2Qx1XkR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAR2Qx1XkR .row {
  flex-direction: row-reverse;
}
.cid-tAR2Qx1XkR img {
  width: 100%;
}
.cid-tAX23Ln0Bb .navbar-dropdown {
  position: relative !important;
}
.cid-tAX23Ln0Bb .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-tAX23Ln0Bb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAX23Ln0Bb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAX23Ln0Bb .dropdown-item:hover,
.cid-tAX23Ln0Bb .dropdown-item:focus {
  background: #727272 !important;
  color: white !important;
}
.cid-tAX23Ln0Bb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAX23Ln0Bb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAX23Ln0Bb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAX23Ln0Bb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAX23Ln0Bb .nav-link {
  position: relative;
}
.cid-tAX23Ln0Bb .container {
  display: flex;
  margin: auto;
}
.cid-tAX23Ln0Bb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAX23Ln0Bb .dropdown-menu,
.cid-tAX23Ln0Bb .navbar.opened {
  background: #000000 !important;
}
.cid-tAX23Ln0Bb .nav-item:focus,
.cid-tAX23Ln0Bb .nav-link:focus {
  outline: none;
}
.cid-tAX23Ln0Bb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAX23Ln0Bb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAX23Ln0Bb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAX23Ln0Bb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAX23Ln0Bb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAX23Ln0Bb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAX23Ln0Bb .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: #000000;
}
.cid-tAX23Ln0Bb .navbar.opened {
  transition: all 0.3s;
}
.cid-tAX23Ln0Bb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAX23Ln0Bb .navbar .navbar-logo img {
  width: auto;
}
.cid-tAX23Ln0Bb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAX23Ln0Bb .navbar.collapsed {
  justify-content: center;
}
.cid-tAX23Ln0Bb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAX23Ln0Bb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tAX23Ln0Bb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAX23Ln0Bb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAX23Ln0Bb .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-tAX23Ln0Bb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAX23Ln0Bb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAX23Ln0Bb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAX23Ln0Bb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAX23Ln0Bb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAX23Ln0Bb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAX23Ln0Bb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAX23Ln0Bb .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-tAX23Ln0Bb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAX23Ln0Bb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAX23Ln0Bb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAX23Ln0Bb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAX23Ln0Bb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAX23Ln0Bb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tAX23Ln0Bb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAX23Ln0Bb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAX23Ln0Bb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAX23Ln0Bb .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-tAX23Ln0Bb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAX23Ln0Bb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAX23Ln0Bb .dropdown-item.active,
.cid-tAX23Ln0Bb .dropdown-item:active {
  background-color: transparent;
}
.cid-tAX23Ln0Bb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAX23Ln0Bb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAX23Ln0Bb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAX23Ln0Bb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tAX23Ln0Bb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAX23Ln0Bb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAX23Ln0Bb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAX23Ln0Bb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAX23Ln0Bb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAX23Ln0Bb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tAX23Ln0Bb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAX23Ln0Bb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAX23Ln0Bb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAX23Ln0Bb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAX23Ln0Bb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAX23Ln0Bb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAX23Ln0Bb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAX23Ln0Bb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAX23Ln0Bb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tAX23Ln0Bb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAX23Ln0Bb .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-tAX23Ln0Bb .navbar {
    height: 70px;
  }
  .cid-tAX23Ln0Bb .navbar.opened {
    height: auto;
  }
  .cid-tAX23Ln0Bb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAX2g9icdx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAX2g9icdx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAX2g9icdx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAX2g9icdx .item {
  padding-bottom: 2rem;
}
.cid-tAX2g9icdx .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tAX2g9icdx .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tAX2g9icdx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tAX2g9icdx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tAX2g9icdx .carousel-control,
.cid-tAX2g9icdx .close {
  background: #1b1b1b;
}
.cid-tAX2g9icdx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tAX2g9icdx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tAX2g9icdx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tAX2g9icdx .carousel-control-next span {
  margin-left: 5px;
}
.cid-tAX2g9icdx .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tAX2g9icdx .close::before {
  content: '\e91a';
}
.cid-tAX2g9icdx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tAX2g9icdx .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tAX2g9icdx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tAX2g9icdx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tAX2g9icdx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tAX2g9icdx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tAX2g9icdx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tAX2g9icdx .carousel-indicators li.active,
.cid-tAX2g9icdx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tAX2g9icdx .carousel-indicators li::after,
.cid-tAX2g9icdx .carousel-indicators li::before {
  content: none;
}
.cid-tAX2g9icdx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tAX2g9icdx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tAX2g9icdx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tAX2g9icdx .carousel-indicators {
    display: none;
  }
}
.cid-tAX2g9icdx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tAX2g9icdx .carousel-inner > .active {
  display: block;
}
.cid-tAX2g9icdx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tAX2g9icdx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tAX2g9icdx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tAX2g9icdx .carousel-control,
  .cid-tAX2g9icdx .carousel-indicators,
  .cid-tAX2g9icdx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tAX2g9icdx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tAX2g9icdx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tAX2g9icdx .carousel-indicators .active,
.cid-tAX2g9icdx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tAX2g9icdx .carousel-indicators .active {
  background: #fff;
}
.cid-tAX2g9icdx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tAX2g9icdx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tAX2g9icdx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tAX2g9icdx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tAX2g9icdx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tAX2g9icdx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tAX2g9icdx .carousel {
  width: 100%;
}
.cid-tAX2g9icdx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tAX2g9icdx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tAX2g9icdx .modal.fade .modal-dialog,
.cid-tAX2g9icdx .modal.in .modal-dialog {
  transform: none;
}
.cid-tAX2g9icdx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tAX2g9icdx H6 {
  text-align: center;
}
.cid-tAX23MZG7V {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tAX23MZG7V .row .mbr-text {
  color: #e32213;
}
.cid-tAX23N66t8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAX23N66t8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAX23N66t8 .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-tAX23N66t8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAX23N66t8 .row {
  flex-direction: row-reverse;
}
.cid-tAX23N66t8 img {
  width: 100%;
}
.cid-tAX23Nfxv6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAX23Nfxv6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAX23Nfxv6 .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-tAX23Nfxv6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAX23Nfxv6 .row {
  flex-direction: row-reverse;
}
.cid-tAX23Nfxv6 img {
  width: 100%;
}
.cid-tAX23Nphgj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAX23Nphgj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAX23Nphgj .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-tAX23Nphgj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAX23Nphgj .row {
  flex-direction: row-reverse;
}
.cid-tAX23Nphgj img {
  width: 100%;
}
.cid-tAX23NDAM6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tAX23NDAM6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAX23NDAM6 .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-tAX23NDAM6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAX23NDAM6 .row {
  flex-direction: row-reverse;
}
.cid-tAX23NDAM6 img {
  width: 100%;
}
.cid-uF9PJpd7C7 .navbar-dropdown {
  position: relative !important;
}
.cid-uF9PJpd7C7 .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-uF9PJpd7C7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF9PJpd7C7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF9PJpd7C7 .dropdown-item:hover,
.cid-uF9PJpd7C7 .dropdown-item:focus {
  background: #727272 !important;
  color: white !important;
}
.cid-uF9PJpd7C7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF9PJpd7C7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF9PJpd7C7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF9PJpd7C7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF9PJpd7C7 .nav-link {
  position: relative;
}
.cid-uF9PJpd7C7 .container {
  display: flex;
  margin: auto;
}
.cid-uF9PJpd7C7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF9PJpd7C7 .dropdown-menu,
.cid-uF9PJpd7C7 .navbar.opened {
  background: #000000 !important;
}
.cid-uF9PJpd7C7 .nav-item:focus,
.cid-uF9PJpd7C7 .nav-link:focus {
  outline: none;
}
.cid-uF9PJpd7C7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF9PJpd7C7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF9PJpd7C7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF9PJpd7C7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF9PJpd7C7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF9PJpd7C7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF9PJpd7C7 .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: #000000;
}
.cid-uF9PJpd7C7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uF9PJpd7C7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF9PJpd7C7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uF9PJpd7C7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF9PJpd7C7 .navbar.collapsed {
  justify-content: center;
}
.cid-uF9PJpd7C7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF9PJpd7C7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uF9PJpd7C7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF9PJpd7C7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF9PJpd7C7 .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-uF9PJpd7C7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF9PJpd7C7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF9PJpd7C7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF9PJpd7C7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF9PJpd7C7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF9PJpd7C7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF9PJpd7C7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF9PJpd7C7 .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-uF9PJpd7C7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF9PJpd7C7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF9PJpd7C7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF9PJpd7C7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF9PJpd7C7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF9PJpd7C7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF9PJpd7C7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF9PJpd7C7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF9PJpd7C7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF9PJpd7C7 .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-uF9PJpd7C7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF9PJpd7C7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF9PJpd7C7 .dropdown-item.active,
.cid-uF9PJpd7C7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uF9PJpd7C7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF9PJpd7C7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF9PJpd7C7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF9PJpd7C7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF9PJpd7C7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF9PJpd7C7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF9PJpd7C7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF9PJpd7C7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF9PJpd7C7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF9PJpd7C7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uF9PJpd7C7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF9PJpd7C7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF9PJpd7C7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF9PJpd7C7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF9PJpd7C7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF9PJpd7C7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF9PJpd7C7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF9PJpd7C7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF9PJpd7C7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uF9PJpd7C7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF9PJpd7C7 .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-uF9PJpd7C7 .navbar {
    height: 70px;
  }
  .cid-uF9PJpd7C7 .navbar.opened {
    height: auto;
  }
  .cid-uF9PJpd7C7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uF9PJpQCQD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uF9PJpQCQD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF9PJpQCQD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF9PJpQCQD .item {
  padding-bottom: 2rem;
}
.cid-uF9PJpQCQD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF9PJpQCQD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF9PJpQCQD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF9PJpQCQD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF9PJpQCQD .carousel-control,
.cid-uF9PJpQCQD .close {
  background: #1b1b1b;
}
.cid-uF9PJpQCQD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF9PJpQCQD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF9PJpQCQD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF9PJpQCQD .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF9PJpQCQD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF9PJpQCQD .close::before {
  content: '\e91a';
}
.cid-uF9PJpQCQD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF9PJpQCQD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF9PJpQCQD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF9PJpQCQD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF9PJpQCQD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF9PJpQCQD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF9PJpQCQD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF9PJpQCQD .carousel-indicators li.active,
.cid-uF9PJpQCQD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF9PJpQCQD .carousel-indicators li::after,
.cid-uF9PJpQCQD .carousel-indicators li::before {
  content: none;
}
.cid-uF9PJpQCQD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF9PJpQCQD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF9PJpQCQD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF9PJpQCQD .carousel-indicators {
    display: none;
  }
}
.cid-uF9PJpQCQD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF9PJpQCQD .carousel-inner > .active {
  display: block;
}
.cid-uF9PJpQCQD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF9PJpQCQD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF9PJpQCQD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF9PJpQCQD .carousel-control,
  .cid-uF9PJpQCQD .carousel-indicators,
  .cid-uF9PJpQCQD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF9PJpQCQD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF9PJpQCQD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF9PJpQCQD .carousel-indicators .active,
.cid-uF9PJpQCQD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF9PJpQCQD .carousel-indicators .active {
  background: #fff;
}
.cid-uF9PJpQCQD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF9PJpQCQD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF9PJpQCQD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF9PJpQCQD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF9PJpQCQD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF9PJpQCQD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF9PJpQCQD .carousel {
  width: 100%;
}
.cid-uF9PJpQCQD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF9PJpQCQD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF9PJpQCQD .modal.fade .modal-dialog,
.cid-uF9PJpQCQD .modal.in .modal-dialog {
  transform: none;
}
.cid-uF9PJpQCQD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF9PJpQCQD H6 {
  text-align: center;
}
.cid-uF9PJsH6mX {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uF9PJsH6mX .row .mbr-text {
  color: #e32213;
}
.cid-uF9PJt2pYJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uF9PJt2pYJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF9PJt2pYJ .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-uF9PJt2pYJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uF9PJt2pYJ .row {
  flex-direction: row-reverse;
}
.cid-uF9PJt2pYJ img {
  width: 100%;
}
.cid-uF9PJtj8Gt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uF9PJtj8Gt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF9PJtj8Gt .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-uF9PJtj8Gt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uF9PJtj8Gt .row {
  flex-direction: row-reverse;
}
.cid-uF9PJtj8Gt img {
  width: 100%;
}
.cid-uF9PJtvxfZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uF9PJtvxfZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF9PJtvxfZ .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-uF9PJtvxfZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uF9PJtvxfZ .row {
  flex-direction: row-reverse;
}
.cid-uF9PJtvxfZ img {
  width: 100%;
}
.cid-uF9PJtF6NL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uF9PJtF6NL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF9PJtF6NL .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-uF9PJtF6NL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uF9PJtF6NL .row {
  flex-direction: row-reverse;
}
.cid-uF9PJtF6NL img {
  width: 100%;
}
