body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #7b7676 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #7b7676 !important;
  border-color: #7b7676 !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: #4f4c4c !important;
  border-color: #4f4c4c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4f4c4c !important;
  border-color: #4f4c4c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #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: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7b7676;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #4f4c4c !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: #7b7676 !important;
  border-color: #7b7676 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: 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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #7b7676 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #474444 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #7b7676;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #7b7676;
  border-color: #7b7676;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #7b7676;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bab7b7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #7b7676 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #7b7676;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #7b7676;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #7b7676;
}
.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: #7b7676;
  border-bottom-color: #7b7676;
}
.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: #7b7676 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%237b7676' %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-sPT6xmmWrk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPT6xmmWrk nav.navbar {
  position: fixed;
}
.cid-sPT6xmmWrk .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-sPT6xmmWrk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPT6xmmWrk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPT6xmmWrk .dropdown-item:hover,
.cid-sPT6xmmWrk .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sPT6xmmWrk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPT6xmmWrk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPT6xmmWrk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPT6xmmWrk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPT6xmmWrk .nav-link {
  position: relative;
}
.cid-sPT6xmmWrk .container {
  display: flex;
  margin: auto;
}
.cid-sPT6xmmWrk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPT6xmmWrk .dropdown-menu,
.cid-sPT6xmmWrk .navbar.opened {
  background: #ffffff !important;
}
.cid-sPT6xmmWrk .nav-item:focus,
.cid-sPT6xmmWrk .nav-link:focus {
  outline: none;
}
.cid-sPT6xmmWrk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPT6xmmWrk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPT6xmmWrk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPT6xmmWrk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPT6xmmWrk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPT6xmmWrk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPT6xmmWrk .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: #ffffff;
}
.cid-sPT6xmmWrk .navbar.opened {
  transition: all 0.3s;
}
.cid-sPT6xmmWrk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPT6xmmWrk .navbar .navbar-logo img {
  width: auto;
}
.cid-sPT6xmmWrk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPT6xmmWrk .navbar.collapsed {
  justify-content: center;
}
.cid-sPT6xmmWrk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPT6xmmWrk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPT6xmmWrk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sPT6xmmWrk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPT6xmmWrk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPT6xmmWrk .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-sPT6xmmWrk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPT6xmmWrk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPT6xmmWrk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPT6xmmWrk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPT6xmmWrk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPT6xmmWrk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPT6xmmWrk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPT6xmmWrk .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-sPT6xmmWrk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPT6xmmWrk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPT6xmmWrk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPT6xmmWrk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPT6xmmWrk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPT6xmmWrk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPT6xmmWrk .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPT6xmmWrk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPT6xmmWrk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPT6xmmWrk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPT6xmmWrk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPT6xmmWrk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPT6xmmWrk .dropdown-item.active,
.cid-sPT6xmmWrk .dropdown-item:active {
  background-color: transparent;
}
.cid-sPT6xmmWrk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPT6xmmWrk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPT6xmmWrk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPT6xmmWrk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sPT6xmmWrk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPT6xmmWrk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPT6xmmWrk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPT6xmmWrk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPT6xmmWrk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPT6xmmWrk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPT6xmmWrk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPT6xmmWrk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPT6xmmWrk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPT6xmmWrk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPT6xmmWrk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPT6xmmWrk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPT6xmmWrk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPT6xmmWrk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPT6xmmWrk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPT6xmmWrk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPT6xmmWrk .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-sPT6xmmWrk .navbar {
    height: 70px;
  }
  .cid-sPT6xmmWrk .navbar.opened {
    height: auto;
  }
  .cid-sPT6xmmWrk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPTpu5Ih11 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
@media (min-width: 992px) {
  .cid-sPTpu5Ih11 .carousel {
    min-height: 400px;
  }
  .cid-sPTpu5Ih11 .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPTpu5Ih11 .carousel {
    min-height: 260px;
  }
  .cid-sPTpu5Ih11 .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sPTpu5Ih11 .carousel {
    min-height: 220px;
  }
  .cid-sPTpu5Ih11 .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sPTpu5Ih11 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sPTpu5Ih11 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sPTpu5Ih11 .carousel,
.cid-sPTpu5Ih11 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sPTpu5Ih11 .item-wrapper {
  width: 100%;
}
.cid-sPTpu5Ih11 .carousel-caption {
  bottom: 40px;
}
.cid-sPTpu5Ih11 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sPTpu5Ih11 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sPTpu5Ih11 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sPTpu5Ih11 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sPTpu5Ih11 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sPTpu5Ih11 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPTpu5Ih11 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sPTpu5Ih11 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sPTpu5Ih11 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sPTpu5Ih11 .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-sPTpu5Ih11 .carousel-indicators li.active,
.cid-sPTpu5Ih11 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sPTpu5Ih11 .carousel-indicators li::after,
.cid-sPTpu5Ih11 .carousel-indicators li::before {
  content: none;
}
.cid-sPTpu5Ih11 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sPTpu5Ih11 .carousel-indicators {
    display: none !important;
  }
}
.cid-sQ0lNIvHzH {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e6c63b;
}
.cid-sQ0lNIvHzH .video-wrapper iframe {
  width: 100%;
}
.cid-sQ0lNIvHzH .mbr-section-title,
.cid-sQ0lNIvHzH .mbr-section-subtitle,
.cid-sQ0lNIvHzH .mbr-text {
  text-align: center;
}
.cid-sQ0lNIvHzH .mbr-text {
  text-align: left;
}
.cid-sQ0lNIvHzH .mbr-section-title {
  color: #000000;
}
.cid-sPWWpvkAgl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #98dee8;
}
.cid-sPWWpvkAgl .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPWWpvkAgl .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sPWWpvkAgl .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sPWWpvkAgl .mbr-text,
.cid-sPWWpvkAgl .mbr-section-btn {
  text-align: left;
}
.cid-sPWWpvkAgl .mbr-section-title P {
  text-align: left;
}
.cid-sPWWpvkAgl .mbr-section-title {
  color: #075ffe;
}
.cid-sPXePZ949r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84f65f;
}
.cid-sPXePZ949r .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPXePZ949r .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sPXePZ949r .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sPXePZ949r .mbr-section-title {
  text-align: left;
  color: #175503;
}
.cid-sPXePZ949r .mbr-text,
.cid-sPXePZ949r .mbr-section-btn {
  text-align: left;
}
.cid-sScXoMI49W {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb5b5;
}
.cid-sScXoMI49W .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sScXoMI49W .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sScXoMI49W .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sScXoMI49W .mbr-section-title {
  text-align: left;
  color: #ff0303;
}
.cid-sScXoMI49W .mbr-text,
.cid-sScXoMI49W .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sSmSTjEXO3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fedddd;
}
.cid-sSmSTjEXO3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSmSTjEXO3 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sSmSTjEXO3 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sSmSTjEXO3 .mbr-section-title {
  text-align: left;
  color: #ff9966;
}
.cid-sSmSTjEXO3 .mbr-text,
.cid-sSmSTjEXO3 .mbr-section-btn {
  text-align: left;
}
.cid-sPXYWH38mX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-sPXYWH38mX .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPXYWH38mX .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sPXYWH38mX .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sPXYWH38mX .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-sPXYWH38mX .mbr-text,
.cid-sPXYWH38mX .mbr-section-btn {
  text-align: left;
  color: #7b7676;
}
.cid-sQ4QKep2HM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #abb5c7;
}
.cid-sQ4QKep2HM .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQ4QKep2HM .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sQ4QKep2HM .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sQ4QKep2HM .mbr-text,
.cid-sQ4QKep2HM .mbr-section-btn {
  text-align: left;
}
.cid-sQ4QKep2HM .mbr-section-title {
  text-align: left;
}
.cid-sPYMTY37Yu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe885;
}
.cid-sPYMTY37Yu .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPYMTY37Yu .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sPYMTY37Yu .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sPYMTY37Yu .mbr-section-title {
  text-align: left;
}
.cid-sPYMTY37Yu .mbr-text,
.cid-sPYMTY37Yu .mbr-section-btn {
  text-align: left;
}
.cid-sPYKEvguZ0 {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sPYKEvguZ0 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPYKEvguZ0 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sPYKEvguZ0 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sPYKEvguZ0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPYKEvguZ0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sPYKEvguZ0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sPYKEvguZ0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sPYKEvguZ0 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sPYKEvguZ0 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sPYKEvguZ0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sPYKEvguZ0 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sPTBm0QBsJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPTBm0QBsJ nav.navbar {
  position: fixed;
}
.cid-sPTBm0QBsJ .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-sPTBm0QBsJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPTBm0QBsJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPTBm0QBsJ .dropdown-item:hover,
.cid-sPTBm0QBsJ .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sPTBm0QBsJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPTBm0QBsJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPTBm0QBsJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPTBm0QBsJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPTBm0QBsJ .nav-link {
  position: relative;
}
.cid-sPTBm0QBsJ .container {
  display: flex;
  margin: auto;
}
.cid-sPTBm0QBsJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPTBm0QBsJ .dropdown-menu,
.cid-sPTBm0QBsJ .navbar.opened {
  background: #ffffff !important;
}
.cid-sPTBm0QBsJ .nav-item:focus,
.cid-sPTBm0QBsJ .nav-link:focus {
  outline: none;
}
.cid-sPTBm0QBsJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPTBm0QBsJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPTBm0QBsJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPTBm0QBsJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPTBm0QBsJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPTBm0QBsJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPTBm0QBsJ .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: #ffffff;
}
.cid-sPTBm0QBsJ .navbar.opened {
  transition: all 0.3s;
}
.cid-sPTBm0QBsJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPTBm0QBsJ .navbar .navbar-logo img {
  width: auto;
}
.cid-sPTBm0QBsJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPTBm0QBsJ .navbar.collapsed {
  justify-content: center;
}
.cid-sPTBm0QBsJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPTBm0QBsJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPTBm0QBsJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sPTBm0QBsJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPTBm0QBsJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPTBm0QBsJ .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-sPTBm0QBsJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPTBm0QBsJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPTBm0QBsJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPTBm0QBsJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPTBm0QBsJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPTBm0QBsJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPTBm0QBsJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPTBm0QBsJ .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-sPTBm0QBsJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPTBm0QBsJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPTBm0QBsJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPTBm0QBsJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPTBm0QBsJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPTBm0QBsJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPTBm0QBsJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPTBm0QBsJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPTBm0QBsJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPTBm0QBsJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPTBm0QBsJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPTBm0QBsJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPTBm0QBsJ .dropdown-item.active,
.cid-sPTBm0QBsJ .dropdown-item:active {
  background-color: transparent;
}
.cid-sPTBm0QBsJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPTBm0QBsJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPTBm0QBsJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPTBm0QBsJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sPTBm0QBsJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPTBm0QBsJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPTBm0QBsJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPTBm0QBsJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPTBm0QBsJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPTBm0QBsJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPTBm0QBsJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPTBm0QBsJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPTBm0QBsJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPTBm0QBsJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPTBm0QBsJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPTBm0QBsJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPTBm0QBsJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPTBm0QBsJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPTBm0QBsJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPTBm0QBsJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPTBm0QBsJ .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-sPTBm0QBsJ .navbar {
    height: 70px;
  }
  .cid-sPTBm0QBsJ .navbar.opened {
    height: auto;
  }
  .cid-sPTBm0QBsJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPTBm2whHo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sPTBm2whHo .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPTBm2whHo .carousel {
    min-height: 400px;
  }
  .cid-sPTBm2whHo .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPTBm2whHo .carousel {
    min-height: 260px;
  }
  .cid-sPTBm2whHo .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sPTBm2whHo .carousel {
    min-height: 220px;
  }
  .cid-sPTBm2whHo .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sPTBm2whHo .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sPTBm2whHo .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sPTBm2whHo .carousel,
.cid-sPTBm2whHo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sPTBm2whHo .item-wrapper {
  width: 100%;
}
.cid-sPTBm2whHo .carousel-caption {
  bottom: 40px;
}
.cid-sPTBm2whHo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sPTBm2whHo .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sPTBm2whHo .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sPTBm2whHo .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sPTBm2whHo .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sPTBm2whHo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPTBm2whHo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sPTBm2whHo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sPTBm2whHo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sPTBm2whHo .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-sPTBm2whHo .carousel-indicators li.active,
.cid-sPTBm2whHo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sPTBm2whHo .carousel-indicators li::after,
.cid-sPTBm2whHo .carousel-indicators li::before {
  content: none;
}
.cid-sPTBm2whHo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sPTBm2whHo .carousel-indicators {
    display: none !important;
  }
}
.cid-sPTD2DvNil {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #996951;
}
@media (max-width: 991px) {
  .cid-sPTD2DvNil .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPTD2DvNil .row {
  flex-direction: row-reverse;
}
.cid-sPTD2DvNil img {
  width: 100%;
}
.cid-sPTDICpRqu {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #cac6c6;
}
.cid-sPTDICpRqu .video-wrapper iframe {
  width: 100%;
}
.cid-sPTDICpRqu .mbr-section-title,
.cid-sPTDICpRqu .mbr-section-subtitle,
.cid-sPTDICpRqu .mbr-text {
  text-align: center;
}
.cid-sPTDICpRqu .mbr-section-title {
  color: #ff0303;
}
.cid-sPTEFr8h3L {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-sPTEFr8h3L .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPTEFr8h3L .row {
  flex-direction: row-reverse;
}
.cid-sPTEFr8h3L img {
  width: 100%;
}
.cid-sPTDTRcCxF {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sPTDTRcCxF .video-wrapper iframe {
  width: 100%;
}
.cid-sPTDTRcCxF .mbr-section-title,
.cid-sPTDTRcCxF .mbr-section-subtitle,
.cid-sPTDTRcCxF .mbr-text {
  text-align: center;
}
.cid-sPTDUkSNme {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #5b6f4e;
}
.cid-sPTDUkSNme .video-wrapper iframe {
  width: 100%;
}
.cid-sPTDUkSNme .mbr-section-title,
.cid-sPTDUkSNme .mbr-section-subtitle,
.cid-sPTDUkSNme .mbr-text {
  text-align: center;
}
.cid-sPTEKCU6tN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #cac6c6;
}
@media (max-width: 991px) {
  .cid-sPTEKCU6tN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPTEKCU6tN .row {
  flex-direction: row-reverse;
}
.cid-sPTEKCU6tN img {
  width: 100%;
}
.cid-sPTELfSpTk {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-sPTELfSpTk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPTELfSpTk .row {
  flex-direction: row-reverse;
}
.cid-sPTELfSpTk img {
  width: 100%;
}
.cid-sPTDURHOgA {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #d4a791;
}
.cid-sPTDURHOgA .video-wrapper iframe {
  width: 100%;
}
.cid-sPTDURHOgA .mbr-section-title,
.cid-sPTDURHOgA .mbr-section-subtitle,
.cid-sPTDURHOgA .mbr-text {
  text-align: center;
}
.cid-sPTEQnnNb6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #764e4e;
}
@media (max-width: 991px) {
  .cid-sPTEQnnNb6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPTEQnnNb6 .row {
  flex-direction: row-reverse;
}
.cid-sPTEQnnNb6 img {
  width: 100%;
}
.cid-sPTDMzVKL2 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ad9324;
}
.cid-sPTDMzVKL2 .video-wrapper iframe {
  width: 100%;
}
.cid-sPTDMzVKL2 .mbr-section-title,
.cid-sPTDMzVKL2 .mbr-section-subtitle,
.cid-sPTDMzVKL2 .mbr-text {
  text-align: center;
}
.cid-sPUrA1j2bu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #403936;
}
.cid-sPUrA1j2bu img,
.cid-sPUrA1j2bu .item-img {
  width: 100%;
}
.cid-sPUrA1j2bu .item:focus,
.cid-sPUrA1j2bu span:focus {
  outline: none;
}
.cid-sPUrA1j2bu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sPUrA1j2bu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sPUrA1j2bu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPUrA1j2bu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sPUrA1j2bu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sPUrA1j2bu .mbr-section-title {
  color: #232323;
}
.cid-sPUrA1j2bu .mbr-text,
.cid-sPUrA1j2bu .mbr-section-btn {
  text-align: left;
}
.cid-sPUrA1j2bu .item-title {
  text-align: left;
}
.cid-sPUrA1j2bu .item-subtitle {
  text-align: left;
}
.cid-sSdACCFpfF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sSdACCFpfF img,
.cid-sSdACCFpfF .item-img {
  width: 100%;
}
.cid-sSdACCFpfF .item:focus,
.cid-sSdACCFpfF span:focus {
  outline: none;
}
.cid-sSdACCFpfF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSdACCFpfF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSdACCFpfF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSdACCFpfF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sSdACCFpfF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSdACCFpfF .mbr-section-title {
  color: #ffffff;
}
.cid-sSdACCFpfF .mbr-text,
.cid-sSdACCFpfF .mbr-section-btn {
  text-align: left;
}
.cid-sSdACCFpfF .item-title {
  text-align: center;
}
.cid-sSdACCFpfF .item-subtitle {
  text-align: left;
}
.cid-sPTIn6sJUj {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1252.jpg");
}
.cid-sPTIn6sJUj .mbr-text,
.cid-sPTIn6sJUj .mbr-section-btn {
  color: #232323;
}
.cid-sPTIn6sJUj .card-title,
.cid-sPTIn6sJUj .card-box {
  color: #ffffff;
}
.cid-sPTIn6sJUj .mbr-text,
.cid-sPTIn6sJUj .link-wrap {
  color: #ffffff;
}
.cid-sPUxhrlpsu {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #d7a063;
}
.cid-sPUxhrlpsu .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-sPUxhrlpsu .mbr-section-title,
.cid-sPUxhrlpsu .mbr-section-subtitle {
  text-align: center;
}
.cid-sPUxhrlpsu .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sPUxhrlpsu .card-wrapper {
  border-radius: 4px;
  background-color: #e0f4fe;
}
.cid-sPUxhrlpsu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sPUxhrlpsu .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sPUxhrlpsu .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sPUxhrlpsu .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sPUxhrlpsu .mbr-section-title {
  color: #ffffff;
}
.cid-sPTKwMeYgX {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e6c63b;
}
.cid-sPTKwMeYgX .content-wrapper {
  background: #fff0b0;
}
@media (max-width: 991px) {
  .cid-sPTKwMeYgX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPTKwMeYgX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sPTKwMeYgX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sPTKwMeYgX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sPTKwMeYgX .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sPTKwMeYgX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sPTKwMeYgX .card-title {
  color: #000000;
}
.cid-sPUOAEQtrd {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sPUOAEQtrd .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPUOAEQtrd .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sPUOAEQtrd .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sPUOAEQtrd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPUOAEQtrd .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sPUOAEQtrd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sPUOAEQtrd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sPUOAEQtrd .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sPUOAEQtrd .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sPUOAEQtrd .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sPUOAEQtrd .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sPV7YGvgxF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPV7YGvgxF nav.navbar {
  position: fixed;
}
.cid-sPV7YGvgxF .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-sPV7YGvgxF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPV7YGvgxF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPV7YGvgxF .dropdown-item:hover,
.cid-sPV7YGvgxF .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sPV7YGvgxF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPV7YGvgxF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPV7YGvgxF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPV7YGvgxF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPV7YGvgxF .nav-link {
  position: relative;
}
.cid-sPV7YGvgxF .container {
  display: flex;
  margin: auto;
}
.cid-sPV7YGvgxF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPV7YGvgxF .dropdown-menu,
.cid-sPV7YGvgxF .navbar.opened {
  background: #ffffff !important;
}
.cid-sPV7YGvgxF .nav-item:focus,
.cid-sPV7YGvgxF .nav-link:focus {
  outline: none;
}
.cid-sPV7YGvgxF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPV7YGvgxF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPV7YGvgxF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPV7YGvgxF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPV7YGvgxF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPV7YGvgxF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPV7YGvgxF .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: #ffffff;
}
.cid-sPV7YGvgxF .navbar.opened {
  transition: all 0.3s;
}
.cid-sPV7YGvgxF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPV7YGvgxF .navbar .navbar-logo img {
  width: auto;
}
.cid-sPV7YGvgxF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPV7YGvgxF .navbar.collapsed {
  justify-content: center;
}
.cid-sPV7YGvgxF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPV7YGvgxF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPV7YGvgxF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sPV7YGvgxF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPV7YGvgxF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPV7YGvgxF .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-sPV7YGvgxF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPV7YGvgxF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPV7YGvgxF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPV7YGvgxF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPV7YGvgxF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPV7YGvgxF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPV7YGvgxF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPV7YGvgxF .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-sPV7YGvgxF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPV7YGvgxF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPV7YGvgxF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPV7YGvgxF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPV7YGvgxF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPV7YGvgxF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPV7YGvgxF .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPV7YGvgxF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPV7YGvgxF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPV7YGvgxF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPV7YGvgxF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPV7YGvgxF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPV7YGvgxF .dropdown-item.active,
.cid-sPV7YGvgxF .dropdown-item:active {
  background-color: transparent;
}
.cid-sPV7YGvgxF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPV7YGvgxF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPV7YGvgxF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPV7YGvgxF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sPV7YGvgxF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPV7YGvgxF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPV7YGvgxF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPV7YGvgxF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPV7YGvgxF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPV7YGvgxF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPV7YGvgxF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPV7YGvgxF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPV7YGvgxF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPV7YGvgxF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPV7YGvgxF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPV7YGvgxF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPV7YGvgxF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPV7YGvgxF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPV7YGvgxF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPV7YGvgxF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPV7YGvgxF .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-sPV7YGvgxF .navbar {
    height: 70px;
  }
  .cid-sPV7YGvgxF .navbar.opened {
    height: auto;
  }
  .cid-sPV7YGvgxF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPV7YHT0xC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sPV7YHT0xC .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPV7YHT0xC .carousel {
    min-height: 400px;
  }
  .cid-sPV7YHT0xC .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPV7YHT0xC .carousel {
    min-height: 260px;
  }
  .cid-sPV7YHT0xC .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sPV7YHT0xC .carousel {
    min-height: 220px;
  }
  .cid-sPV7YHT0xC .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sPV7YHT0xC .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sPV7YHT0xC .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sPV7YHT0xC .carousel,
.cid-sPV7YHT0xC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sPV7YHT0xC .item-wrapper {
  width: 100%;
}
.cid-sPV7YHT0xC .carousel-caption {
  bottom: 40px;
}
.cid-sPV7YHT0xC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sPV7YHT0xC .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sPV7YHT0xC .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sPV7YHT0xC .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sPV7YHT0xC .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sPV7YHT0xC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPV7YHT0xC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sPV7YHT0xC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sPV7YHT0xC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sPV7YHT0xC .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-sPV7YHT0xC .carousel-indicators li.active,
.cid-sPV7YHT0xC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sPV7YHT0xC .carousel-indicators li::after,
.cid-sPV7YHT0xC .carousel-indicators li::before {
  content: none;
}
.cid-sPV7YHT0xC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sPV7YHT0xC .carousel-indicators {
    display: none !important;
  }
}
.cid-sPV7YJvbRa {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #d7a063;
}
@media (max-width: 991px) {
  .cid-sPV7YJvbRa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPV7YJvbRa .row {
  flex-direction: row-reverse;
}
.cid-sPV7YJvbRa img {
  width: 100%;
}
.cid-sPV7YKEJYH {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-sPV7YKEJYH .video-wrapper iframe {
  width: 100%;
}
.cid-sPV7YKEJYH .mbr-section-title,
.cid-sPV7YKEJYH .mbr-section-subtitle,
.cid-sPV7YKEJYH .mbr-text {
  text-align: center;
}
.cid-sPV7YKEJYH .mbr-section-title {
  color: #ff0303;
}
.cid-sPV7YKEJYH .mbr-text {
  text-align: left;
}
.cid-sPV7YMLrms {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ff9966;
}
.cid-sPV7YMLrms .video-wrapper iframe {
  width: 100%;
}
.cid-sPV7YMLrms .mbr-section-title,
.cid-sPV7YMLrms .mbr-section-subtitle,
.cid-sPV7YMLrms .mbr-text {
  text-align: center;
}
.cid-sPV7YPsTH8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #571a18;
}
@media (max-width: 991px) {
  .cid-sPV7YPsTH8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPV7YPsTH8 .row {
  flex-direction: row-reverse;
}
.cid-sPV7YPsTH8 img {
  width: 100%;
}
.cid-sPV7YPsTH8 .mbr-description {
  text-align: center;
  color: #ffffff;
}
.cid-sPV7YNRkFm {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #912320;
}
.cid-sPV7YNRkFm .video-wrapper iframe {
  width: 100%;
}
.cid-sPV7YNRkFm .mbr-section-title,
.cid-sPV7YNRkFm .mbr-section-subtitle,
.cid-sPV7YNRkFm .mbr-text {
  text-align: center;
}
.cid-sPV7YQf6eU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-sPV7YQf6eU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPV7YQf6eU .row {
  flex-direction: row-reverse;
}
.cid-sPV7YQf6eU img {
  width: 100%;
}
.cid-sPV7YRsRGW {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffe885;
}
.cid-sPV7YRsRGW .video-wrapper iframe {
  width: 100%;
}
.cid-sPV7YRsRGW .mbr-section-title,
.cid-sPV7YRsRGW .mbr-section-subtitle,
.cid-sPV7YRsRGW .mbr-text {
  text-align: center;
}
.cid-sPV7YTEkc9 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #764e4e;
}
@media (max-width: 991px) {
  .cid-sPV7YTEkc9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPV7YTEkc9 .row {
  flex-direction: row-reverse;
}
.cid-sPV7YTEkc9 img {
  width: 100%;
}
.cid-sPV7YTEkc9 .mbr-description {
  color: #ffffff;
}
.cid-sPV7YUSAxK {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #711f1d;
}
.cid-sPV7YUSAxK .video-wrapper iframe {
  width: 100%;
}
.cid-sPV7YUSAxK .mbr-section-title,
.cid-sPV7YUSAxK .mbr-section-subtitle,
.cid-sPV7YUSAxK .mbr-text {
  text-align: center;
}
.cid-sPVn6Okgyc {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #571a18;
}
.cid-sPVn6Okgyc .video-wrapper iframe {
  width: 100%;
}
.cid-sPVn6Okgyc .mbr-section-title,
.cid-sPVn6Okgyc .mbr-section-subtitle,
.cid-sPVn6Okgyc .mbr-text {
  text-align: center;
}
.cid-sPVn9dwhJK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #d7a063;
}
@media (max-width: 991px) {
  .cid-sPVn9dwhJK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPVn9dwhJK .row {
  flex-direction: row-reverse;
}
.cid-sPVn9dwhJK img {
  width: 100%;
}
.cid-sPVn9dwhJK .mbr-description {
  color: #ffffff;
}
.cid-sPVnauYAJ1 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #b44d1a;
}
.cid-sPVnauYAJ1 .video-wrapper iframe {
  width: 100%;
}
.cid-sPVnauYAJ1 .mbr-section-title,
.cid-sPVnauYAJ1 .mbr-section-subtitle,
.cid-sPVnauYAJ1 .mbr-text {
  text-align: center;
}
.cid-sPVnfrmZlL {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #993d3b;
}
.cid-sPVnfrmZlL .video-wrapper iframe {
  width: 100%;
}
.cid-sPVnfrmZlL .mbr-section-title,
.cid-sPVnfrmZlL .mbr-section-subtitle,
.cid-sPVnfrmZlL .mbr-text {
  text-align: center;
}
.cid-sPVnjHFvNO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sPVnjHFvNO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPVnjHFvNO .row {
  flex-direction: row-reverse;
}
.cid-sPVnjHFvNO img {
  width: 100%;
}
.cid-sPVnkT0VMY {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sPVnkT0VMY .video-wrapper iframe {
  width: 100%;
}
.cid-sPVnkT0VMY .mbr-section-title,
.cid-sPVnkT0VMY .mbr-section-subtitle,
.cid-sPVnkT0VMY .mbr-text {
  text-align: center;
}
.cid-sPVnqg0CTo {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-sPVnqg0CTo .video-wrapper iframe {
  width: 100%;
}
.cid-sPVnqg0CTo .mbr-section-title,
.cid-sPVnqg0CTo .mbr-section-subtitle,
.cid-sPVnqg0CTo .mbr-text {
  text-align: center;
}
.cid-sPVnrkToC3 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #84f65f;
}
@media (max-width: 991px) {
  .cid-sPVnrkToC3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPVnrkToC3 .row {
  flex-direction: row-reverse;
}
.cid-sPVnrkToC3 img {
  width: 100%;
}
.cid-sPVnA6ZTr8 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-sPVnA6ZTr8 .video-wrapper iframe {
  width: 100%;
}
.cid-sPVnA6ZTr8 .mbr-section-title,
.cid-sPVnA6ZTr8 .mbr-section-subtitle,
.cid-sPVnA6ZTr8 .mbr-text {
  text-align: center;
}
.cid-sPVv87dsHr {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #8efe24;
}
.cid-sPVnAOMqjE {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #8efe24;
}
@media (max-width: 991px) {
  .cid-sPVnAOMqjE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPVnAOMqjE .row {
  flex-direction: row-reverse;
}
.cid-sPVnAOMqjE img {
  width: 100%;
}
.cid-sPVnAOMqjE .mbr-description {
  text-align: left;
}
.cid-sPVnHZN0d0 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #6ec7f2;
}
.cid-sPVnHZN0d0 .video-wrapper iframe {
  width: 100%;
}
.cid-sPVnHZN0d0 .mbr-section-title,
.cid-sPVnHZN0d0 .mbr-section-subtitle,
.cid-sPVnHZN0d0 .mbr-text {
  text-align: center;
}
.cid-sPVnIri5aI {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bed3f9;
}
.cid-sPVnIri5aI .video-wrapper iframe {
  width: 100%;
}
.cid-sPVnIri5aI .mbr-section-title,
.cid-sPVnIri5aI .mbr-section-subtitle,
.cid-sPVnIri5aI .mbr-text {
  text-align: center;
}
.cid-sPVnIYNtrx {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fbd99a;
}
.cid-sPVnIYNtrx .video-wrapper iframe {
  width: 100%;
}
.cid-sPVnIYNtrx .mbr-section-title,
.cid-sPVnIYNtrx .mbr-section-subtitle,
.cid-sPVnIYNtrx .mbr-text {
  text-align: center;
}
.cid-sSbIXG6A9g {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sSbIXG6A9g .mbr-text,
.cid-sSbIXG6A9g .mbr-section-btn {
  color: #232323;
}
.cid-sSbIXG6A9g .card-title,
.cid-sSbIXG6A9g .card-box {
  color: #ffffff;
}
.cid-sSbIXG6A9g .mbr-text,
.cid-sSbIXG6A9g .link-wrap {
  color: #ffffff;
}
.cid-sSgA9PMpog {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-sSgA9PMpog .video-wrapper iframe {
  width: 100%;
}
.cid-sSgA9PMpog .mbr-section-title,
.cid-sSgA9PMpog .mbr-section-subtitle,
.cid-sSgA9PMpog .mbr-text {
  text-align: center;
}
.cid-sPV7ZdW3gr {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sPV7ZdW3gr .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPV7ZdW3gr .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sPV7ZdW3gr .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sPV7ZdW3gr .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPV7ZdW3gr .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sPV7ZdW3gr .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sPV7ZdW3gr .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sPV7ZdW3gr .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sPV7ZdW3gr .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sPV7ZdW3gr .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sPV7ZdW3gr .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sPY5WaaGcL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPY5WaaGcL nav.navbar {
  position: fixed;
}
.cid-sPY5WaaGcL .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-sPY5WaaGcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPY5WaaGcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPY5WaaGcL .dropdown-item:hover,
.cid-sPY5WaaGcL .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sPY5WaaGcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPY5WaaGcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPY5WaaGcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPY5WaaGcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPY5WaaGcL .nav-link {
  position: relative;
}
.cid-sPY5WaaGcL .container {
  display: flex;
  margin: auto;
}
.cid-sPY5WaaGcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPY5WaaGcL .dropdown-menu,
.cid-sPY5WaaGcL .navbar.opened {
  background: #ffffff !important;
}
.cid-sPY5WaaGcL .nav-item:focus,
.cid-sPY5WaaGcL .nav-link:focus {
  outline: none;
}
.cid-sPY5WaaGcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPY5WaaGcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPY5WaaGcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPY5WaaGcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPY5WaaGcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPY5WaaGcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPY5WaaGcL .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: #ffffff;
}
.cid-sPY5WaaGcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sPY5WaaGcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPY5WaaGcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sPY5WaaGcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPY5WaaGcL .navbar.collapsed {
  justify-content: center;
}
.cid-sPY5WaaGcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPY5WaaGcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPY5WaaGcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sPY5WaaGcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPY5WaaGcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPY5WaaGcL .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-sPY5WaaGcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPY5WaaGcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPY5WaaGcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPY5WaaGcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPY5WaaGcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPY5WaaGcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPY5WaaGcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPY5WaaGcL .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-sPY5WaaGcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPY5WaaGcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPY5WaaGcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPY5WaaGcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPY5WaaGcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPY5WaaGcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPY5WaaGcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPY5WaaGcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPY5WaaGcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPY5WaaGcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPY5WaaGcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPY5WaaGcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPY5WaaGcL .dropdown-item.active,
.cid-sPY5WaaGcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sPY5WaaGcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPY5WaaGcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPY5WaaGcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPY5WaaGcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sPY5WaaGcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPY5WaaGcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPY5WaaGcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPY5WaaGcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPY5WaaGcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPY5WaaGcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPY5WaaGcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPY5WaaGcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPY5WaaGcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPY5WaaGcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPY5WaaGcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPY5WaaGcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPY5WaaGcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPY5WaaGcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPY5WaaGcL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPY5WaaGcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPY5WaaGcL .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-sPY5WaaGcL .navbar {
    height: 70px;
  }
  .cid-sPY5WaaGcL .navbar.opened {
    height: auto;
  }
  .cid-sPY5WaaGcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPY5Wbv6Ej {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sPY5Wbv6Ej .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPY5Wbv6Ej .carousel {
    min-height: 400px;
  }
  .cid-sPY5Wbv6Ej .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPY5Wbv6Ej .carousel {
    min-height: 260px;
  }
  .cid-sPY5Wbv6Ej .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sPY5Wbv6Ej .carousel {
    min-height: 220px;
  }
  .cid-sPY5Wbv6Ej .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sPY5Wbv6Ej .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sPY5Wbv6Ej .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sPY5Wbv6Ej .carousel,
.cid-sPY5Wbv6Ej .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sPY5Wbv6Ej .item-wrapper {
  width: 100%;
}
.cid-sPY5Wbv6Ej .carousel-caption {
  bottom: 40px;
}
.cid-sPY5Wbv6Ej .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sPY5Wbv6Ej .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sPY5Wbv6Ej .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sPY5Wbv6Ej .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sPY5Wbv6Ej .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sPY5Wbv6Ej .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPY5Wbv6Ej .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sPY5Wbv6Ej .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sPY5Wbv6Ej .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sPY5Wbv6Ej .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-sPY5Wbv6Ej .carousel-indicators li.active,
.cid-sPY5Wbv6Ej .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sPY5Wbv6Ej .carousel-indicators li::after,
.cid-sPY5Wbv6Ej .carousel-indicators li::before {
  content: none;
}
.cid-sPY5Wbv6Ej .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sPY5Wbv6Ej .carousel-indicators {
    display: none !important;
  }
}
.cid-sPY5WdDq2w {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sPY5WdDq2w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sPY5WdDq2w .row {
  flex-direction: row-reverse;
}
.cid-sPY5WdDq2w img {
  width: 100%;
}
.cid-sPY5WeA49X {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #9fdbf8;
}
.cid-sPY5WeA49X .video-wrapper iframe {
  width: 100%;
}
.cid-sPY5WeA49X .mbr-section-title,
.cid-sPY5WeA49X .mbr-section-subtitle,
.cid-sPY5WeA49X .mbr-text {
  text-align: center;
}
.cid-sPY5WeA49X .mbr-section-title {
  color: #ff0303;
}
.cid-sPY5Wl9j6S {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #d4a791;
}
.cid-sPY5Wl9j6S .video-wrapper iframe {
  width: 100%;
}
.cid-sPY5Wl9j6S .mbr-section-title,
.cid-sPY5Wl9j6S .mbr-section-subtitle,
.cid-sPY5Wl9j6S .mbr-text {
  text-align: center;
}
.cid-sPY5WmSAFY {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sPY5WmSAFY .video-wrapper iframe {
  width: 100%;
}
.cid-sPY5WmSAFY .mbr-section-title,
.cid-sPY5WmSAFY .mbr-section-subtitle,
.cid-sPY5WmSAFY .mbr-text {
  text-align: center;
}
.cid-sPY5WuKcZd {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-sPY5WuKcZd .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-sPY5WuKcZd .mbr-section-title,
.cid-sPY5WuKcZd .mbr-section-subtitle {
  text-align: center;
}
.cid-sPY5WuKcZd .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sPY5WuKcZd .card-wrapper {
  border-radius: 4px;
  background-color: #f0efef;
}
.cid-sPY5WuKcZd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sPY5WuKcZd .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sPY5WuKcZd .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sPY5WuKcZd .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sPY5WuKcZd .mbr-section-title {
  color: #ffffff;
}
.cid-sPYqwKqL8Q {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffb5b5;
}
.cid-sPYqwKqL8Q .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-sPYqwKqL8Q .mbr-section-title,
.cid-sPYqwKqL8Q .mbr-section-subtitle {
  text-align: center;
}
.cid-sPYqwKqL8Q .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sPYqwKqL8Q .card-wrapper {
  border-radius: 4px;
  background-color: #f0efef;
}
.cid-sPYqwKqL8Q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sPYqwKqL8Q .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sPYqwKqL8Q .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sPYqwKqL8Q .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sPY5WtKp6H {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sPY5WtKp6H .mbr-text,
.cid-sPY5WtKp6H .mbr-section-btn {
  color: #232323;
}
.cid-sPY5WtKp6H .card-title,
.cid-sPY5WtKp6H .card-box {
  color: #ffffff;
}
.cid-sPY5WtKp6H .mbr-text,
.cid-sPY5WtKp6H .link-wrap {
  color: #ffffff;
}
.cid-sPYzdoBjVZ {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fbd99a;
}
.cid-sPYzdoBjVZ .video-wrapper iframe {
  width: 100%;
}
.cid-sPYzdoBjVZ .mbr-section-title,
.cid-sPYzdoBjVZ .mbr-section-subtitle,
.cid-sPYzdoBjVZ .mbr-text {
  text-align: center;
}
.cid-sPY5WyF9kL {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sPY5WyF9kL .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPY5WyF9kL .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sPY5WyF9kL .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sPY5WyF9kL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sPY5WyF9kL .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sPY5WyF9kL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sPY5WyF9kL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sPY5WyF9kL .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sPY5WyF9kL .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sPY5WyF9kL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sPY5WyF9kL .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sQ2WFwbwqU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQ2WFwbwqU nav.navbar {
  position: fixed;
}
.cid-sQ2WFwbwqU .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-sQ2WFwbwqU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQ2WFwbwqU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQ2WFwbwqU .dropdown-item:hover,
.cid-sQ2WFwbwqU .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sQ2WFwbwqU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQ2WFwbwqU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQ2WFwbwqU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQ2WFwbwqU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQ2WFwbwqU .nav-link {
  position: relative;
}
.cid-sQ2WFwbwqU .container {
  display: flex;
  margin: auto;
}
.cid-sQ2WFwbwqU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQ2WFwbwqU .dropdown-menu,
.cid-sQ2WFwbwqU .navbar.opened {
  background: #ffffff !important;
}
.cid-sQ2WFwbwqU .nav-item:focus,
.cid-sQ2WFwbwqU .nav-link:focus {
  outline: none;
}
.cid-sQ2WFwbwqU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQ2WFwbwqU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQ2WFwbwqU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQ2WFwbwqU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQ2WFwbwqU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQ2WFwbwqU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQ2WFwbwqU .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: #ffffff;
}
.cid-sQ2WFwbwqU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQ2WFwbwqU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQ2WFwbwqU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQ2WFwbwqU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQ2WFwbwqU .navbar.collapsed {
  justify-content: center;
}
.cid-sQ2WFwbwqU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQ2WFwbwqU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQ2WFwbwqU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sQ2WFwbwqU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQ2WFwbwqU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQ2WFwbwqU .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-sQ2WFwbwqU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQ2WFwbwqU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQ2WFwbwqU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQ2WFwbwqU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQ2WFwbwqU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQ2WFwbwqU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQ2WFwbwqU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQ2WFwbwqU .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-sQ2WFwbwqU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQ2WFwbwqU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQ2WFwbwqU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQ2WFwbwqU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQ2WFwbwqU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQ2WFwbwqU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQ2WFwbwqU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQ2WFwbwqU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQ2WFwbwqU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQ2WFwbwqU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQ2WFwbwqU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQ2WFwbwqU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQ2WFwbwqU .dropdown-item.active,
.cid-sQ2WFwbwqU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQ2WFwbwqU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQ2WFwbwqU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQ2WFwbwqU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQ2WFwbwqU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQ2WFwbwqU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQ2WFwbwqU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQ2WFwbwqU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQ2WFwbwqU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQ2WFwbwqU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQ2WFwbwqU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQ2WFwbwqU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQ2WFwbwqU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQ2WFwbwqU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQ2WFwbwqU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQ2WFwbwqU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQ2WFwbwqU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQ2WFwbwqU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQ2WFwbwqU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQ2WFwbwqU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQ2WFwbwqU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQ2WFwbwqU .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-sQ2WFwbwqU .navbar {
    height: 70px;
  }
  .cid-sQ2WFwbwqU .navbar.opened {
    height: auto;
  }
  .cid-sQ2WFwbwqU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQ2WFxafGE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sQ2WFxafGE .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sQ2WFxafGE .carousel {
    min-height: 400px;
  }
  .cid-sQ2WFxafGE .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ2WFxafGE .carousel {
    min-height: 260px;
  }
  .cid-sQ2WFxafGE .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sQ2WFxafGE .carousel {
    min-height: 220px;
  }
  .cid-sQ2WFxafGE .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sQ2WFxafGE .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sQ2WFxafGE .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQ2WFxafGE .carousel,
.cid-sQ2WFxafGE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sQ2WFxafGE .item-wrapper {
  width: 100%;
}
.cid-sQ2WFxafGE .carousel-caption {
  bottom: 40px;
}
.cid-sQ2WFxafGE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sQ2WFxafGE .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQ2WFxafGE .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sQ2WFxafGE .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sQ2WFxafGE .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQ2WFxafGE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQ2WFxafGE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQ2WFxafGE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQ2WFxafGE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sQ2WFxafGE .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-sQ2WFxafGE .carousel-indicators li.active,
.cid-sQ2WFxafGE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQ2WFxafGE .carousel-indicators li::after,
.cid-sQ2WFxafGE .carousel-indicators li::before {
  content: none;
}
.cid-sQ2WFxafGE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQ2WFxafGE .carousel-indicators {
    display: none !important;
  }
}
.cid-sQ2WFySw2d {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #abb5c7;
}
@media (max-width: 991px) {
  .cid-sQ2WFySw2d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQ2WFySw2d .row {
  flex-direction: row-reverse;
}
.cid-sQ2WFySw2d img {
  width: 100%;
}
.cid-sQ2WFySw2d .mbr-description {
  color: #000000;
}
.cid-sQ2WFzAdBy {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-sQ2WFzAdBy .video-wrapper iframe {
  width: 100%;
}
.cid-sQ2WFzAdBy .mbr-section-title,
.cid-sQ2WFzAdBy .mbr-section-subtitle,
.cid-sQ2WFzAdBy .mbr-text {
  text-align: center;
}
.cid-sQ2WFzAdBy .mbr-section-title {
  color: #ff0303;
}
.cid-sVrNpNrDAt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
@media (max-width: 991px) {
  .cid-sVrNpNrDAt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVrNpNrDAt .row {
  flex-direction: row-reverse;
}
.cid-sVrNpNrDAt img {
  width: 100%;
}
.cid-sVrNqlARg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffe161;
}
@media (max-width: 991px) {
  .cid-sVrNqlARg6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVrNqlARg6 .row {
  flex-direction: row-reverse;
}
.cid-sVrNqlARg6 img {
  width: 100%;
}
.cid-sVrNGoYTfh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #80f351;
}
@media (max-width: 991px) {
  .cid-sVrNGoYTfh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVrNGoYTfh .row {
  flex-direction: row-reverse;
}
.cid-sVrNGoYTfh img {
  width: 100%;
}
.cid-sQ4il1PpSi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8e8e8;
}
.cid-sQ4il1PpSi img,
.cid-sQ4il1PpSi .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sQ4il1PpSi .item:focus,
.cid-sQ4il1PpSi span:focus {
  outline: none;
}
.cid-sQ4il1PpSi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sQ4il1PpSi .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sQ4il1PpSi .item {
  padding: 0;
  margin: 0;
}
.cid-sQ4il1PpSi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sQ4il1PpSi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sQ4il1PpSi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sQ4il1PpSi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sQ4il1PpSi .mbr-section-title {
  color: #25680a;
}
.cid-sQ4il1PpSi .mbr-section-subtitle {
  color: #000000;
}
.cid-sQ4pUuKzsA {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #b7e3a8;
}
.cid-sQ4pUuKzsA img,
.cid-sQ4pUuKzsA .item-img {
  width: 100%;
}
.cid-sQ4pUuKzsA .item:focus,
.cid-sQ4pUuKzsA span:focus {
  outline: none;
}
.cid-sQ4pUuKzsA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sQ4pUuKzsA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sQ4pUuKzsA .item {
  padding: 0;
  margin: 0;
}
.cid-sQ4pUuKzsA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sQ4pUuKzsA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sQ4pUuKzsA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sQ4pUuKzsA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sQ4pUuKzsA .mbr-section-title {
  color: #175503;
}
.cid-sQ4ITZ0UOf {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffe161;
}
.cid-sQ4ITZ0UOf img,
.cid-sQ4ITZ0UOf .item-img {
  width: 100%;
}
.cid-sQ4ITZ0UOf .item:focus,
.cid-sQ4ITZ0UOf span:focus {
  outline: none;
}
.cid-sQ4ITZ0UOf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sQ4ITZ0UOf .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sQ4ITZ0UOf .item {
  padding: 0;
  margin: 0;
}
.cid-sQ4ITZ0UOf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sQ4ITZ0UOf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sQ4ITZ0UOf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sQ4ITZ0UOf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sQ4ITZ0UOf .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sQ4ITZ0UOf .mbr-section-subtitle {
  text-align: left;
}
.cid-sS3hnNoHHD {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #03fd0a;
}
.cid-sS3hnNoHHD .mbr-text,
.cid-sS3hnNoHHD .mbr-section-btn {
  color: #232323;
}
.cid-sS3hnNoHHD .card-title,
.cid-sS3hnNoHHD .card-box {
  color: #ffffff;
}
.cid-sS3hnNoHHD .mbr-text,
.cid-sS3hnNoHHD .link-wrap {
  color: #ffffff;
}
.cid-sQ2WFJH1tB {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sQ2WFJH1tB .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sQ2WFJH1tB .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sQ2WFJH1tB .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sQ2WFJH1tB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sQ2WFJH1tB .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sQ2WFJH1tB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sQ2WFJH1tB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sQ2WFJH1tB .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sQ2WFJH1tB .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sQ2WFJH1tB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sQ2WFJH1tB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sS3fPbpFCD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sS3fPbpFCD nav.navbar {
  position: fixed;
}
.cid-sS3fPbpFCD .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-sS3fPbpFCD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sS3fPbpFCD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sS3fPbpFCD .dropdown-item:hover,
.cid-sS3fPbpFCD .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sS3fPbpFCD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sS3fPbpFCD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sS3fPbpFCD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sS3fPbpFCD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sS3fPbpFCD .nav-link {
  position: relative;
}
.cid-sS3fPbpFCD .container {
  display: flex;
  margin: auto;
}
.cid-sS3fPbpFCD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sS3fPbpFCD .dropdown-menu,
.cid-sS3fPbpFCD .navbar.opened {
  background: #ffffff !important;
}
.cid-sS3fPbpFCD .nav-item:focus,
.cid-sS3fPbpFCD .nav-link:focus {
  outline: none;
}
.cid-sS3fPbpFCD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sS3fPbpFCD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sS3fPbpFCD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sS3fPbpFCD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sS3fPbpFCD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sS3fPbpFCD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sS3fPbpFCD .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: #ffffff;
}
.cid-sS3fPbpFCD .navbar.opened {
  transition: all 0.3s;
}
.cid-sS3fPbpFCD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sS3fPbpFCD .navbar .navbar-logo img {
  width: auto;
}
.cid-sS3fPbpFCD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sS3fPbpFCD .navbar.collapsed {
  justify-content: center;
}
.cid-sS3fPbpFCD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sS3fPbpFCD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sS3fPbpFCD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sS3fPbpFCD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sS3fPbpFCD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sS3fPbpFCD .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-sS3fPbpFCD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sS3fPbpFCD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sS3fPbpFCD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sS3fPbpFCD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sS3fPbpFCD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sS3fPbpFCD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sS3fPbpFCD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sS3fPbpFCD .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-sS3fPbpFCD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sS3fPbpFCD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sS3fPbpFCD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sS3fPbpFCD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sS3fPbpFCD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sS3fPbpFCD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sS3fPbpFCD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sS3fPbpFCD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sS3fPbpFCD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sS3fPbpFCD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sS3fPbpFCD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sS3fPbpFCD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sS3fPbpFCD .dropdown-item.active,
.cid-sS3fPbpFCD .dropdown-item:active {
  background-color: transparent;
}
.cid-sS3fPbpFCD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sS3fPbpFCD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sS3fPbpFCD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sS3fPbpFCD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sS3fPbpFCD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sS3fPbpFCD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sS3fPbpFCD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sS3fPbpFCD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sS3fPbpFCD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sS3fPbpFCD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sS3fPbpFCD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sS3fPbpFCD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sS3fPbpFCD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sS3fPbpFCD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sS3fPbpFCD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sS3fPbpFCD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sS3fPbpFCD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sS3fPbpFCD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sS3fPbpFCD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sS3fPbpFCD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sS3fPbpFCD .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-sS3fPbpFCD .navbar {
    height: 70px;
  }
  .cid-sS3fPbpFCD .navbar.opened {
    height: auto;
  }
  .cid-sS3fPbpFCD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sS3fPcoIbN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sS3fPcoIbN .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sS3fPcoIbN .carousel {
    min-height: 400px;
  }
  .cid-sS3fPcoIbN .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sS3fPcoIbN .carousel {
    min-height: 260px;
  }
  .cid-sS3fPcoIbN .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sS3fPcoIbN .carousel {
    min-height: 220px;
  }
  .cid-sS3fPcoIbN .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sS3fPcoIbN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sS3fPcoIbN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sS3fPcoIbN .carousel,
.cid-sS3fPcoIbN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sS3fPcoIbN .item-wrapper {
  width: 100%;
}
.cid-sS3fPcoIbN .carousel-caption {
  bottom: 40px;
}
.cid-sS3fPcoIbN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sS3fPcoIbN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sS3fPcoIbN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sS3fPcoIbN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sS3fPcoIbN .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sS3fPcoIbN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sS3fPcoIbN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sS3fPcoIbN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sS3fPcoIbN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sS3fPcoIbN .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-sS3fPcoIbN .carousel-indicators li.active,
.cid-sS3fPcoIbN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sS3fPcoIbN .carousel-indicators li::after,
.cid-sS3fPcoIbN .carousel-indicators li::before {
  content: none;
}
.cid-sS3fPcoIbN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sS3fPcoIbN .carousel-indicators {
    display: none !important;
  }
}
.cid-sS3fPdX82M {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #abb5c7;
}
@media (max-width: 991px) {
  .cid-sS3fPdX82M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sS3fPdX82M .row {
  flex-direction: row-reverse;
}
.cid-sS3fPdX82M img {
  width: 100%;
}
.cid-sS3fPdX82M .mbr-description {
  color: #000000;
}
.cid-sS3fPeLmI6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #b7e3a8;
}
.cid-sS3fPeLmI6 img,
.cid-sS3fPeLmI6 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sS3fPeLmI6 .item:focus,
.cid-sS3fPeLmI6 span:focus {
  outline: none;
}
.cid-sS3fPeLmI6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sS3fPeLmI6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sS3fPeLmI6 .item {
  padding: 0;
  margin: 0;
}
.cid-sS3fPeLmI6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sS3fPeLmI6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sS3fPeLmI6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sS3fPeLmI6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sS3fPeLmI6 .mbr-section-title {
  color: #075ffe;
}
.cid-sS3fPeLmI6 .mbr-section-subtitle {
  color: #000000;
}
.cid-sS3fPfHJUr {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
.cid-sS3fPfHJUr .video-wrapper iframe {
  width: 100%;
}
.cid-sS3fPfHJUr .mbr-section-title,
.cid-sS3fPfHJUr .mbr-section-subtitle,
.cid-sS3fPfHJUr .mbr-text {
  text-align: center;
}
.cid-sS3fPfHJUr .mbr-section-title {
  color: #ff0303;
}
.cid-sS3fPgPVUt {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-sS3fPgPVUt img,
.cid-sS3fPgPVUt .item-img {
  width: 100%;
}
.cid-sS3fPgPVUt .item:focus,
.cid-sS3fPgPVUt span:focus {
  outline: none;
}
.cid-sS3fPgPVUt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sS3fPgPVUt .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sS3fPgPVUt .item {
  padding: 0;
  margin: 0;
}
.cid-sS3fPgPVUt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sS3fPgPVUt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sS3fPgPVUt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sS3fPgPVUt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sS3fPgPVUt .mbr-section-title {
  color: #175503;
}
.cid-sS3fPlSGtn {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffe161;
}
.cid-sS3fPlSGtn img,
.cid-sS3fPlSGtn .item-img {
  width: 100%;
}
.cid-sS3fPlSGtn .item:focus,
.cid-sS3fPlSGtn span:focus {
  outline: none;
}
.cid-sS3fPlSGtn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sS3fPlSGtn .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sS3fPlSGtn .item {
  padding: 0;
  margin: 0;
}
.cid-sS3fPlSGtn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sS3fPlSGtn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sS3fPlSGtn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sS3fPlSGtn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sS3fPlSGtn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sS3fPlSGtn .mbr-section-subtitle {
  text-align: left;
}
.cid-sS3fPn4nqa {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sS3fPn4nqa .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sS3fPn4nqa .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sS3fPn4nqa .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sS3fPn4nqa .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sS3fPn4nqa .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sS3fPn4nqa .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sS3fPn4nqa .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sS3fPn4nqa .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sS3fPn4nqa .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sS3fPn4nqa .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sS3fPn4nqa .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSaOf0R3N6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSaOf0R3N6 nav.navbar {
  position: fixed;
}
.cid-sSaOf0R3N6 .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-sSaOf0R3N6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSaOf0R3N6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSaOf0R3N6 .dropdown-item:hover,
.cid-sSaOf0R3N6 .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sSaOf0R3N6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSaOf0R3N6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSaOf0R3N6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSaOf0R3N6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSaOf0R3N6 .nav-link {
  position: relative;
}
.cid-sSaOf0R3N6 .container {
  display: flex;
  margin: auto;
}
.cid-sSaOf0R3N6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSaOf0R3N6 .dropdown-menu,
.cid-sSaOf0R3N6 .navbar.opened {
  background: #ffffff !important;
}
.cid-sSaOf0R3N6 .nav-item:focus,
.cid-sSaOf0R3N6 .nav-link:focus {
  outline: none;
}
.cid-sSaOf0R3N6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSaOf0R3N6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSaOf0R3N6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSaOf0R3N6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSaOf0R3N6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSaOf0R3N6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSaOf0R3N6 .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: #ffffff;
}
.cid-sSaOf0R3N6 .navbar.opened {
  transition: all 0.3s;
}
.cid-sSaOf0R3N6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSaOf0R3N6 .navbar .navbar-logo img {
  width: auto;
}
.cid-sSaOf0R3N6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSaOf0R3N6 .navbar.collapsed {
  justify-content: center;
}
.cid-sSaOf0R3N6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSaOf0R3N6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSaOf0R3N6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sSaOf0R3N6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSaOf0R3N6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSaOf0R3N6 .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-sSaOf0R3N6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSaOf0R3N6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSaOf0R3N6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSaOf0R3N6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSaOf0R3N6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSaOf0R3N6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSaOf0R3N6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSaOf0R3N6 .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-sSaOf0R3N6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSaOf0R3N6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSaOf0R3N6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSaOf0R3N6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSaOf0R3N6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSaOf0R3N6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSaOf0R3N6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSaOf0R3N6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSaOf0R3N6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSaOf0R3N6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSaOf0R3N6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSaOf0R3N6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSaOf0R3N6 .dropdown-item.active,
.cid-sSaOf0R3N6 .dropdown-item:active {
  background-color: transparent;
}
.cid-sSaOf0R3N6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSaOf0R3N6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSaOf0R3N6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSaOf0R3N6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSaOf0R3N6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSaOf0R3N6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSaOf0R3N6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSaOf0R3N6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSaOf0R3N6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSaOf0R3N6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSaOf0R3N6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSaOf0R3N6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSaOf0R3N6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSaOf0R3N6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSaOf0R3N6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSaOf0R3N6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSaOf0R3N6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSaOf0R3N6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSaOf0R3N6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSaOf0R3N6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSaOf0R3N6 .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-sSaOf0R3N6 .navbar {
    height: 70px;
  }
  .cid-sSaOf0R3N6 .navbar.opened {
    height: auto;
  }
  .cid-sSaOf0R3N6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSaOf2uwqc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sSaOf2uwqc .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sSaOf2uwqc .carousel {
    min-height: 400px;
  }
  .cid-sSaOf2uwqc .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sSaOf2uwqc .carousel {
    min-height: 260px;
  }
  .cid-sSaOf2uwqc .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sSaOf2uwqc .carousel {
    min-height: 220px;
  }
  .cid-sSaOf2uwqc .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sSaOf2uwqc .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSaOf2uwqc .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSaOf2uwqc .carousel,
.cid-sSaOf2uwqc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sSaOf2uwqc .item-wrapper {
  width: 100%;
}
.cid-sSaOf2uwqc .carousel-caption {
  bottom: 40px;
}
.cid-sSaOf2uwqc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSaOf2uwqc .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSaOf2uwqc .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSaOf2uwqc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSaOf2uwqc .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSaOf2uwqc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSaOf2uwqc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSaOf2uwqc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSaOf2uwqc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSaOf2uwqc .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-sSaOf2uwqc .carousel-indicators li.active,
.cid-sSaOf2uwqc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSaOf2uwqc .carousel-indicators li::after,
.cid-sSaOf2uwqc .carousel-indicators li::before {
  content: none;
}
.cid-sSaOf2uwqc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSaOf2uwqc .carousel-indicators {
    display: none !important;
  }
}
.cid-sSaOf4j6Li {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #7a30c4;
}
@media (max-width: 991px) {
  .cid-sSaOf4j6Li .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSaOf4j6Li .row {
  flex-direction: row-reverse;
}
.cid-sSaOf4j6Li img {
  width: 100%;
}
.cid-sSaOf4j6Li .mbr-description {
  color: #ffffff;
}
.cid-sSaOf66hT3 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sSaOf66hT3 .video-wrapper iframe {
  width: 100%;
}
.cid-sSaOf66hT3 .mbr-section-title,
.cid-sSaOf66hT3 .mbr-section-subtitle,
.cid-sSaOf66hT3 .mbr-text {
  text-align: center;
}
.cid-sSaOf89SFr {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffe885;
}
.cid-sSaOf89SFr .video-wrapper iframe {
  width: 100%;
}
.cid-sSaOf89SFr .mbr-section-title,
.cid-sSaOf89SFr .mbr-section-subtitle,
.cid-sSaOf89SFr .mbr-text {
  text-align: center;
}
.cid-sSaOf71gMv {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #571a18;
}
@media (max-width: 991px) {
  .cid-sSaOf71gMv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSaOf71gMv .row {
  flex-direction: row-reverse;
}
.cid-sSaOf71gMv img {
  width: 100%;
}
.cid-sSaOf71gMv .mbr-description {
  text-align: left;
  color: #ffffff;
}
.cid-sSaOf9qaZO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sSaOf9qaZO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSaOf9qaZO .row {
  flex-direction: row-reverse;
}
.cid-sSaOf9qaZO img {
  width: 100%;
}
.cid-sSaOfboWA6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #abb5c7;
}
@media (max-width: 991px) {
  .cid-sSaOfboWA6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSaOfboWA6 .row {
  flex-direction: row-reverse;
}
.cid-sSaOfboWA6 img {
  width: 100%;
}
.cid-sSaOfboWA6 .mbr-description {
  color: #000000;
}
.cid-sSbiwtST0v {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bfbfbf;
}
@media (max-width: 991px) {
  .cid-sSbiwtST0v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbiwtST0v .row {
  flex-direction: row-reverse;
}
.cid-sSbiwtST0v img {
  width: 100%;
}
.cid-sSaOff8JKO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d7a063;
}
@media (max-width: 991px) {
  .cid-sSaOff8JKO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSaOff8JKO .row {
  flex-direction: row-reverse;
}
.cid-sSaOff8JKO img {
  width: 100%;
}
.cid-sSaOff8JKO .mbr-description {
  color: #ffffff;
}
.cid-sSaOf5cISh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-sSaOf5cISh .video-wrapper iframe {
  width: 100%;
}
.cid-sSaOf5cISh .mbr-section-title,
.cid-sSaOf5cISh .mbr-section-subtitle,
.cid-sSaOf5cISh .mbr-text {
  text-align: center;
}
.cid-sSaOf5cISh .mbr-section-title {
  color: #ff0303;
}
.cid-sSaOf5cISh .mbr-text {
  text-align: left;
}
.cid-sSaOfalglB {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-sSaOfalglB .video-wrapper iframe {
  width: 100%;
}
.cid-sSaOfalglB .mbr-section-title,
.cid-sSaOfalglB .mbr-section-subtitle,
.cid-sSaOfalglB .mbr-text {
  text-align: center;
}
.cid-sSaOfikELA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eee5e5;
}
@media (max-width: 991px) {
  .cid-sSaOfikELA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSaOfikELA .row {
  flex-direction: row-reverse;
}
.cid-sSaOfikELA img {
  width: 100%;
}
.cid-sSbBsKpee9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eee7c6;
}
@media (max-width: 991px) {
  .cid-sSbBsKpee9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbBsKpee9 .row {
  flex-direction: row-reverse;
}
.cid-sSbBsKpee9 img {
  width: 100%;
}
.cid-sSbGjaKkp5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-sSbGjaKkp5 .mbr-text,
.cid-sSbGjaKkp5 .mbr-section-btn {
  color: #232323;
}
.cid-sSbGjaKkp5 .card-title,
.cid-sSbGjaKkp5 .card-box {
  color: #ffffff;
}
.cid-sSbGjaKkp5 .mbr-text,
.cid-sSbGjaKkp5 .link-wrap {
  color: #ffffff;
}
.cid-sSaOfjBkVm {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sSaOfjBkVm .video-wrapper iframe {
  width: 100%;
}
.cid-sSaOfjBkVm .mbr-section-title,
.cid-sSaOfjBkVm .mbr-section-subtitle,
.cid-sSaOfjBkVm .mbr-text {
  text-align: center;
}
.cid-sSaOfkWNZa {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-sSaOfkWNZa .video-wrapper iframe {
  width: 100%;
}
.cid-sSaOfkWNZa .mbr-section-title,
.cid-sSaOfkWNZa .mbr-section-subtitle,
.cid-sSaOfkWNZa .mbr-text {
  text-align: center;
}
.cid-sSaOftRy1f {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSaOftRy1f .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSaOftRy1f .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sSaOftRy1f .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sSaOftRy1f .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSaOftRy1f .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sSaOftRy1f .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sSaOftRy1f .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sSaOftRy1f .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sSaOftRy1f .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sSaOftRy1f .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSaOftRy1f .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSbVAHaAKx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSbVAHaAKx nav.navbar {
  position: fixed;
}
.cid-sSbVAHaAKx .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-sSbVAHaAKx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSbVAHaAKx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSbVAHaAKx .dropdown-item:hover,
.cid-sSbVAHaAKx .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sSbVAHaAKx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSbVAHaAKx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSbVAHaAKx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSbVAHaAKx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSbVAHaAKx .nav-link {
  position: relative;
}
.cid-sSbVAHaAKx .container {
  display: flex;
  margin: auto;
}
.cid-sSbVAHaAKx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSbVAHaAKx .dropdown-menu,
.cid-sSbVAHaAKx .navbar.opened {
  background: #ffffff !important;
}
.cid-sSbVAHaAKx .nav-item:focus,
.cid-sSbVAHaAKx .nav-link:focus {
  outline: none;
}
.cid-sSbVAHaAKx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSbVAHaAKx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSbVAHaAKx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSbVAHaAKx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSbVAHaAKx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSbVAHaAKx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSbVAHaAKx .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: #ffffff;
}
.cid-sSbVAHaAKx .navbar.opened {
  transition: all 0.3s;
}
.cid-sSbVAHaAKx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSbVAHaAKx .navbar .navbar-logo img {
  width: auto;
}
.cid-sSbVAHaAKx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSbVAHaAKx .navbar.collapsed {
  justify-content: center;
}
.cid-sSbVAHaAKx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSbVAHaAKx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSbVAHaAKx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sSbVAHaAKx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSbVAHaAKx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSbVAHaAKx .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-sSbVAHaAKx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSbVAHaAKx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSbVAHaAKx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSbVAHaAKx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSbVAHaAKx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSbVAHaAKx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSbVAHaAKx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSbVAHaAKx .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-sSbVAHaAKx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSbVAHaAKx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSbVAHaAKx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSbVAHaAKx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSbVAHaAKx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSbVAHaAKx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSbVAHaAKx .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSbVAHaAKx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSbVAHaAKx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSbVAHaAKx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSbVAHaAKx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSbVAHaAKx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSbVAHaAKx .dropdown-item.active,
.cid-sSbVAHaAKx .dropdown-item:active {
  background-color: transparent;
}
.cid-sSbVAHaAKx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSbVAHaAKx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSbVAHaAKx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSbVAHaAKx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSbVAHaAKx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSbVAHaAKx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSbVAHaAKx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSbVAHaAKx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSbVAHaAKx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSbVAHaAKx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSbVAHaAKx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSbVAHaAKx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSbVAHaAKx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSbVAHaAKx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSbVAHaAKx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSbVAHaAKx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSbVAHaAKx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSbVAHaAKx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSbVAHaAKx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSbVAHaAKx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSbVAHaAKx .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-sSbVAHaAKx .navbar {
    height: 70px;
  }
  .cid-sSbVAHaAKx .navbar.opened {
    height: auto;
  }
  .cid-sSbVAHaAKx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSbVAJdSfA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sSbVAJdSfA .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sSbVAJdSfA .carousel {
    min-height: 400px;
  }
  .cid-sSbVAJdSfA .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sSbVAJdSfA .carousel {
    min-height: 260px;
  }
  .cid-sSbVAJdSfA .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sSbVAJdSfA .carousel {
    min-height: 220px;
  }
  .cid-sSbVAJdSfA .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sSbVAJdSfA .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSbVAJdSfA .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSbVAJdSfA .carousel,
.cid-sSbVAJdSfA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sSbVAJdSfA .item-wrapper {
  width: 100%;
}
.cid-sSbVAJdSfA .carousel-caption {
  bottom: 40px;
}
.cid-sSbVAJdSfA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSbVAJdSfA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSbVAJdSfA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSbVAJdSfA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSbVAJdSfA .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSbVAJdSfA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSbVAJdSfA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSbVAJdSfA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSbVAJdSfA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSbVAJdSfA .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-sSbVAJdSfA .carousel-indicators li.active,
.cid-sSbVAJdSfA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSbVAJdSfA .carousel-indicators li::after,
.cid-sSbVAJdSfA .carousel-indicators li::before {
  content: none;
}
.cid-sSbVAJdSfA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSbVAJdSfA .carousel-indicators {
    display: none !important;
  }
}
.cid-sSbVALxsuc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d7a063;
}
@media (max-width: 991px) {
  .cid-sSbVALxsuc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbVALxsuc .row {
  flex-direction: row-reverse;
}
.cid-sSbVALxsuc img {
  width: 100%;
}
.cid-sSbVALxsuc .mbr-description {
  color: #ffffff;
}
.cid-sSbVAMJky7 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sSbVAMJky7 .video-wrapper iframe {
  width: 100%;
}
.cid-sSbVAMJky7 .mbr-section-title,
.cid-sSbVAMJky7 .mbr-section-subtitle,
.cid-sSbVAMJky7 .mbr-text {
  text-align: center;
}
.cid-sSbVANBIVH {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffe885;
}
.cid-sSbVANBIVH .video-wrapper iframe {
  width: 100%;
}
.cid-sSbVANBIVH .mbr-section-title,
.cid-sSbVANBIVH .mbr-section-subtitle,
.cid-sSbVANBIVH .mbr-text {
  text-align: center;
}
.cid-sSbVAOAtJb {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #571a18;
}
@media (max-width: 991px) {
  .cid-sSbVAOAtJb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbVAOAtJb .row {
  flex-direction: row-reverse;
}
.cid-sSbVAOAtJb img {
  width: 100%;
}
.cid-sSbVAOAtJb .mbr-description {
  text-align: left;
  color: #ffffff;
}
.cid-sSbVAQNQAa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #abb5c7;
}
@media (max-width: 991px) {
  .cid-sSbVAQNQAa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbVAQNQAa .row {
  flex-direction: row-reverse;
}
.cid-sSbVAQNQAa img {
  width: 100%;
}
.cid-sSbVAQNQAa .mbr-description {
  color: #000000;
}
.cid-sSbVAPyjwI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sSbVAPyjwI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbVAPyjwI .row {
  flex-direction: row-reverse;
}
.cid-sSbVAPyjwI img {
  width: 100%;
}
.cid-sSbVARvehr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bed3f9;
}
@media (max-width: 991px) {
  .cid-sSbVARvehr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbVARvehr .row {
  flex-direction: row-reverse;
}
.cid-sSbVARvehr img {
  width: 100%;
}
.cid-sSbVASmRjX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d7a063;
}
@media (max-width: 991px) {
  .cid-sSbVASmRjX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbVASmRjX .row {
  flex-direction: row-reverse;
}
.cid-sSbVASmRjX img {
  width: 100%;
}
.cid-sSbVASmRjX .mbr-description {
  color: #ffffff;
}
.cid-sSbVATrEqr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-sSbVATrEqr .video-wrapper iframe {
  width: 100%;
}
.cid-sSbVATrEqr .mbr-section-title,
.cid-sSbVATrEqr .mbr-section-subtitle,
.cid-sSbVATrEqr .mbr-text {
  text-align: center;
}
.cid-sSbVATrEqr .mbr-section-title {
  color: #ff0303;
}
.cid-sSbVATrEqr .mbr-text {
  text-align: left;
}
.cid-sSbVAV68jw {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-sSbVAV68jw .video-wrapper iframe {
  width: 100%;
}
.cid-sSbVAV68jw .mbr-section-title,
.cid-sSbVAV68jw .mbr-section-subtitle,
.cid-sSbVAV68jw .mbr-text {
  text-align: center;
}
.cid-sSbVAW4ICA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eee5e5;
}
@media (max-width: 991px) {
  .cid-sSbVAW4ICA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbVAW4ICA .row {
  flex-direction: row-reverse;
}
.cid-sSbVAW4ICA img {
  width: 100%;
}
.cid-sSbVAXylZU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eee7c6;
}
@media (max-width: 991px) {
  .cid-sSbVAXylZU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSbVAXylZU .row {
  flex-direction: row-reverse;
}
.cid-sSbVAXylZU img {
  width: 100%;
}
.cid-sSbVAYGTU3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-sSbVAYGTU3 .mbr-text,
.cid-sSbVAYGTU3 .mbr-section-btn {
  color: #232323;
}
.cid-sSbVAYGTU3 .card-title,
.cid-sSbVAYGTU3 .card-box {
  color: #ffffff;
}
.cid-sSbVAYGTU3 .mbr-text,
.cid-sSbVAYGTU3 .link-wrap {
  color: #ffffff;
}
.cid-sSbVB0947f {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sSbVB0947f .video-wrapper iframe {
  width: 100%;
}
.cid-sSbVB0947f .mbr-section-title,
.cid-sSbVB0947f .mbr-section-subtitle,
.cid-sSbVB0947f .mbr-text {
  text-align: center;
}
.cid-sSbVB1COhf {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-sSbVB1COhf .video-wrapper iframe {
  width: 100%;
}
.cid-sSbVB1COhf .mbr-section-title,
.cid-sSbVB1COhf .mbr-section-subtitle,
.cid-sSbVB1COhf .mbr-text {
  text-align: center;
}
.cid-sSbVB3536B {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSbVB3536B .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSbVB3536B .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sSbVB3536B .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sSbVB3536B .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSbVB3536B .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sSbVB3536B .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sSbVB3536B .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sSbVB3536B .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sSbVB3536B .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sSbVB3536B .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSbVB3536B .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sScZ4btyw1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sScZ4btyw1 nav.navbar {
  position: fixed;
}
.cid-sScZ4btyw1 .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-sScZ4btyw1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sScZ4btyw1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sScZ4btyw1 .dropdown-item:hover,
.cid-sScZ4btyw1 .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sScZ4btyw1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sScZ4btyw1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sScZ4btyw1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sScZ4btyw1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sScZ4btyw1 .nav-link {
  position: relative;
}
.cid-sScZ4btyw1 .container {
  display: flex;
  margin: auto;
}
.cid-sScZ4btyw1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sScZ4btyw1 .dropdown-menu,
.cid-sScZ4btyw1 .navbar.opened {
  background: #ffffff !important;
}
.cid-sScZ4btyw1 .nav-item:focus,
.cid-sScZ4btyw1 .nav-link:focus {
  outline: none;
}
.cid-sScZ4btyw1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sScZ4btyw1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sScZ4btyw1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sScZ4btyw1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sScZ4btyw1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sScZ4btyw1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sScZ4btyw1 .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: #ffffff;
}
.cid-sScZ4btyw1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sScZ4btyw1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sScZ4btyw1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sScZ4btyw1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sScZ4btyw1 .navbar.collapsed {
  justify-content: center;
}
.cid-sScZ4btyw1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sScZ4btyw1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sScZ4btyw1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sScZ4btyw1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sScZ4btyw1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sScZ4btyw1 .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-sScZ4btyw1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sScZ4btyw1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sScZ4btyw1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sScZ4btyw1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sScZ4btyw1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sScZ4btyw1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sScZ4btyw1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sScZ4btyw1 .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-sScZ4btyw1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sScZ4btyw1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sScZ4btyw1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sScZ4btyw1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sScZ4btyw1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sScZ4btyw1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sScZ4btyw1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sScZ4btyw1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sScZ4btyw1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sScZ4btyw1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sScZ4btyw1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sScZ4btyw1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sScZ4btyw1 .dropdown-item.active,
.cid-sScZ4btyw1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sScZ4btyw1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sScZ4btyw1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sScZ4btyw1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sScZ4btyw1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sScZ4btyw1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sScZ4btyw1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sScZ4btyw1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sScZ4btyw1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sScZ4btyw1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sScZ4btyw1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sScZ4btyw1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sScZ4btyw1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sScZ4btyw1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sScZ4btyw1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sScZ4btyw1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sScZ4btyw1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sScZ4btyw1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sScZ4btyw1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sScZ4btyw1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sScZ4btyw1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sScZ4btyw1 .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-sScZ4btyw1 .navbar {
    height: 70px;
  }
  .cid-sScZ4btyw1 .navbar.opened {
    height: auto;
  }
  .cid-sScZ4btyw1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sScZ4cFdLF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sScZ4cFdLF .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sScZ4cFdLF .carousel {
    min-height: 400px;
  }
  .cid-sScZ4cFdLF .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sScZ4cFdLF .carousel {
    min-height: 260px;
  }
  .cid-sScZ4cFdLF .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sScZ4cFdLF .carousel {
    min-height: 220px;
  }
  .cid-sScZ4cFdLF .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sScZ4cFdLF .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sScZ4cFdLF .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sScZ4cFdLF .carousel,
.cid-sScZ4cFdLF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sScZ4cFdLF .item-wrapper {
  width: 100%;
}
.cid-sScZ4cFdLF .carousel-caption {
  bottom: 40px;
}
.cid-sScZ4cFdLF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sScZ4cFdLF .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sScZ4cFdLF .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sScZ4cFdLF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sScZ4cFdLF .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sScZ4cFdLF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sScZ4cFdLF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sScZ4cFdLF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sScZ4cFdLF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sScZ4cFdLF .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-sScZ4cFdLF .carousel-indicators li.active,
.cid-sScZ4cFdLF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sScZ4cFdLF .carousel-indicators li::after,
.cid-sScZ4cFdLF .carousel-indicators li::before {
  content: none;
}
.cid-sScZ4cFdLF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sScZ4cFdLF .carousel-indicators {
    display: none !important;
  }
}
.cid-sScZ4efpsu {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #d7a063;
}
@media (max-width: 991px) {
  .cid-sScZ4efpsu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sScZ4efpsu .row {
  flex-direction: row-reverse;
}
.cid-sScZ4efpsu img {
  width: 100%;
}
.cid-sScZ4CjuVK {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #6ec7f2;
}
.cid-sScZ4CjuVK .video-wrapper iframe {
  width: 100%;
}
.cid-sScZ4CjuVK .mbr-section-title,
.cid-sScZ4CjuVK .mbr-section-subtitle,
.cid-sScZ4CjuVK .mbr-text {
  text-align: center;
}
.cid-sSdjuLaZk7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSdjuLaZk7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSdjuLaZk7 .row {
  flex-direction: row-reverse;
}
.cid-sSdjuLaZk7 img {
  width: 100%;
}
.cid-sScZ4Djp61 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bed3f9;
}
.cid-sScZ4Djp61 .video-wrapper iframe {
  width: 100%;
}
.cid-sScZ4Djp61 .mbr-section-title,
.cid-sScZ4Djp61 .mbr-section-subtitle,
.cid-sScZ4Djp61 .mbr-text {
  text-align: center;
}
.cid-sScZ4sKwDo {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e9e4e4;
}
@media (max-width: 991px) {
  .cid-sScZ4sKwDo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sScZ4sKwDo .row {
  flex-direction: row-reverse;
}
.cid-sScZ4sKwDo img {
  width: 100%;
}
.cid-sScZ4sKwDo .mbr-description {
  text-align: left;
}
.cid-sScZ4f0Ri8 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fff0b0;
}
.cid-sScZ4f0Ri8 .video-wrapper iframe {
  width: 100%;
}
.cid-sScZ4f0Ri8 .mbr-section-title,
.cid-sScZ4f0Ri8 .mbr-section-subtitle,
.cid-sScZ4f0Ri8 .mbr-text {
  text-align: center;
}
.cid-sScZ4f0Ri8 .mbr-section-title {
  color: #ff0303;
}
.cid-sScZ4f0Ri8 .mbr-text {
  text-align: left;
}
.cid-sSdlhIqQCx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-sSdlhIqQCx img,
.cid-sSdlhIqQCx .item-img {
  width: 100%;
}
.cid-sSdlhIqQCx .item:focus,
.cid-sSdlhIqQCx span:focus {
  outline: none;
}
.cid-sSdlhIqQCx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSdlhIqQCx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSdlhIqQCx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSdlhIqQCx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sSdlhIqQCx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSdlhIqQCx .mbr-section-title {
  color: #232323;
}
.cid-sScZ4u9koL {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #80f351;
}
.cid-sScZ4u9koL .video-wrapper iframe {
  width: 100%;
}
.cid-sScZ4u9koL .mbr-section-title,
.cid-sScZ4u9koL .mbr-section-subtitle,
.cid-sScZ4u9koL .mbr-text {
  text-align: center;
}
.cid-sScZ4Fo4DE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sScZ4Fo4DE .mbr-text,
.cid-sScZ4Fo4DE .mbr-section-btn {
  color: #232323;
}
.cid-sScZ4Fo4DE .card-title,
.cid-sScZ4Fo4DE .card-box {
  color: #ffffff;
}
.cid-sScZ4Fo4DE .mbr-text,
.cid-sScZ4Fo4DE .link-wrap {
  color: #ffffff;
}
.cid-sSgAPuefBe {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-sSgAPuefBe .video-wrapper iframe {
  width: 100%;
}
.cid-sSgAPuefBe .mbr-section-title,
.cid-sSgAPuefBe .mbr-section-subtitle,
.cid-sSgAPuefBe .mbr-text {
  text-align: center;
}
.cid-sScZ4Gw50Y {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sScZ4Gw50Y .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sScZ4Gw50Y .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sScZ4Gw50Y .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sScZ4Gw50Y .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sScZ4Gw50Y .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sScZ4Gw50Y .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sScZ4Gw50Y .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sScZ4Gw50Y .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sScZ4Gw50Y .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sScZ4Gw50Y .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sScZ4Gw50Y .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSennZ0HCs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSennZ0HCs nav.navbar {
  position: fixed;
}
.cid-sSennZ0HCs .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-sSennZ0HCs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSennZ0HCs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSennZ0HCs .dropdown-item:hover,
.cid-sSennZ0HCs .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sSennZ0HCs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSennZ0HCs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSennZ0HCs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSennZ0HCs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSennZ0HCs .nav-link {
  position: relative;
}
.cid-sSennZ0HCs .container {
  display: flex;
  margin: auto;
}
.cid-sSennZ0HCs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSennZ0HCs .dropdown-menu,
.cid-sSennZ0HCs .navbar.opened {
  background: #ffffff !important;
}
.cid-sSennZ0HCs .nav-item:focus,
.cid-sSennZ0HCs .nav-link:focus {
  outline: none;
}
.cid-sSennZ0HCs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSennZ0HCs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSennZ0HCs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSennZ0HCs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSennZ0HCs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSennZ0HCs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSennZ0HCs .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: #ffffff;
}
.cid-sSennZ0HCs .navbar.opened {
  transition: all 0.3s;
}
.cid-sSennZ0HCs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSennZ0HCs .navbar .navbar-logo img {
  width: auto;
}
.cid-sSennZ0HCs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSennZ0HCs .navbar.collapsed {
  justify-content: center;
}
.cid-sSennZ0HCs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSennZ0HCs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSennZ0HCs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sSennZ0HCs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSennZ0HCs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSennZ0HCs .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-sSennZ0HCs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSennZ0HCs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSennZ0HCs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSennZ0HCs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSennZ0HCs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSennZ0HCs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSennZ0HCs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSennZ0HCs .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-sSennZ0HCs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSennZ0HCs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSennZ0HCs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSennZ0HCs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSennZ0HCs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSennZ0HCs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSennZ0HCs .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSennZ0HCs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSennZ0HCs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSennZ0HCs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSennZ0HCs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSennZ0HCs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSennZ0HCs .dropdown-item.active,
.cid-sSennZ0HCs .dropdown-item:active {
  background-color: transparent;
}
.cid-sSennZ0HCs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSennZ0HCs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSennZ0HCs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSennZ0HCs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSennZ0HCs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSennZ0HCs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSennZ0HCs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSennZ0HCs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSennZ0HCs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSennZ0HCs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSennZ0HCs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSennZ0HCs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSennZ0HCs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSennZ0HCs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSennZ0HCs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSennZ0HCs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSennZ0HCs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSennZ0HCs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSennZ0HCs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSennZ0HCs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSennZ0HCs .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-sSennZ0HCs .navbar {
    height: 70px;
  }
  .cid-sSennZ0HCs .navbar.opened {
    height: auto;
  }
  .cid-sSennZ0HCs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSeno0Bi11 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sSeno0Bi11 .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sSeno0Bi11 .carousel {
    min-height: 400px;
  }
  .cid-sSeno0Bi11 .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sSeno0Bi11 .carousel {
    min-height: 260px;
  }
  .cid-sSeno0Bi11 .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sSeno0Bi11 .carousel {
    min-height: 220px;
  }
  .cid-sSeno0Bi11 .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sSeno0Bi11 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSeno0Bi11 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSeno0Bi11 .carousel,
.cid-sSeno0Bi11 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sSeno0Bi11 .item-wrapper {
  width: 100%;
}
.cid-sSeno0Bi11 .carousel-caption {
  bottom: 40px;
}
.cid-sSeno0Bi11 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSeno0Bi11 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSeno0Bi11 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSeno0Bi11 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSeno0Bi11 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSeno0Bi11 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSeno0Bi11 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSeno0Bi11 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSeno0Bi11 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSeno0Bi11 .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-sSeno0Bi11 .carousel-indicators li.active,
.cid-sSeno0Bi11 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSeno0Bi11 .carousel-indicators li::after,
.cid-sSeno0Bi11 .carousel-indicators li::before {
  content: none;
}
.cid-sSeno0Bi11 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSeno0Bi11 .carousel-indicators {
    display: none !important;
  }
}
.cid-sSeno355hh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
@media (max-width: 991px) {
  .cid-sSeno355hh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSeno355hh .row {
  flex-direction: row-reverse;
}
.cid-sSeno355hh img {
  width: 100%;
}
.cid-sSeno355hh .mbr-description {
  color: #ffffff;
}
.cid-sSeno416Q2 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sSeno416Q2 .video-wrapper iframe {
  width: 100%;
}
.cid-sSeno416Q2 .mbr-section-title,
.cid-sSeno416Q2 .mbr-section-subtitle,
.cid-sSeno416Q2 .mbr-text {
  text-align: center;
}
.cid-sSgBPfCUbt {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #8caff0;
}
.cid-sSgBPfCUbt .video-wrapper iframe {
  width: 100%;
}
.cid-sSgBPfCUbt .mbr-section-title,
.cid-sSgBPfCUbt .mbr-section-subtitle,
.cid-sSgBPfCUbt .mbr-text {
  text-align: center;
}
.cid-sSgBZ5acZQ {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sSgBZ5acZQ .video-wrapper iframe {
  width: 100%;
}
.cid-sSgBZ5acZQ .mbr-section-title,
.cid-sSgBZ5acZQ .mbr-section-subtitle,
.cid-sSgBZ5acZQ .mbr-text {
  text-align: center;
}
.cid-sSewuFRnKA {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffb5b5;
}
.cid-sSewuFRnKA .video-wrapper iframe {
  width: 100%;
}
.cid-sSewuFRnKA .mbr-section-title,
.cid-sSewuFRnKA .mbr-section-subtitle,
.cid-sSewuFRnKA .mbr-text {
  text-align: center;
}
.cid-sSeno4RySe {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffe885;
}
.cid-sSeno4RySe .video-wrapper iframe {
  width: 100%;
}
.cid-sSeno4RySe .mbr-section-title,
.cid-sSeno4RySe .mbr-section-subtitle,
.cid-sSeno4RySe .mbr-text {
  text-align: center;
}
.cid-sSeno5H2Wi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #571a18;
}
@media (max-width: 991px) {
  .cid-sSeno5H2Wi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSeno5H2Wi .row {
  flex-direction: row-reverse;
}
.cid-sSeno5H2Wi img {
  width: 100%;
}
.cid-sSeno5H2Wi .mbr-description {
  text-align: left;
  color: #ffffff;
}
.cid-sSeno7st3d {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sSeno7st3d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSeno7st3d .row {
  flex-direction: row-reverse;
}
.cid-sSeno7st3d img {
  width: 100%;
}
.cid-sSeno8qXEL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bed3f9;
}
@media (max-width: 991px) {
  .cid-sSeno8qXEL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSeno8qXEL .row {
  flex-direction: row-reverse;
}
.cid-sSeno8qXEL img {
  width: 100%;
}
.cid-sSeno95o56 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d7a063;
}
@media (max-width: 991px) {
  .cid-sSeno95o56 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSeno95o56 .row {
  flex-direction: row-reverse;
}
.cid-sSeno95o56 img {
  width: 100%;
}
.cid-sSeno95o56 .mbr-description {
  color: #ffffff;
}
.cid-sSenoa9ng5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-sSenoa9ng5 .video-wrapper iframe {
  width: 100%;
}
.cid-sSenoa9ng5 .mbr-section-title,
.cid-sSenoa9ng5 .mbr-section-subtitle,
.cid-sSenoa9ng5 .mbr-text {
  text-align: center;
}
.cid-sSenoa9ng5 .mbr-section-title {
  color: #ff0303;
}
.cid-sSenoa9ng5 .mbr-text {
  text-align: left;
}
.cid-sSenobAemp {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-sSenobAemp .video-wrapper iframe {
  width: 100%;
}
.cid-sSenobAemp .mbr-section-title,
.cid-sSenobAemp .mbr-section-subtitle,
.cid-sSenobAemp .mbr-text {
  text-align: center;
}
.cid-sSenocSdeQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eee5e5;
}
@media (max-width: 991px) {
  .cid-sSenocSdeQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSenocSdeQ .row {
  flex-direction: row-reverse;
}
.cid-sSenocSdeQ img {
  width: 100%;
}
.cid-sSenodWboJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eee7c6;
}
@media (max-width: 991px) {
  .cid-sSenodWboJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSenodWboJ .row {
  flex-direction: row-reverse;
}
.cid-sSenodWboJ img {
  width: 100%;
}
.cid-sSenofcZmP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-sSenofcZmP .mbr-text,
.cid-sSenofcZmP .mbr-section-btn {
  color: #232323;
}
.cid-sSenofcZmP .card-title,
.cid-sSenofcZmP .card-box {
  color: #ffffff;
}
.cid-sSenofcZmP .mbr-text,
.cid-sSenofcZmP .link-wrap {
  color: #ffffff;
}
.cid-sSenogdZXz {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sSenogdZXz .video-wrapper iframe {
  width: 100%;
}
.cid-sSenogdZXz .mbr-section-title,
.cid-sSenogdZXz .mbr-section-subtitle,
.cid-sSenogdZXz .mbr-text {
  text-align: center;
}
.cid-sSenoiyPAb {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-sSenoiyPAb .video-wrapper iframe {
  width: 100%;
}
.cid-sSenoiyPAb .mbr-section-title,
.cid-sSenoiyPAb .mbr-section-subtitle,
.cid-sSenoiyPAb .mbr-text {
  text-align: center;
}
.cid-sSenokngF8 {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSenokngF8 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSenokngF8 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sSenokngF8 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sSenokngF8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSenokngF8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sSenokngF8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sSenokngF8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sSenokngF8 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sSenokngF8 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sSenokngF8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSenokngF8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSnKsOHfS7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSnKsOHfS7 nav.navbar {
  position: fixed;
}
.cid-sSnKsOHfS7 .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-sSnKsOHfS7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSnKsOHfS7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSnKsOHfS7 .dropdown-item:hover,
.cid-sSnKsOHfS7 .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sSnKsOHfS7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSnKsOHfS7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSnKsOHfS7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSnKsOHfS7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSnKsOHfS7 .nav-link {
  position: relative;
}
.cid-sSnKsOHfS7 .container {
  display: flex;
  margin: auto;
}
.cid-sSnKsOHfS7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSnKsOHfS7 .dropdown-menu,
.cid-sSnKsOHfS7 .navbar.opened {
  background: #ffffff !important;
}
.cid-sSnKsOHfS7 .nav-item:focus,
.cid-sSnKsOHfS7 .nav-link:focus {
  outline: none;
}
.cid-sSnKsOHfS7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSnKsOHfS7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSnKsOHfS7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSnKsOHfS7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSnKsOHfS7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSnKsOHfS7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSnKsOHfS7 .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: #ffffff;
}
.cid-sSnKsOHfS7 .navbar.opened {
  transition: all 0.3s;
}
.cid-sSnKsOHfS7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSnKsOHfS7 .navbar .navbar-logo img {
  width: auto;
}
.cid-sSnKsOHfS7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSnKsOHfS7 .navbar.collapsed {
  justify-content: center;
}
.cid-sSnKsOHfS7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSnKsOHfS7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSnKsOHfS7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sSnKsOHfS7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSnKsOHfS7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSnKsOHfS7 .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-sSnKsOHfS7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSnKsOHfS7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSnKsOHfS7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSnKsOHfS7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSnKsOHfS7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSnKsOHfS7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSnKsOHfS7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSnKsOHfS7 .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-sSnKsOHfS7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSnKsOHfS7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSnKsOHfS7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSnKsOHfS7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSnKsOHfS7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSnKsOHfS7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSnKsOHfS7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSnKsOHfS7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSnKsOHfS7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSnKsOHfS7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSnKsOHfS7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSnKsOHfS7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSnKsOHfS7 .dropdown-item.active,
.cid-sSnKsOHfS7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sSnKsOHfS7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSnKsOHfS7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSnKsOHfS7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSnKsOHfS7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSnKsOHfS7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSnKsOHfS7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSnKsOHfS7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSnKsOHfS7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSnKsOHfS7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSnKsOHfS7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSnKsOHfS7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSnKsOHfS7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSnKsOHfS7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSnKsOHfS7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSnKsOHfS7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSnKsOHfS7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSnKsOHfS7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSnKsOHfS7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSnKsOHfS7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSnKsOHfS7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSnKsOHfS7 .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-sSnKsOHfS7 .navbar {
    height: 70px;
  }
  .cid-sSnKsOHfS7 .navbar.opened {
    height: auto;
  }
  .cid-sSnKsOHfS7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSnKsRV1GK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sSnKsRV1GK .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sSnKsRV1GK .carousel {
    min-height: 400px;
  }
  .cid-sSnKsRV1GK .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sSnKsRV1GK .carousel {
    min-height: 260px;
  }
  .cid-sSnKsRV1GK .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sSnKsRV1GK .carousel {
    min-height: 220px;
  }
  .cid-sSnKsRV1GK .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sSnKsRV1GK .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSnKsRV1GK .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSnKsRV1GK .carousel,
.cid-sSnKsRV1GK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sSnKsRV1GK .item-wrapper {
  width: 100%;
}
.cid-sSnKsRV1GK .carousel-caption {
  bottom: 40px;
}
.cid-sSnKsRV1GK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSnKsRV1GK .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSnKsRV1GK .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSnKsRV1GK .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSnKsRV1GK .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSnKsRV1GK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSnKsRV1GK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSnKsRV1GK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSnKsRV1GK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSnKsRV1GK .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-sSnKsRV1GK .carousel-indicators li.active,
.cid-sSnKsRV1GK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSnKsRV1GK .carousel-indicators li::after,
.cid-sSnKsRV1GK .carousel-indicators li::before {
  content: none;
}
.cid-sSnKsRV1GK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSnKsRV1GK .carousel-indicators {
    display: none !important;
  }
}
.cid-sSnKsTtiJu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sSnKsTtiJu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSnKsTtiJu .row {
  flex-direction: row-reverse;
}
.cid-sSnKsTtiJu img {
  width: 100%;
}
.cid-sSnKsUoTbg {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #9fdbf8;
}
.cid-sSnKsUoTbg .video-wrapper iframe {
  width: 100%;
}
.cid-sSnKsUoTbg .mbr-section-title,
.cid-sSnKsUoTbg .mbr-section-subtitle,
.cid-sSnKsUoTbg .mbr-text {
  text-align: center;
}
.cid-sSnKsUoTbg .mbr-section-title {
  color: #000000;
}
.cid-sSnLofTPmV {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #eee5e5;
}
.cid-sSnLofTPmV .video-wrapper iframe {
  width: 100%;
}
.cid-sSnLofTPmV .mbr-section-title,
.cid-sSnLofTPmV .mbr-section-subtitle,
.cid-sSnLofTPmV .mbr-text {
  text-align: center;
}
.cid-sSnLpTswyR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-sSnLpTswyR .video-wrapper iframe {
  width: 100%;
}
.cid-sSnLpTswyR .mbr-section-title,
.cid-sSnLpTswyR .mbr-section-subtitle,
.cid-sSnLpTswyR .mbr-text {
  text-align: center;
}
.cid-sSnLqslkz4 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fedddd;
}
.cid-sSnLqslkz4 .video-wrapper iframe {
  width: 100%;
}
.cid-sSnLqslkz4 .mbr-section-title,
.cid-sSnLqslkz4 .mbr-section-subtitle,
.cid-sSnLqslkz4 .mbr-text {
  text-align: center;
}
.cid-sSnKsYTItF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
@media (max-width: 991px) {
  .cid-sSnKsYTItF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSnKsYTItF .row {
  flex-direction: row-reverse;
}
.cid-sSnKsYTItF img {
  width: 100%;
}
.cid-sSoiXuu79i {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
@media (max-width: 991px) {
  .cid-sSoiXuu79i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSoiXuu79i .row {
  flex-direction: row-reverse;
}
.cid-sSoiXuu79i img {
  width: 100%;
}
.cid-sSoi1mxmCB {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fedddd;
}
.cid-sSoi1mxmCB .video-wrapper iframe {
  width: 100%;
}
.cid-sSoi1mxmCB .mbr-section-title,
.cid-sSoi1mxmCB .mbr-section-subtitle,
.cid-sSoi1mxmCB .mbr-text {
  text-align: center;
}
.cid-sSokZFMrIx {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #eee7c6;
}
.cid-sSokZFMrIx .video-wrapper iframe {
  width: 100%;
}
.cid-sSokZFMrIx .mbr-section-title,
.cid-sSokZFMrIx .mbr-section-subtitle,
.cid-sSokZFMrIx .mbr-text {
  text-align: center;
}
.cid-sSol0liIGX {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fedddd;
}
.cid-sSol0liIGX .video-wrapper iframe {
  width: 100%;
}
.cid-sSol0liIGX .mbr-section-title,
.cid-sSol0liIGX .mbr-section-subtitle,
.cid-sSol0liIGX .mbr-text {
  text-align: center;
}
.cid-sSol0OOt03 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #eee7c6;
}
.cid-sSol0OOt03 .video-wrapper iframe {
  width: 100%;
}
.cid-sSol0OOt03 .mbr-section-title,
.cid-sSol0OOt03 .mbr-section-subtitle,
.cid-sSol0OOt03 .mbr-text {
  text-align: center;
}
.cid-sSol1lDnok {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fedddd;
}
.cid-sSol1lDnok .video-wrapper iframe {
  width: 100%;
}
.cid-sSol1lDnok .mbr-section-title,
.cid-sSol1lDnok .mbr-section-subtitle,
.cid-sSol1lDnok .mbr-text {
  text-align: center;
}
.cid-sSol1VmRa2 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #eee7c6;
}
.cid-sSol1VmRa2 .video-wrapper iframe {
  width: 100%;
}
.cid-sSol1VmRa2 .mbr-section-title,
.cid-sSol1VmRa2 .mbr-section-subtitle,
.cid-sSol1VmRa2 .mbr-text {
  text-align: center;
}
.cid-sSqhHvAsFK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fedddd;
}
.cid-sSqhHvAsFK img,
.cid-sSqhHvAsFK .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sSqhHvAsFK .item:focus,
.cid-sSqhHvAsFK span:focus {
  outline: none;
}
.cid-sSqhHvAsFK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSqhHvAsFK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSqhHvAsFK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSqhHvAsFK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sSqhHvAsFK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSqhHvAsFK .mbr-section-title {
  color: #232323;
}
.cid-sSnKtd7XkK {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sSnKtd7XkK .mbr-text,
.cid-sSnKtd7XkK .mbr-section-btn {
  color: #232323;
}
.cid-sSnKtd7XkK .card-title,
.cid-sSnKtd7XkK .card-box {
  color: #ffffff;
}
.cid-sSnKtd7XkK .mbr-text,
.cid-sSnKtd7XkK .link-wrap {
  color: #ffffff;
}
.cid-sSnKthnwN4 {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSnKthnwN4 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSnKthnwN4 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sSnKthnwN4 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sSnKthnwN4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSnKthnwN4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sSnKthnwN4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sSnKthnwN4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sSnKthnwN4 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sSnKthnwN4 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sSnKthnwN4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSnKthnwN4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSmWFYG8Pr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSmWFYG8Pr nav.navbar {
  position: fixed;
}
.cid-sSmWFYG8Pr .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-sSmWFYG8Pr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSmWFYG8Pr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSmWFYG8Pr .dropdown-item:hover,
.cid-sSmWFYG8Pr .dropdown-item:focus {
  background: #7b7676 !important;
  color: white !important;
}
.cid-sSmWFYG8Pr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSmWFYG8Pr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSmWFYG8Pr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSmWFYG8Pr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSmWFYG8Pr .nav-link {
  position: relative;
}
.cid-sSmWFYG8Pr .container {
  display: flex;
  margin: auto;
}
.cid-sSmWFYG8Pr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSmWFYG8Pr .dropdown-menu,
.cid-sSmWFYG8Pr .navbar.opened {
  background: #ffffff !important;
}
.cid-sSmWFYG8Pr .nav-item:focus,
.cid-sSmWFYG8Pr .nav-link:focus {
  outline: none;
}
.cid-sSmWFYG8Pr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSmWFYG8Pr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSmWFYG8Pr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSmWFYG8Pr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSmWFYG8Pr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSmWFYG8Pr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSmWFYG8Pr .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: #ffffff;
}
.cid-sSmWFYG8Pr .navbar.opened {
  transition: all 0.3s;
}
.cid-sSmWFYG8Pr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSmWFYG8Pr .navbar .navbar-logo img {
  width: auto;
}
.cid-sSmWFYG8Pr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSmWFYG8Pr .navbar.collapsed {
  justify-content: center;
}
.cid-sSmWFYG8Pr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSmWFYG8Pr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSmWFYG8Pr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-sSmWFYG8Pr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSmWFYG8Pr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSmWFYG8Pr .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-sSmWFYG8Pr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSmWFYG8Pr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSmWFYG8Pr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSmWFYG8Pr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSmWFYG8Pr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSmWFYG8Pr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSmWFYG8Pr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSmWFYG8Pr .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-sSmWFYG8Pr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSmWFYG8Pr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSmWFYG8Pr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSmWFYG8Pr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSmWFYG8Pr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSmWFYG8Pr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSmWFYG8Pr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSmWFYG8Pr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSmWFYG8Pr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSmWFYG8Pr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSmWFYG8Pr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSmWFYG8Pr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSmWFYG8Pr .dropdown-item.active,
.cid-sSmWFYG8Pr .dropdown-item:active {
  background-color: transparent;
}
.cid-sSmWFYG8Pr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSmWFYG8Pr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSmWFYG8Pr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSmWFYG8Pr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSmWFYG8Pr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSmWFYG8Pr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSmWFYG8Pr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSmWFYG8Pr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSmWFYG8Pr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSmWFYG8Pr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSmWFYG8Pr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSmWFYG8Pr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSmWFYG8Pr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSmWFYG8Pr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSmWFYG8Pr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSmWFYG8Pr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSmWFYG8Pr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSmWFYG8Pr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSmWFYG8Pr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sSmWFYG8Pr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSmWFYG8Pr .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-sSmWFYG8Pr .navbar {
    height: 70px;
  }
  .cid-sSmWFYG8Pr .navbar.opened {
    height: auto;
  }
  .cid-sSmWFYG8Pr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSmWFZPjYP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cac6c6;
}
.cid-sSmWFZPjYP .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sSmWFZPjYP .carousel {
    min-height: 400px;
  }
  .cid-sSmWFZPjYP .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sSmWFZPjYP .carousel {
    min-height: 260px;
  }
  .cid-sSmWFZPjYP .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sSmWFZPjYP .carousel {
    min-height: 220px;
  }
  .cid-sSmWFZPjYP .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sSmWFZPjYP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sSmWFZPjYP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sSmWFZPjYP .carousel,
.cid-sSmWFZPjYP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sSmWFZPjYP .item-wrapper {
  width: 100%;
}
.cid-sSmWFZPjYP .carousel-caption {
  bottom: 40px;
}
.cid-sSmWFZPjYP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sSmWFZPjYP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sSmWFZPjYP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sSmWFZPjYP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sSmWFZPjYP .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sSmWFZPjYP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSmWFZPjYP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sSmWFZPjYP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sSmWFZPjYP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sSmWFZPjYP .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-sSmWFZPjYP .carousel-indicators li.active,
.cid-sSmWFZPjYP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sSmWFZPjYP .carousel-indicators li::after,
.cid-sSmWFZPjYP .carousel-indicators li::before {
  content: none;
}
.cid-sSmWFZPjYP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sSmWFZPjYP .carousel-indicators {
    display: none !important;
  }
}
.cid-sSmWG1szzi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sSmWG1szzi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSmWG1szzi .row {
  flex-direction: row-reverse;
}
.cid-sSmWG1szzi img {
  width: 100%;
}
.cid-sSmWG2geZZ {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #9fdbf8;
}
.cid-sSmWG2geZZ .video-wrapper iframe {
  width: 100%;
}
.cid-sSmWG2geZZ .mbr-section-title,
.cid-sSmWG2geZZ .mbr-section-subtitle,
.cid-sSmWG2geZZ .mbr-text {
  text-align: center;
}
.cid-sSmWG2geZZ .mbr-section-title {
  color: #ff0303;
}
.cid-sSq5a60J9h {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fedddd;
}
@media (max-width: 991px) {
  .cid-sSq5a60J9h .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSq5a60J9h .row {
  flex-direction: row-reverse;
}
.cid-sSq5a60J9h img {
  width: 100%;
}
.cid-sSq5aWdqrJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
@media (max-width: 991px) {
  .cid-sSq5aWdqrJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSq5aWdqrJ .row {
  flex-direction: row-reverse;
}
.cid-sSq5aWdqrJ img {
  width: 100%;
}
.cid-sSq5buC6Qd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fedddd;
}
@media (max-width: 991px) {
  .cid-sSq5buC6Qd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSq5buC6Qd .row {
  flex-direction: row-reverse;
}
.cid-sSq5buC6Qd img {
  width: 100%;
}
.cid-sSq5cJtXld {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
@media (max-width: 991px) {
  .cid-sSq5cJtXld .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSq5cJtXld .row {
  flex-direction: row-reverse;
}
.cid-sSq5cJtXld img {
  width: 100%;
}
.cid-sSq5OY2q2N {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fedddd;
}
@media (max-width: 991px) {
  .cid-sSq5OY2q2N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSq5OY2q2N .row {
  flex-direction: row-reverse;
}
.cid-sSq5OY2q2N img {
  width: 100%;
}
.cid-sSn7aOd8Uk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e8e8e8;
}
@media (max-width: 991px) {
  .cid-sSn7aOd8Uk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSn7aOd8Uk .row {
  flex-direction: row-reverse;
}
.cid-sSn7aOd8Uk img {
  width: 100%;
}
.cid-sSq91nHeXW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-sSq91nHeXW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSq91nHeXW .row {
  flex-direction: row-reverse;
}
.cid-sSq91nHeXW img {
  width: 100%;
}
.cid-sSnahR4NHL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fedddd;
}
.cid-sSnahR4NHL img,
.cid-sSnahR4NHL .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sSnahR4NHL .item:focus,
.cid-sSnahR4NHL span:focus {
  outline: none;
}
.cid-sSnahR4NHL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSnahR4NHL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSnahR4NHL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSnahR4NHL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sSnahR4NHL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSnahR4NHL .mbr-section-title {
  color: #e43f3f;
}
.cid-sSpqzWY2q4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-sSpqzWY2q4 img,
.cid-sSpqzWY2q4 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sSpqzWY2q4 .item:focus,
.cid-sSpqzWY2q4 span:focus {
  outline: none;
}
.cid-sSpqzWY2q4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSpqzWY2q4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSpqzWY2q4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSpqzWY2q4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sSpqzWY2q4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSpqzWY2q4 .mbr-section-title {
  color: #2f8c09;
}
.cid-sSmWGbpAVO {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sSmWGbpAVO .mbr-text,
.cid-sSmWGbpAVO .mbr-section-btn {
  color: #232323;
}
.cid-sSmWGbpAVO .card-title,
.cid-sSmWGbpAVO .card-box {
  color: #ffffff;
}
.cid-sSmWGbpAVO .mbr-text,
.cid-sSmWGbpAVO .link-wrap {
  color: #ffffff;
}
.cid-sSmWGeh0Gl {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSmWGeh0Gl .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSmWGeh0Gl .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sSmWGeh0Gl .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sSmWGeh0Gl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sSmWGeh0Gl .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sSmWGeh0Gl .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sSmWGeh0Gl .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sSmWGeh0Gl .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sSmWGeh0Gl .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sSmWGeh0Gl .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSmWGeh0Gl .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
